addVehicle.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view>
  3. <u-navbar
  4. title-color="#fff"
  5. :custom-back="customBack"
  6. :border-bottom="false"
  7. back-icon-color="#CCE8FF"
  8. :background="{ background: '#008CFF' }"
  9. title="新增免密支付车牌"
  10. ></u-navbar>
  11. <view class="new-plate-number">
  12. <view class="message-input-wrap" @click="messageInputClick">
  13. <u-message-input :maxlength="8" width="70" font-size="50" :disabled-keyboard="true" v-model="newPlateNumber"></u-message-input>
  14. </view>
  15. <u-keyboard
  16. ref="uKeyboard"
  17. mode="car"
  18. @change="keyboardChange"
  19. @confirm="keyboardConfirm"
  20. @backspace="backspace"
  21. v-model="keyboardshow"
  22. ></u-keyboard>
  23. </view>
  24. <u-toast ref="uToast" />
  25. <u-modal v-model="delCarshow" :show-cancel-button="true" @confirm="confirmDelCar" :content="delCarContent"></u-modal>
  26. <u-action-sheet :list="colorList" @click="confirmColor" v-model="colorShow"></u-action-sheet>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. keyboardshow: false,
  34. delCarshow: false,
  35. colorShow: false,
  36. delCarContent: '',
  37. colorList: [
  38. { text: '蓝色', colorCode: 0 },
  39. { text: '黄色', colorCode: 1 },
  40. { text: '黑色', colorCode: 2 },
  41. { text: '白色', colorCode: 3 },
  42. { text: '绿色', colorCode: 4 },
  43. { text: '其他', colorCode: 99 }
  44. ]
  45. };
  46. },
  47. methods: {
  48. customBack() {
  49. this.$u.route({
  50. type: 'switchTab',
  51. url: 'pages/index/index'
  52. });
  53. },
  54. messageInputClick() {
  55. this.keyboardshow = true;
  56. },
  57. // 按键被点击(点击退格键不会触发此事件)
  58. keyboardChange(val) {
  59. // 将每次按键的值拼接到value变量中,注意+=写法
  60. this.newPlateNumber += val;
  61. console.log(this.newPlateNumber);
  62. },
  63. // 退格键被点击
  64. backspace() {
  65. // 删除value的最后一个字符
  66. if (this.newPlateNumber.length) this.newPlateNumber = this.newPlateNumber.substr(0, this.newPlateNumber.length - 1);
  67. console.log(this.newPlateNumber);
  68. },
  69. keyboardConfirm() {
  70. this.colorShow = true;
  71. },
  72. confirmColor(e) {
  73. this.vehicleColor = this.colorList[e].colorCode;
  74. }
  75. }
  76. };
  77. </script>
  78. <style></style>