12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <view class="breakdown">
- <view class="card_no">
- <view class="card-left">
- <view class="card-title" class="{{cardTitle==0 ? 'card-title' : 'card-title1'}}"> 上传车辆编号</view>
- <input type="text" confirm-type="done" class="input-no" value="{{bike_no}}" placeholder="点击手动输入车辆编码"
- placeholder-class="no-placeholder" onInput="inputBikeNo" />
- </view>
- <view class="card-right" a:if="{{cardTitle==0}}" onTap="saoma"><text
- class="iconfont icon-17-saoma"></text><text>扫码</text></view>
- </view>
- <view class="problem">
- <view class="problem-title">问题类型</view>
- <swiper class="problem-bike" indicator-dots='true' indicator-active-color='var(--globleColor)'>
- <swiper-item class="item1">
- <image src="../../img/bike-show.jpg"></image>
- </swiper-item>
- <swiper-item class="item1">
- <image src="../../img/bike-show.jpg"></image>
- </swiper-item>
- </swiper>
- <view class="option">
- <view class="{{currentProblem==index ? 'active' : 'option-item-left'}}"
- a:for="{{bikeError}}" a:key='index' onTap="selectProblem" data-index="{{index}}">{{item.name}}</view>
- </view>
- <view class="input-problem">
- <textarea placeholder="请填写问题描述" placeholder-class="placeholder" onInput="input" onBlur='blur'
- onConfirm='firm'></textarea>
- <!-- <text class="count">{{currentNum}}/240</text> -->
- </view>
- </view>
- <view class="bike-photo">
- <view class="card-title">请拍摄车辆照片</view>
- <!-- -->
- <view a:for="{{arr}}" class='photoList'>
- <image src='{{item}}' style='width:130rpx;height:130rpx;margin:10rpx;' mode='aspectFill' onTap="imgYu"
- data-index='{{index}}' mode="aspectFill"></image>
- <view class="cha-icon">
- <text class="iconfont icon-cha" style=" font-size: 24rpx;" onTap='delete1' data-index="{{index}}"></text>
- </view>
- </view>
- <view class="photo-image" onTap='photo'>+</view>
- <view class="photo">
- <view class="photo-left">
- <view class="photo-title">照片示例</view>
- <view class="photo-text">请上传相关照片或(全车含编号)</view>
- </view>
- <view class="photo-right"></view>
- </view>
- </view>
- <view class="problem-bt" onTap="submitForm">提交</view>
- </view>
|