|
@@ -1214,7 +1214,9 @@ export default {
|
|
'抵达时间',
|
|
'抵达时间',
|
|
'签收时间',
|
|
'签收时间',
|
|
'系统建议运价',
|
|
'系统建议运价',
|
|
- '摘要'
|
|
|
|
|
|
+ '摘要',
|
|
|
|
+ '排队开始时间',
|
|
|
|
+ '钢材科放行时间'
|
|
],
|
|
],
|
|
//钢材多拼车辆线路ID
|
|
//钢材多拼车辆线路ID
|
|
//索引从1-10为1-10拼路线ID
|
|
//索引从1-10为1-10拼路线ID
|
|
@@ -1301,8 +1303,8 @@ export default {
|
|
orderNumber: null,
|
|
orderNumber: null,
|
|
capacityNumber: null,
|
|
capacityNumber: null,
|
|
arrivalReceiving: false,
|
|
arrivalReceiving: false,
|
|
- arriavlList:[],
|
|
|
|
- receiveList:[],
|
|
|
|
|
|
+ arriavlList: [],
|
|
|
|
+ receiveList: [],
|
|
fileListArrival: [],
|
|
fileListArrival: [],
|
|
fileListReceive: [],
|
|
fileListReceive: [],
|
|
dialogImageUrl: '',
|
|
dialogImageUrl: '',
|
|
@@ -1587,32 +1589,32 @@ export default {
|
|
this.axios
|
|
this.axios
|
|
.post('/api/v1/otms/getArrivalPhoto?orderNumber=' + row.orderNo)
|
|
.post('/api/v1/otms/getArrivalPhoto?orderNumber=' + row.orderNo)
|
|
.then(res => {
|
|
.then(res => {
|
|
- console.log("arrivalPhoto:",res);
|
|
|
|
- if(res.data){
|
|
|
|
- this.arriavlList=[];
|
|
|
|
- res.data.forEach((e,index) => {
|
|
|
|
|
|
+ console.log('arrivalPhoto:', res)
|
|
|
|
+ if (res.data) {
|
|
|
|
+ this.arriavlList = []
|
|
|
|
+ res.data.forEach((e, index) => {
|
|
this.arriavlList.push({
|
|
this.arriavlList.push({
|
|
- name:"file"+index,
|
|
|
|
- url:e
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
- this.fileListArrival=this.arriavlList;
|
|
|
|
|
|
+ name: 'file' + index,
|
|
|
|
+ url: e
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ this.fileListArrival = this.arriavlList
|
|
}
|
|
}
|
|
})
|
|
})
|
|
//签收图片
|
|
//签收图片
|
|
this.axios
|
|
this.axios
|
|
.post('/api/v1/otms/getReceivingPhotoByUrl?orderNumber=' + row.orderNo)
|
|
.post('/api/v1/otms/getReceivingPhotoByUrl?orderNumber=' + row.orderNo)
|
|
.then(res => {
|
|
.then(res => {
|
|
- console.log("ReceivingPhoto:",res);
|
|
|
|
- if(res.data){
|
|
|
|
- this.receiveList=[];
|
|
|
|
- res.data.forEach((e,index) => {
|
|
|
|
|
|
+ console.log('ReceivingPhoto:', res)
|
|
|
|
+ if (res.data) {
|
|
|
|
+ this.receiveList = []
|
|
|
|
+ res.data.forEach((e, index) => {
|
|
this.receiveList.push({
|
|
this.receiveList.push({
|
|
- name:"file"+index,
|
|
|
|
- url:e
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
- this.fileListReceive=this.receiveList;
|
|
|
|
|
|
+ name: 'file' + index,
|
|
|
|
+ url: e
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ this.fileListReceive = this.receiveList
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
@@ -2374,13 +2376,13 @@ export default {
|
|
loading.close()
|
|
loading.close()
|
|
} else {
|
|
} else {
|
|
loading.close()
|
|
loading.close()
|
|
- this.$alert(res.data.data,'提示',{
|
|
|
|
- confirmButtonText:"确定",
|
|
|
|
- callback:action=>{
|
|
|
|
- this.getSteelReport()
|
|
|
|
|
|
+ this.$alert(res.data.data, '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ callback: action => {
|
|
|
|
+ this.getSteelReport()
|
|
this.operation(this.steelMap)
|
|
this.operation(this.steelMap)
|
|
}
|
|
}
|
|
- });
|
|
|
|
|
|
+ })
|
|
}
|
|
}
|
|
})
|
|
})
|
|
.catch(() => {
|
|
.catch(() => {
|