VehicleInquiry.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <!-- 车辆查询 -->
  2. <template>
  3. <view class="container">
  4. <view class="container-title">
  5. <text>输入车牌,查询车费</text>
  6. </view>
  7. <!-- 车牌输入 -->
  8. <view class="container-input" @click="vehicleNoInputClick">
  9. <u-message-input :maxlength="8" width="60" font-size="40" :disabled-keyboard="true" v-model="form.vehicleNo" />
  10. </view>
  11. <!-- 车辆下拉 -->
  12. <view class="container-select">
  13. <u-collapse ref="refValue" :head-style="{ fontSize: '28rpx' }">
  14. <u-collapse-item title="点击选择车牌" align="center">
  15. <scroll-view class="container-select-scroll" scroll-y="true">
  16. <u-cell-group v-if="vehicleList.length">
  17. <u-cell-item :title="item.value" v-for="(item, index) in vehicleList" :key="index" :arrow="false">
  18. <u-radio-group v-model="form.vehicleNo" @change="radioGroupChange">
  19. <u-radio :name="item.value" :key="index" />
  20. </u-radio-group>
  21. </u-cell-item>
  22. </u-cell-group>
  23. <template v-else>
  24. <view class="container-select-empty">暂无绑定车牌</view>
  25. </template>
  26. </scroll-view>
  27. </u-collapse-item>
  28. </u-collapse>
  29. </view>
  30. <view class="container-btn">
  31. <u-button type="primary" :loading="loading" :disabled="!form.vehicleNo" @click="submitVehicleInquiry">确定</u-button>
  32. </view>
  33. <!-- 选择颜色 -->
  34. <u-action-sheet :list="bindVehiclePop.colorList" @click="confirmColor" v-model="bindVehiclePop.colorShow" />
  35. <!-- 车牌号键盘 -->
  36. <u-keyboard ref="uKeyboard" mode="car" @change="keyboardChange" @confirm="keyboardConfirm" @backspace="backspace" v-model="keyboardshow" />
  37. <u-toast ref="uToast" />
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. form: {
  45. vehicleNo: '',
  46. parkNo: ''
  47. },
  48. vehicleList: [],
  49. keyboardshow: false,
  50. loading: false,
  51. showChangeVehicleNo: false,
  52. bindVehiclePop: {
  53. colorShow: false,
  54. colorList: [
  55. {
  56. text: '蓝色',
  57. colorCode: 0
  58. },
  59. {
  60. text: '黄色',
  61. colorCode: 1
  62. },
  63. {
  64. text: '黑色',
  65. colorCode: 2
  66. },
  67. {
  68. text: '白色',
  69. colorCode: 3
  70. },
  71. {
  72. text: '绿色',
  73. colorCode: 4
  74. },
  75. {
  76. text: '其他',
  77. colorCode: 99
  78. }
  79. ]
  80. },
  81. parkNo: null,
  82. parkInfo: {}
  83. };
  84. },
  85. onLoad(options) {
  86. const { parkNo } = options;
  87. if (parkNo) {
  88. this.form.parkNo = parkNo;
  89. this.getVehicleInquiryList(parkNo);
  90. } else {
  91. uni.showModal({
  92. title: '提示',
  93. content: '参数丢失, 返回首页',
  94. showCancel: false,
  95. success: function (res) {
  96. if (res.confirm) {
  97. uni.switchTab({
  98. url: '/pages/index/index'
  99. });
  100. }
  101. }
  102. });
  103. }
  104. },
  105. methods: {
  106. /**
  107. * @description: 车牌输入框点击
  108. * @return {*}
  109. */
  110. vehicleNoInputClick() {
  111. this.keyboardshow = true;
  112. this.form.vehicleNo = '';
  113. },
  114. /**
  115. * @description: 单击车牌
  116. * @param {*} e
  117. * @return {*}
  118. */
  119. radioGroupChange(e) {
  120. this.form.vehicleNo = e;
  121. },
  122. /**
  123. * @description: 颜色下拉确认
  124. * @return {*}
  125. */
  126. confirmColor() {
  127. this.bindVehiclePop.colorShow = false;
  128. },
  129. /**
  130. * @description: 车牌键盘输入变化
  131. * @param {*} val
  132. * @return {*}
  133. */
  134. keyboardChange(val) {
  135. // 将每次按键的值拼接到value变量中,注意+=写法
  136. this.form.vehicleNo += val;
  137. },
  138. /**
  139. * @description: 键盘输入完成确认时
  140. * @return {*}
  141. */
  142. keyboardConfirm() {
  143. this.bindVehiclePop.colorShow = true;
  144. },
  145. /**
  146. * @description: 退格键被点击
  147. * @return {*}
  148. */
  149. backspace() {
  150. // 删除value的最后一个字符
  151. if (this.form.vehicleNo.length) this.form.vehicleNo = this.form.vehicleNo.substr(0, this.form.vehicleNo.length - 1);
  152. },
  153. /**
  154. * @description: 获取当前用户车辆
  155. * @return {*}
  156. */
  157. async getVehicleInquiryList(parkNo) {
  158. try {
  159. const { data, code } = await this.$u.api.getVehicleInquiryListApi({ parkNo });
  160. if (code === 200) {
  161. this.parkInfo = data;
  162. this.vehicleList = data.vehicleList.map((item) => {
  163. return { label: item, value: item };
  164. });
  165. await this.$nextTick();
  166. this.$refs.refValue.init();
  167. }
  168. } catch (error) {}
  169. },
  170. /**
  171. * @description: 确认车费查询
  172. * @return {*}
  173. */
  174. async submitVehicleInquiry() {
  175. const { vehicleNo } = this.form;
  176. if (this.$u.test.carNo(vehicleNo)) {
  177. this.loading = true;
  178. try {
  179. const { code } = await this.$u.api.getOrderInfoByParknoApi({ ...this.form });
  180. if (code === 200) {
  181. this.$refs.uToast.show({
  182. title: '查询成功!',
  183. type: 'success',
  184. url: '/pages/OnsitePayment/OnsitePayment',
  185. params: {
  186. ...this.form
  187. },
  188. callback: () => {
  189. this.loading = false;
  190. }
  191. });
  192. }
  193. } catch (error) {
  194. this.loading = false;
  195. // this.showToast(error?.msg, 'error');
  196. }
  197. } else {
  198. this.loading = false;
  199. this.showToast('请输入有效的车牌号!', 'error');
  200. }
  201. },
  202. /**
  203. * @description: 提示
  204. * @param {*} title
  205. * @param {*} type
  206. * @return {*}
  207. */
  208. showToast(title = '操作失败!', type = 'error') {
  209. this.$refs.uToast.show({
  210. title,
  211. type
  212. });
  213. }
  214. }
  215. };
  216. </script>
  217. <style lang="scss" scoped>
  218. @import './VehicleInquiry.scss';
  219. </style>