addCar.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <!-- <view slot="cancle-text">取消</view>
  26. <view slot="confirm-text" >确定</view> -->
  27. </lb-picker>
  28. <!-- 保存 -->
  29. <view class="btn" :class="{active:type && carNum}">保存</view>
  30. </view>
  31. </template>
  32. <script>
  33. import LbPicker from '@/components/lb-picker'
  34. export default{
  35. data(){
  36. return{
  37. type:'请选择车辆类型',//车辆类型
  38. typeNum:'',
  39. carNum:'',//车牌号
  40. typeData:[{label:'机动车',value:1,child:[]},{label:'电动车',value:2,child:[]},],
  41. }
  42. },
  43. methods:{
  44. // 车辆类型选择确定
  45. confirm(data){
  46. this.type=data.item.label
  47. this.typeNum=data.item.value
  48. },
  49. // 选择车辆类型
  50. chooseType(){
  51. this.$refs.type.show()
  52. },
  53. },
  54. components: {
  55. LbPicker
  56. },
  57. }
  58. </script>
  59. <style>
  60. .btn{
  61. width:702rpx;
  62. height:90rpx;
  63. background:rgba(163,197,237,1);
  64. opacity:1;
  65. border-radius:18rpx;
  66. font-size:32rpx;
  67. font-family:PingFang SC;
  68. font-weight:bold;
  69. line-height:90rpx;
  70. color:rgba(255,255,255,1);
  71. text-align: center;
  72. position: fixed;
  73. bottom: 56rpx;
  74. left:26rpx ;
  75. }
  76. .active{
  77. background:rgba(41,138,253,1);
  78. }
  79. .item{
  80. width: 662rpx;
  81. height: 135rpx;
  82. border-bottom:2rpx solid rgba(247,247,247,1);
  83. margin: 0 auto;
  84. }
  85. .carType{
  86. width:202rpx;
  87. height:40rpx;
  88. font-size:28rpx;
  89. font-family:PingFang SC;
  90. font-weight:400;
  91. color:rgba(153,153,153,1);
  92. }
  93. .carNum{
  94. width:202rpx;
  95. height:40rpx;
  96. font-size:28rpx;
  97. font-family:PingFang SC;
  98. font-weight:400;
  99. color:rgba(51,51,51,1);
  100. }
  101. .content{
  102. width: 100%;
  103. height: 40rpx;
  104. display: flex;
  105. justify-content: space-between;
  106. margin-top: 28rpx;
  107. }
  108. .topTile{
  109. width:132rpx;
  110. height:44rpx;
  111. font-size:32rpx;
  112. font-family:PingFang SC;
  113. font-weight:bold;
  114. color:rgba(51,51,51,1);
  115. margin-top: 32rpx;
  116. }
  117. .holder{
  118. color:rgba(153,153,153,1);
  119. }
  120. .typeActive{
  121. color:rgba(51,51,51,1);
  122. }
  123. </style>