log_off.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <view class="content">
  3. <view class="vflex acenter jcenter top" v-if="left_active == 1">
  4. <u-icon name="error-circle-fill" color="#F35635" size="52"></u-icon>
  5. <view class="title">温馨提示</view>
  6. <view class="info">
  7. <u-parse :content="data"></u-parse>
  8. </view>
  9. </view>
  10. <view class="bottom vflex acenter jcenter" v-if="left_active == 1">
  11. <u-checkbox v-model="check" shape="circle" label="我已知晓并接受,注销账号后的权益处理结果" @change="handleChange"></u-checkbox>
  12. <view class="btn" @click="apply">申请注销账号</view>
  13. </view>
  14. <view class="vflex acenter jcenter top" v-if="left_active == 2">
  15. <u-icon name="checkmark-circle-fill" color="#52c41a" size="52"></u-icon>
  16. <view class="title">注销成功</view>
  17. <view class="text">船百知账号已注销</view>
  18. <view class="btn" @click="sure">确认</view>
  19. </view>
  20. <view class="vflex acenter jcenter top" v-if="left_active == 3">
  21. <u-icon name="error-circle-fill" color="#F35635" size="52"></u-icon>
  22. <view class="title">抱歉,由于以下原因,账号无法注销</view>
  23. <!-- <view class="text">船百知账号已注销</view> -->
  24. <div class="list">
  25. <div class="item" v-for="(item,index) in list" :key="index">
  26. <u-parse :content="item"></u-parse>
  27. </div>
  28. </div>
  29. <view class="btn" @click="sure2">确认</view>
  30. </view>
  31. <u-popup :show="openVisible" mode="center" @close="close">
  32. <view class="popu vflex acenter jcenter">
  33. <view class="top hflex acenter jbetween">
  34. <view></view>
  35. <view class="top_title">
  36. 短信验证码
  37. </view>
  38. <u-icon name="close" color="#000" size="16" @click="close"></u-icon>
  39. </view>
  40. <view class="info">
  41. 我们已向手机号{{phone}}发送验证码短信请查看并输入
  42. </view>
  43. <u-input placeholder="填写验证码" v-model="code">
  44. <template slot="suffix">
  45. <u-code
  46. ref="uCode"
  47. @change="codeChange"
  48. seconds="60"
  49. changeText="X秒重新获取"
  50. ></u-code>
  51. <u-button
  52. @tap="getCode"
  53. :text="tips"
  54. type="text"
  55. ></u-button>
  56. </template>
  57. </u-input>
  58. <div class="next_btn" @click="next">下一步</div>
  59. </view>
  60. </u-popup>
  61. </view>
  62. </template>
  63. <script>
  64. import $api from '@/static/js/api.js'
  65. var that = ''
  66. export default {
  67. data() {
  68. return {
  69. data: '',
  70. left_active: 1,
  71. check: false,
  72. openVisible: false,
  73. phone: '',
  74. tips: '',
  75. value: '',
  76. code: '',
  77. list: [],
  78. }
  79. },
  80. onLoad() {
  81. that = this
  82. that.phone = uni.getStorageSync('phone')
  83. that.getData()
  84. },
  85. watch: {
  86. value(newValue, oldValue) {
  87. console.log('v-model', newValue);
  88. }
  89. },
  90. methods: {
  91. /* 获取提示信息 */
  92. getData() {
  93. $api.req({
  94. url: '/data/api.business.User/logout_prompt_ship',
  95. method: 'GET',
  96. },function(res) {
  97. console.log(res);
  98. that.data = res.data
  99. })
  100. },
  101. handleChange(e) {
  102. that.check = e
  103. },
  104. /* 打开验证码弹窗 */
  105. apply() {
  106. if(that.check) {
  107. that.openVisible = true
  108. } else {
  109. $api.info('请先同意处理通知')
  110. return
  111. }
  112. },
  113. /* 关闭弹窗 */
  114. close() {
  115. that.openVisible = false
  116. },
  117. codeChange(text) {
  118. this.tips = text;
  119. },
  120. getCode() {
  121. if(this.$refs.uCode.canGetCode) {
  122. // 模拟向后端请求验证码
  123. uni.showLoading({
  124. title: '正在获取验证码'
  125. })
  126. $api.req({
  127. url: '/data/api.Login/sendsms',
  128. method: 'POST',
  129. data: {
  130. phone: that.phone,
  131. type: 8
  132. }
  133. }, function(res) {
  134. uni.hideLoading();
  135. if(res.code == 1) {
  136. uni.$u.toast('验证码已发送')
  137. that.$refs.uCode.start()
  138. } else {
  139. uni.$u.toast('验证码发送失败')
  140. }
  141. })
  142. } else {
  143. uni.$u.toast('倒计时结束后再发送');
  144. }
  145. },
  146. change(e) {
  147. console.log('change', e);
  148. },
  149. next() {
  150. if(that.code == '') {
  151. $api.info('请先填写验证码')
  152. return
  153. }
  154. $api.req({
  155. url: '/data/api.business.User/cancellation',
  156. method: 'POST',
  157. data: {
  158. code: that.code,
  159. phone: that.phone
  160. }
  161. }, function(res) {
  162. console.log(res);
  163. if(res.code == 1) {
  164. that.close()
  165. if(res.data.type == 1) {
  166. that.left_active = 2
  167. } else {
  168. that.left_active = 3
  169. that.list = res.data.failReason
  170. }
  171. }
  172. })
  173. },
  174. sure() {
  175. $api.jump('/pages/tabbar/index/index',3)
  176. },
  177. sure2() {
  178. $api.jump('/pages/tabbar/mine/mine',3)
  179. },
  180. },
  181. }
  182. </script>
  183. <style lang="scss" scoped>
  184. .content::v-deep {
  185. background: #fff;
  186. .top {
  187. padding-top: 56rpx;
  188. .title {
  189. padding: 48rpx 0 32rpx;
  190. font-size: 36rpx;
  191. font-family: PingFangSC-Medium, PingFang SC;
  192. font-weight: 600;
  193. color: #222222;
  194. line-height: 50rpx;
  195. }
  196. .info {
  197. font-size: 28rpx;
  198. font-family: PingFangSC-Regular, PingFang SC;
  199. font-weight: 400;
  200. color: #222222;
  201. line-height: 40rpx;
  202. }
  203. .text {
  204. font-size: 28rpx;
  205. font-family: PingFangSC-Regular, PingFang SC;
  206. font-weight: 400;
  207. color: #222222;
  208. line-height: 40rpx;
  209. }
  210. .btn {
  211. width: 630rpx;
  212. height: 92rpx;
  213. background: #506DFF;
  214. border-radius: 50rpx;
  215. font-size: 36rpx;
  216. font-family: PingFangSC-Medium, PingFang SC;
  217. font-weight: 500;
  218. color: #FFFFFF;
  219. line-height: 92rpx;
  220. text-align: center;
  221. margin-top: 64rpx;
  222. }
  223. .list {
  224. background: #F5F5F5;
  225. border-radius: 20rpx;
  226. width: 100%;
  227. .item {
  228. box-sizing: border-box;
  229. padding: 32rpx 34rpx 28rpx 34rpx;
  230. font-size: 28rpx;
  231. font-family: PingFangSC-Regular, PingFang SC;
  232. font-weight: 400;
  233. color: #222222;
  234. line-height: 40rpx;
  235. }
  236. }
  237. }
  238. .bottom {
  239. position: absolute;
  240. left: 0;
  241. bottom: 0;
  242. width: 100%;
  243. box-sizing: border-box;
  244. padding: 72rpx 60rpx;
  245. .btn {
  246. width: 630rpx;
  247. height: 92rpx;
  248. background: #506DFF;
  249. border-radius: 50rpx;
  250. font-size: 36rpx;
  251. font-family: PingFangSC-Medium, PingFang SC;
  252. font-weight: 500;
  253. color: #FFFFFF;
  254. line-height: 92rpx;
  255. text-align: center;
  256. margin-top: 28rpx;
  257. }
  258. }
  259. .u-popup__content {
  260. width: 522rpx;
  261. border-radius: 20rpx;
  262. .popu {
  263. width: 522rpx;
  264. border-radius: 20rpx;
  265. box-sizing: border-box;
  266. padding: 20rpx;
  267. .top {
  268. width: 100%;
  269. box-sizing: border-box;
  270. padding: 16rpx 0 24rpx;
  271. .top_title {
  272. font-size: 32rpx;
  273. font-family: PingFangSC-Medium, PingFang SC;
  274. font-weight: 600;
  275. color: #222222;
  276. line-height: 44rpx;
  277. }
  278. }
  279. .info {
  280. width: 364rpx;
  281. font-size: 24rpx;
  282. font-family: PingFangSC-Regular, PingFang SC;
  283. font-weight: 400;
  284. color: #666666;
  285. line-height: 34rpx;
  286. text-align: center;
  287. padding-bottom: 44rpx;
  288. }
  289. .u-input {
  290. border: none;
  291. width: 100%;
  292. box-sizing: border-box;
  293. padding: 0 20rpx;
  294. .u-button {
  295. width: 200rpx;
  296. // font-size: 28rpx ;
  297. color: #506DFF !important;
  298. }
  299. }
  300. .next_btn {
  301. width: 322rpx;
  302. height: 76rpx;
  303. background: #506DFF;
  304. border-radius: 38rpx;
  305. font-size: 32rpx;
  306. font-family: PingFangSC-Medium, PingFang SC;
  307. font-weight: 500;
  308. color: #FFFFFF;
  309. line-height: 76rpx;
  310. text-align: center;
  311. margin-top: 48rpx;
  312. }
  313. }
  314. }
  315. }
  316. </style>