unbind.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <view class="zx-container unbind-page">
  3. <view class="zx-wrap car-info-wrap">
  4. <image :src="carInfo.model_images" class="car-img" />
  5. <view class="car-name">
  6. {{ carInfo.car_name }}
  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. carInfo:{},
  71. car_sn: '',
  72. icons: ICONS,
  73. showConfirm: false,
  74. passwd: ''
  75. }
  76. },
  77. onLoad() {
  78. this.carInfo = uni.getStorageSync('car_info')
  79. },
  80. methods: {
  81. unbindTap() {
  82. if (!this.passwd) {
  83. return
  84. }
  85. this.showConfirm = true
  86. },
  87. async unbindSubmit() {
  88. console.log('解除绑定', this.passwd)
  89. let { data } = await request.postApi(config.API_FLK_CAR_UNBIND_CAR, {
  90. car_sn: this.carInfo.car_sn,
  91. passwd: this.passwd
  92. })
  93. if (data.code == 200) {
  94. //返回首页
  95. common.simpleToast('解绑成功!')
  96. setTimeout(()=> {
  97. uni.switchTab({
  98. url: `/pages/index/index`,
  99. });
  100. }, 900)
  101. }else{
  102. common.simpleToast(data.msg)
  103. }
  104. }
  105. }
  106. }
  107. </script>
  108. <style lang="scss" scoped>
  109. @import "@/libs/css/layout.scss";
  110. .unbind-page {
  111. .car-info-wrap {
  112. padding: 0 32rpx 40rpx;
  113. .car-img {
  114. width: 100%;
  115. height: 492rpx;
  116. }
  117. .car-name {
  118. text-align: center;
  119. color: #060809;
  120. font-weight: bold;
  121. font-size: 34rpx;
  122. }
  123. }
  124. .input-wrap {
  125. margin: 20rpx 0 40rpx;
  126. .title {
  127. font-family: PingFangSC, PingFang SC;
  128. font-weight: 400;
  129. font-size: 36rpx;
  130. color: #060809;
  131. margin-bottom: 40rpx;
  132. }
  133. }
  134. .tips-wrap {
  135. padding: 0 32rpx;
  136. .title {
  137. font-size: 32rpx;
  138. color: #060809;
  139. font-weight: bold;
  140. margin-bottom: 20rpx;
  141. }
  142. .text {
  143. font-weight: 400;
  144. font-size: 24rpx;
  145. color: #828DA2;
  146. line-height: 36rpx;
  147. display: flex;
  148. }
  149. }
  150. }
  151. </style>