unbind.vue 3.9 KB

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