unbind.vue 3.9 KB

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