unbind.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <view class="zx-container unbind-page">
  3. <view class="zx-wrap car-info-wrap">
  4. <image :src="icons.carImg" class="car-img" />
  5. <view class="car-name">
  6. {{ '智能电动摩托车智驾 M7' }}
  7. </view>
  8. </view>
  9. <view class="zx-wrap input-wrap">
  10. <view class="title">{{ $t('输入注册账号的密码即可解绑') }}</view>
  11. <ZxInput
  12. v-model="passwd"
  13. :placeholder="$t('请输入密码')"
  14. background="#F3F8FF"
  15. is-password
  16. />
  17. </view>
  18. <view class="tips-wrap">
  19. <view class="title">{{ $t('提示信息') }}</view>
  20. <view class="text">
  21. <text>1、</text>
  22. 解绑后,您将失去当前设备的控制权,其他人可以连接绑定您的设备。
  23. </view>
  24. <view class="text">
  25. <text>2、</text>
  26. 解绑后将立即删除家庭账号,感应解锁等数据。
  27. </view>
  28. </view>
  29. <view
  30. style="margin-top: 40rpx;"
  31. :class="[
  32. 'zx-form-btn',
  33. passwd && 'is-submit'
  34. ]"
  35. @tap="unbindTap"
  36. >
  37. {{ $t('完成并解绑') }}
  38. </view>
  39. <Confirm
  40. v-model="showConfirm"
  41. :dialog-info="{
  42. text: $t('是否确定解除绑定'),
  43. showCancelButton: true
  44. }"
  45. @confirm="unbindSubmit"
  46. />
  47. </view>
  48. </template>
  49. <script>
  50. const common = require('@/common/common.js');
  51. import {
  52. msg
  53. } from '../../utils/util.js';
  54. import Confirm from '@/component/comPopup/Confirm'
  55. import ZxInput from '../loginRegister/components/ZxInput.vue'
  56. import { QINIU_URL } from '@/common/constant'
  57. var request = require('../../common/request');
  58. const http = require('@/common/http.js');
  59. const config = require('@/common/config.js');
  60. const ICONS = {
  61. carImg: `${QINIU_URL}Fr7v719WrP6TmCfGtvJd-nAHhiCj`
  62. }
  63. export default {
  64. components: {
  65. Confirm,
  66. ZxInput
  67. },
  68. data() {
  69. return {
  70. car_sn: '',
  71. icons: ICONS,
  72. showConfirm: false,
  73. passwd: ''
  74. }
  75. },
  76. onLoad() {
  77. this.car_sn = uni.getStorageSync('car_info').car_sn
  78. },
  79. methods: {
  80. unbindTap() {
  81. if (!this.passwd) {
  82. return
  83. }
  84. this.showConfirm = true
  85. },
  86. async unbindSubmit() {
  87. console.log('解除绑定', this.passwd)
  88. let { data } = await request.postApi(config.API_FLK_CAR_UNBIND_CAR, {
  89. car_sn: this.car_sn,
  90. passwd: this.passwd
  91. })
  92. if (data.code == 200) {
  93. //返回首页
  94. common.simpleToast('解绑成功!')
  95. setTimeout(()=> {
  96. uni.switchTab({
  97. url: `/pages/index/index`,
  98. });
  99. }, 900)
  100. }else{
  101. common.simpleToast(data.msg)
  102. }
  103. }
  104. }
  105. }
  106. </script>
  107. <style lang="scss" scoped>
  108. @import "@/libs/css/layout.scss";
  109. .unbind-page {
  110. .car-info-wrap {
  111. padding: 0 32rpx 40rpx;
  112. .car-img {
  113. width: 100%;
  114. height: 492rpx;
  115. }
  116. .car-name {
  117. text-align: center;
  118. color: #060809;
  119. font-weight: bold;
  120. font-size: 34rpx;
  121. }
  122. }
  123. .input-wrap {
  124. margin: 20rpx 0 40rpx;
  125. .title {
  126. font-family: PingFangSC, PingFang SC;
  127. font-weight: 400;
  128. font-size: 36rpx;
  129. color: #060809;
  130. margin-bottom: 40rpx;
  131. }
  132. }
  133. .tips-wrap {
  134. padding: 0 32rpx;
  135. .title {
  136. font-size: 32rpx;
  137. color: #060809;
  138. font-weight: bold;
  139. margin-bottom: 20rpx;
  140. }
  141. .text {
  142. font-weight: 400;
  143. font-size: 24rpx;
  144. color: #828DA2;
  145. line-height: 36rpx;
  146. display: flex;
  147. }
  148. }
  149. }
  150. </style>