|
@@ -103,7 +103,6 @@
|
|
|
</view>
|
|
|
</picker>
|
|
|
|
|
|
-
|
|
|
<view v-else class="con-list">
|
|
|
<input placeholder="请填写车长(米)" name="input" v-model="item.carLength"></input>
|
|
|
</view>
|
|
@@ -183,11 +182,9 @@
|
|
|
</view>
|
|
|
<view class="c-row b-b">
|
|
|
<text class="tit">开户支行</text>
|
|
|
- <picker @change="bankChange" :value="bankIndex" :range="bankType" class="con-list">
|
|
|
- <view class="con-list">
|
|
|
- {{bankIndex>-1?bankType[bankIndex]:'请选择开户支行'}}
|
|
|
- </view>
|
|
|
- </picker>
|
|
|
+ <view class="con-list">
|
|
|
+ <input placeholder="请填写开户支行" name="input" v-model="items.bankDepositBranch"></input>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="c-row b-b">
|
|
|
<text class="tit">收款人姓名</text>
|
|
@@ -282,7 +279,9 @@
|
|
|
carLongIndex: 0,
|
|
|
carLongType: ['13', '9.6', '8.2', '8.7', '11.7', '12.5', '13.7', '15', '16', '17.5'],
|
|
|
driverCarInfoList: [],
|
|
|
- driverPayeeInfoList: [],
|
|
|
+ driverPayeeInfoList: [
|
|
|
+ {bankDepositBranch:''}
|
|
|
+ ],
|
|
|
DriverViewInfo: {
|
|
|
driverCarInfoList: [],
|
|
|
driverPayeeInfoList: [],
|
|
@@ -312,6 +311,7 @@
|
|
|
bankIndex: -1,
|
|
|
bankType: [],
|
|
|
year:[],
|
|
|
+ bankstatus:true,
|
|
|
region:"请选择常驻城市",
|
|
|
}
|
|
|
},
|
|
@@ -350,6 +350,9 @@
|
|
|
},
|
|
|
changeCarChength() {
|
|
|
this.carchength = !this.carchength
|
|
|
+ },
|
|
|
+ bankstatusChength() {
|
|
|
+ this.bankstatus = !this.carchength
|
|
|
},
|
|
|
carAdd() {
|
|
|
this.driverCarInfoList.push({
|
|
@@ -419,6 +422,7 @@
|
|
|
}, 'application/json;charset=UTF-8').then(res => {
|
|
|
this.procurementPlanInfos = res.data.data
|
|
|
this.DriverViewInfo = res.data.data
|
|
|
+ console.log(this.DriverViewInfo)
|
|
|
this.driverCarInfoList = this.DriverViewInfo.driverCarInfoList
|
|
|
this.driverPayeeInfoList = this.DriverViewInfo.driverPayeeInfoList
|
|
|
this.addressUrl = this.DriverViewInfo.addressUrl.split(",")
|
|
@@ -727,7 +731,9 @@
|
|
|
padding-right: 20rpx;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
-
|
|
|
+.con-list input{
|
|
|
+ font-size:14px;
|
|
|
+}
|
|
|
.getcode {
|
|
|
font-size: 14px;
|
|
|
position: absolute;
|