|
@@ -854,7 +854,7 @@
|
|
|
:before-close="closeUpload2"
|
|
|
>
|
|
|
<el-form style="margin-left:20%">
|
|
|
- <el-form-item label="修改金额">
|
|
|
+ <el-form-item label="修改单价">
|
|
|
<el-input
|
|
|
v-model="detailAmount"
|
|
|
style="width:200px"
|
|
@@ -1722,8 +1722,8 @@ export default {
|
|
|
data = this.$refs.tableRef.selection
|
|
|
}
|
|
|
for(let i=0;i<data.length;i++){
|
|
|
- if(!data[i].orderId || !data[i].detailsAmount){
|
|
|
- this.$message.warning('没有派发运单,或没有运费,无法修改此项')
|
|
|
+ if(!data[i].orderId || !data[i].netWeight){
|
|
|
+ this.$message.warning('没有派发运单,或没有净重,无法修改此项')
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
@@ -2182,6 +2182,7 @@ export default {
|
|
|
},
|
|
|
showPhoto(row){
|
|
|
this.showPhotoPreview=true;
|
|
|
+ this.previewList=[];
|
|
|
this.axios.post('/api/v1/uc/getPicture',{
|
|
|
urls:row.photo
|
|
|
}).then((res)=>{
|