logout.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view>
  3. <u-navbar back-text="注销账号"></u-navbar>
  4. <view class="logout-head">
  5. <u-image width="100" height="100" src="/static/img/logout.png"></u-image>
  6. <p>注销荆州工会鹊桥帐号</p>
  7. </view>
  8. <view class="logout-main">
  9. <p>我们很遗憾您做出注销帐号的决定,在提交申请前请您仔细阅读以下内容:</p>
  10. <p>1.您应确保您有权决定该账户的注销事宜,不侵犯任何第三方的合法权益,如因此引发任何投诉争议,由您自行承担。</p>
  11. <p>2.帐号注销后您无法再使用本社区的各项服务,您的个人信息及求助记录也将被清空。</p>
  12. <p>3.如您已被国家机关调查或正处于诉讼、仲裁程序中,请注意,注销您的帐号并不代表此帐号注销前的帐号行为和相关责任得到豁免或减轻。</p>
  13. </view>
  14. <view class="logout-btn">
  15. <u-button :custom-style="customStyle1"><span>继续注销</span></u-button>
  16. <u-button type="error" :custom-style="customStyle2">我再想想</u-button>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. navbarBg: {
  26. background: 'none'
  27. },
  28. customStyle1:{
  29. background: '#EFEFEF',
  30. color:'#eee',
  31. flex:'0.45',
  32. },
  33. customStyle2: {
  34. background: '#FF5E5E',
  35. flex:'0.45',
  36. },
  37. }
  38. methods: {
  39. }
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .logout-head{
  45. height: 120px;
  46. background-color: #FF5E5E;
  47. display: flex;
  48. flex-direction: column;
  49. align-items: center;
  50. justify-content: center;
  51. p{
  52. color:#fff;
  53. margin-top: 5px;
  54. font-size: 16px;
  55. }
  56. }
  57. .logout-main{
  58. padding: 12px 24px;
  59. line-height: 24px;
  60. p{
  61. margin-bottom: 10px;
  62. }
  63. }
  64. .logout-btn{
  65. padding: 15px;
  66. display: flex;
  67. justify-content: space-between;
  68. span{
  69. color:#888;
  70. }
  71. }
  72. </style>