unbind.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. :class="[
  31. 'zx-form-btn', 'fix-bottom-btn',
  32. passwd && 'is-submit'
  33. ]"
  34. @tap="unbindTap"
  35. >
  36. {{ $t('完成并解绑') }}
  37. </view>
  38. <Confirm
  39. v-model="showConfirm"
  40. :dialog-info="{
  41. text: $t('是否确定解除绑定'),
  42. showCancelButton: true
  43. }"
  44. @confirm="unbindSubmit"
  45. />
  46. </view>
  47. </template>
  48. <script>
  49. import Confirm from '@/component/comPopup/Confirm'
  50. import ZxInput from '../loginRegister/components/ZxInput.vue'
  51. import { QINIU_URL } from '@/common/constant'
  52. const ICONS = {
  53. carImg: `${QINIU_URL}Fr7v719WrP6TmCfGtvJd-nAHhiCj`
  54. }
  55. export default {
  56. components: {
  57. Confirm,
  58. ZxInput
  59. },
  60. data() {
  61. return {
  62. icons: ICONS,
  63. showConfirm: false,
  64. passwd: ''
  65. }
  66. },
  67. methods: {
  68. unbindTap() {
  69. if (!this.passwd) {
  70. return
  71. }
  72. this.showConfirm = true
  73. },
  74. unbindSubmit() {
  75. console.log('解除绑定', this.passwd)
  76. }
  77. }
  78. }
  79. </script>
  80. <style lang="scss" scoped>
  81. @import "@/libs/css/layout.scss";
  82. .unbind-page {
  83. .car-info-wrap {
  84. .car-img {
  85. width: 100%;
  86. height: 492rpx;
  87. }
  88. .car-name {
  89. text-align: center;
  90. color: #060809;
  91. font-weight: bold;
  92. font-size: 34rpx;
  93. }
  94. }
  95. .input-wrap {
  96. margin: 20rpx 0 40rpx;
  97. .title {
  98. font-family: PingFangSC, PingFang SC;
  99. font-weight: 400;
  100. font-size: 36rpx;
  101. color: #060809;
  102. margin-bottom: 40rpx;
  103. }
  104. }
  105. .tips-wrap {
  106. padding: 0 32rpx;
  107. .title {
  108. font-size: 32rpx;
  109. color: #060809;
  110. font-weight: bold;
  111. margin-bottom: 20rpx;
  112. }
  113. .text {
  114. font-weight: 400;
  115. font-size: 24rpx;
  116. color: #828DA2;
  117. line-height: 36rpx;
  118. display: flex;
  119. }
  120. }
  121. }
  122. </style>