|
@@ -43,12 +43,12 @@
|
|
|
{{ deptBudgetList.startPrivate }}{{ deptBudgetList.startCity
|
|
|
}}{{ deptBudgetList.startArea
|
|
|
}}{{ deptBudgetList.startDetailedAddress }}
|
|
|
- ({{deptBudgetList.sendWarehouse}})
|
|
|
+ ({{deptBudgetList.sendWarehouse?deptBudgetList.sendWarehouse:''}})
|
|
|
</ws-form-item>
|
|
|
<ws-form-item label="终到地" span="1" prop="netWeight">
|
|
|
{{ deptBudgetList.endPrivate }}{{ deptBudgetList.endCity
|
|
|
}}{{ deptBudgetList.endArea}}{{ deptBudgetList.endDetailedAddress }}
|
|
|
- ({{deptBudgetList.receiveWarehouse}})
|
|
|
+ ({{deptBudgetList.receiveWarehouse?deptBudgetList.receiveWarehouse:''}})
|
|
|
</ws-form-item>
|
|
|
</ws-info-table>
|
|
|
</div>
|
|
@@ -67,15 +67,6 @@
|
|
|
class="datafor"
|
|
|
>
|
|
|
<div class="driver">运输阶段 {{ index+1 }} ({{ item.processNo }})
|
|
|
- <!-- <el-checkbox
|
|
|
- class="endflag"
|
|
|
- true-label="1"
|
|
|
- disabled
|
|
|
- false-label="0"
|
|
|
- v-model="item.endFlag"
|
|
|
- :label="1"
|
|
|
- >粮款结算阶段</el-checkbox
|
|
|
- > -->
|
|
|
</div>
|
|
|
<ws-info-table class="el-table">
|
|
|
<ws-form-item label="运输方式" span="1" prop="tranType">
|
|
@@ -95,7 +86,6 @@
|
|
|
<ws-form-item label="发货地区" span="1" prop="waterContent">
|
|
|
{{ item.sendPrivate }}/{{ item.sendCity }}/{{ item.sendArea }}
|
|
|
</ws-form-item>
|
|
|
- <!-- <ws-form-item label="发货地详细地址" span="1" prop="sendDetailedAddress">{{ item.sendDetailedAddress }}</ws-form-item> -->
|
|
|
<ws-form-item label="发货人" span="1" prop="sender">
|
|
|
{{ item.sender }}
|
|
|
</ws-form-item>
|
|
@@ -108,13 +98,6 @@
|
|
|
{{ item.receivePrivate }}/{{ item.receiveCity
|
|
|
}}/{{ item.receiveArea }}
|
|
|
</ws-form-item>
|
|
|
- <!-- <ws-form-item
|
|
|
- label="收货地详细地址"
|
|
|
- span="1"
|
|
|
- prop="receiveDetailedAddress"
|
|
|
- >
|
|
|
- {{ item.receiveDetailedAddress }}
|
|
|
- </ws-form-item> -->
|
|
|
<ws-form-item label="收货人" span="1" prop="receiver">
|
|
|
{{ item.receiver }}
|
|
|
</ws-form-item>
|
|
@@ -148,12 +131,6 @@ export default {
|
|
|
Pagination,
|
|
|
},
|
|
|
watch: {
|
|
|
- // vesselId(val) {
|
|
|
- // this.getList()
|
|
|
- // },
|
|
|
- isShow(val) {
|
|
|
- this.showType = val
|
|
|
- },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -173,8 +150,6 @@ export default {
|
|
|
deptBudgetTotal: 0,
|
|
|
currentPage: 1,
|
|
|
pageSize: 10,
|
|
|
- searchType: 1,
|
|
|
- searchKeyWord: '',
|
|
|
contractType: 2,
|
|
|
startDate: null,
|
|
|
endDate: null,
|
|
@@ -208,12 +183,6 @@ export default {
|
|
|
contractList: [],
|
|
|
deptBudgetList: {},
|
|
|
historyList: [],
|
|
|
-
|
|
|
- pickerBeginDateBefore: {
|
|
|
- disabledDate: (time) => {
|
|
|
- return time.getTime() > Date.now()
|
|
|
- },
|
|
|
- },
|
|
|
accessoryTFs: false,
|
|
|
}
|
|
|
},
|
|
@@ -229,12 +198,9 @@ export default {
|
|
|
examinetran({ id: this.$route.query.id })
|
|
|
.toPromise()
|
|
|
.then((response) => {
|
|
|
+
|
|
|
this.checkList = response.tranType.split(',')
|
|
|
this.deptBudgetList = response
|
|
|
- // for (let i = 0; i < this.deptBudgetList.tranProcessInfoList.length; i++) {
|
|
|
- // this.deptBudgetList.tranProcessInfoList[i].sendDetailedAddress='黑龙江省黑河市五大连池市沾河林业局'
|
|
|
-
|
|
|
- // }
|
|
|
})
|
|
|
},
|
|
|
approve() {},
|