addCar.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <!-- 绑定新的车辆 -->
  2. <template>
  3. <view class="">
  4. <view>
  5. <view class="item">
  6. <view class="topTile">车辆类型</view>
  7. <view class="content" @tap="chooseType">
  8. <view v-text="type" class="carType" :class="{typeActive:typeNum}">
  9. </view>
  10. <image src="../../static/icon_combo_nor@2x.png" style="width: 20rpx;height: 12rpx;margin-top: 15rpx;margin-right: 18rpx;"></image>
  11. </view>
  12. </view>
  13. <view class="item">
  14. <view class="topTile">车牌号</view>
  15. <view class="content">
  16. <view class="carNum">
  17. <input type="text" v-model="carNum" placeholder="请输入车牌号" placeholder-class="holder" style="width: 100%;height: 100%;" />
  18. </view>
  19. <!-- <image src="../../static/icon_combo_nor@2x.png" style="width: 20rpx;height: 12rpx;margin-top: 15rpx;margin-right: 18rpx;"></image> -->
  20. </view>
  21. </view>
  22. </view>
  23. <!-- 车辆类型 -->
  24. <lb-picker ref="type" :list="typeData" @confirm="confirm">
  25. </lb-picker>
  26. <!-- 保存 -->
  27. <button class="btn" :class="{active:type && carNum}" :loading="isLoading" @tap="saveInfo">保存</button>
  28. </view>
  29. </template>
  30. <script>
  31. import LbPicker from '@/components/lb-picker'
  32. export default {
  33. data() {
  34. return {
  35. isLoading: false,
  36. type: '请选择车辆类型', //车辆类型
  37. typeNum: '',
  38. carNum: '', //车牌号
  39. typeData: [{
  40. label: '机动车',
  41. value: 1,
  42. child: []
  43. }, {
  44. label: '电动车',
  45. value: 2,
  46. child: []
  47. }, ],
  48. }
  49. },
  50. methods: {
  51. // 车辆类型选择确定
  52. confirm(data) {
  53. this.type = data.item.label
  54. this.typeNum = data.item.value
  55. },
  56. // 选择车辆类型
  57. chooseType() {
  58. this.$refs.type.show()
  59. },
  60. //保存提交信息
  61. saveInfo() {
  62. if (!this.typeNum || !this.carNum) {
  63. return
  64. } else {
  65. this.isLoading=true
  66. this.http.httpRequest('/wxapplet/ownercar/add', 'post', {
  67. cardId: uni.getStorageSync('idNumber'),
  68. carNo: this.carNum,
  69. carType: String(this.typeNum),
  70. comtyId: uni.getStorageSync('comtyId')
  71. }, true).then((res) => {
  72. if (res.code == 0) {
  73. uni.navigateTo({
  74. url:'./myCar'
  75. })
  76. this.isLoading=false
  77. } else {
  78. this.isLoading=false
  79. uni.showToast({
  80. title: res.msg,
  81. 'icon': 'none'
  82. })
  83. }
  84. }).catch(()=>{
  85. this.isLoading=false
  86. })
  87. }
  88. }
  89. },
  90. components: {
  91. LbPicker
  92. },
  93. }
  94. </script>
  95. <style>
  96. .btn {
  97. width: 702rpx;
  98. height: 90rpx;
  99. background: rgba(163, 197, 237, 1);
  100. opacity: 1;
  101. border-radius: 18rpx;
  102. font-size: 32rpx;
  103. font-family: PingFang SC;
  104. font-weight: bold;
  105. line-height: 90rpx;
  106. color: rgba(255, 255, 255, 1);
  107. text-align: center;
  108. position: fixed;
  109. bottom: 56rpx;
  110. left: 26rpx;
  111. }
  112. .active {
  113. background: rgba(41, 138, 253, 1);
  114. }
  115. .item {
  116. width: 662rpx;
  117. height: 135rpx;
  118. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  119. margin: 0 auto;
  120. }
  121. .carType {
  122. width: 202rpx;
  123. height: 40rpx;
  124. font-size: 28rpx;
  125. font-family: PingFang SC;
  126. font-weight: 400;
  127. color: rgba(153, 153, 153, 1);
  128. }
  129. .carNum {
  130. width: 600rpx;
  131. height: 40rpx;
  132. font-size: 28rpx;
  133. font-family: PingFang SC;
  134. font-weight: 400;
  135. color: rgba(51, 51, 51, 1);
  136. }
  137. .content {
  138. width: 100%;
  139. height: 40rpx;
  140. display: flex;
  141. justify-content: space-between;
  142. margin-top: 28rpx;
  143. }
  144. .topTile {
  145. width: 132rpx;
  146. height: 44rpx;
  147. font-size: 32rpx;
  148. font-family: PingFang SC;
  149. font-weight: bold;
  150. color: rgba(51, 51, 51, 1);
  151. margin-top: 32rpx;
  152. }
  153. .holder {
  154. color: rgba(153, 153, 153, 1);
  155. }
  156. .typeActive {
  157. color: rgba(51, 51, 51, 1);
  158. }
  159. </style>