addCar.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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}" @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. uni.showLoading({
  66. mask:true,
  67. title:'加载中'
  68. })
  69. this.http.httpRequest('/wxapplet/ownercar/add', 'post', {
  70. cardId: uni.getStorageSync('idNumber'),
  71. carNo: this.carNum,
  72. carType: String(this.typeNum),
  73. comtyId: uni.getStorageSync('comtyId')
  74. }, true).then((res) => {
  75. if (res.code == 0) {
  76. uni.navigateTo({
  77. url:'./myCar'
  78. })
  79. uni.hideLoading()
  80. } else {
  81. uni.hideLoading()
  82. uni.showToast({
  83. title: res.msg,
  84. 'icon': 'none'
  85. })
  86. }
  87. }).catch(()=>{
  88. uni.hideLoading()
  89. })
  90. }
  91. }
  92. },
  93. components: {
  94. LbPicker
  95. },
  96. }
  97. </script>
  98. <style>
  99. .btn {
  100. width: 702rpx;
  101. height: 90rpx;
  102. background: rgba(163, 197, 237, 1);
  103. opacity: 1;
  104. border-radius: 18rpx;
  105. font-size: 32rpx;
  106. font-family: PingFang SC;
  107. font-weight: bold;
  108. line-height: 90rpx;
  109. color: rgba(255, 255, 255, 1);
  110. text-align: center;
  111. position: fixed;
  112. bottom: 56rpx;
  113. left: 26rpx;
  114. }
  115. .active {
  116. background: rgba(41, 138, 253, 1);
  117. }
  118. .item {
  119. width: 662rpx;
  120. height: 135rpx;
  121. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  122. margin: 0 auto;
  123. }
  124. .carType {
  125. width: 202rpx;
  126. height: 40rpx;
  127. font-size: 28rpx;
  128. font-family: PingFang SC;
  129. font-weight: 400;
  130. color: rgba(153, 153, 153, 1);
  131. }
  132. .carNum {
  133. width: 600rpx;
  134. height: 40rpx;
  135. font-size: 28rpx;
  136. font-family: PingFang SC;
  137. font-weight: 400;
  138. color: rgba(51, 51, 51, 1);
  139. }
  140. .content {
  141. width: 100%;
  142. height: 40rpx;
  143. display: flex;
  144. justify-content: space-between;
  145. margin-top: 28rpx;
  146. }
  147. .topTile {
  148. width: 132rpx;
  149. height: 44rpx;
  150. font-size: 32rpx;
  151. font-family: PingFang SC;
  152. font-weight: bold;
  153. color: rgba(51, 51, 51, 1);
  154. margin-top: 32rpx;
  155. }
  156. .holder {
  157. color: rgba(153, 153, 153, 1);
  158. }
  159. .typeActive {
  160. color: rgba(51, 51, 51, 1);
  161. }
  162. </style>