accountCancellation.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <view class="page">
  3. <view style="margin-bottom: 40rpx;">{{name}}</view>
  4. <u-parse :content="content"></u-parse>
  5. <button @click="show = true" class="btn">{{i18n.closeaccount}}</button>
  6. <!-- <view class="cancellation">
  7. 注销后账户不可恢复,请谨慎操作
  8. </view> -->
  9. <u-modal :buttonReverse='true' :showCancelButton='true' @cancel='show = false' @confirm='logout'
  10. :confirmText='i18n.enter' :cancelText='i18n.Cancel' :show="show" :title="i18n.accountCancellation" :content='i18n.closeaccount'
  11. confirmColor='#606266' cancelColor='#2979ff'></u-modal>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. show: false,
  19. // title: '注销账号',
  20. // content: '确定要注销账号吗?',
  21. // confirmText: '确定',
  22. // cancelText: '取消'
  23. name:'',
  24. content:'',
  25. language :'zh-CN'
  26. }
  27. },
  28. onLoad() {
  29. uni.setNavigationBarTitle({
  30. title: this.i18n.accountCancellation
  31. })
  32. this.reminder()
  33. },
  34. onshow(){
  35. if (uni.getStorageSync('language') != '') {
  36. this.language = uni.getStorageSync('language')
  37. }
  38. },
  39. computed: {
  40. i18n() {
  41. return this.$t('index')
  42. }
  43. },
  44. methods: {
  45. //协议
  46. reminder(){
  47. uni.$u.http.get(`/api/agreement?code=cancellation_reminder`).then((res) => {
  48. console.log(res);
  49. if(this.language =='zh-CN'){
  50. this.name = res.name_cn
  51. this.content = res.content_cn
  52. }else if(this.language =='en-US'){
  53. this.name = res.name_en
  54. this.content = res.content_en
  55. }else if(this.language =='es-ES'){
  56. this.name = res.name_es
  57. this.content = res.content_es
  58. }else if(this.language =='it-IT'){
  59. this.name = res.name_ita
  60. this.content = res.content_ita
  61. }
  62. });
  63. },
  64. logout() {
  65. uni.$u.http.get(`/api/member/freeze`).then((res) => {
  66. // console.log(res);
  67. // this.$u.toast('注销成功')
  68. uni.clearStorageSync()
  69. this.show = false
  70. setTimeout(()=>{
  71. uni.reLaunch({
  72. url:'/pages/login/login'
  73. })
  74. },800)
  75. });
  76. }
  77. }
  78. }
  79. </script>
  80. <style scoped lang="scss">
  81. .page {
  82. background-color: #fff;
  83. height: 92.5vh;
  84. padding: 54rpx 44rpx;
  85. font-size: 30rpx;
  86. color: rgba(34, 34, 34, .7);
  87. .btn {
  88. background-color: #f83224;
  89. border-radius: 44rpx;
  90. color: #fff;
  91. margin-top: 108rpx
  92. }
  93. .cancellation {
  94. font-size: 24rpx;
  95. text-align: center;
  96. margin-top: 32rpx;
  97. }
  98. }
  99. </style>