|
@@ -52,7 +52,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="18">
|
|
|
<div v-if="contractNo!='全部合同'">
|
|
|
- 船名: 航次:
|
|
|
+ <span style="display:inline-block;margin-right:10px;">船名:{{shipName}}</span> <span style="display:inline-block;margin-right:10px;">航次:{{shipNo}}</span> <div style="display:inline-block;margin-right:10px;"> 装船重量(吨):<ws-button v-if="shippedWeight==0" type="primary" @click="handlefeedback()">反馈</ws-button></div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -93,8 +93,6 @@
|
|
|
<el-table-column class="table_td" prop="taskNo" label="运输任务"></el-table-column>
|
|
|
<el-table-column class="table_td" prop="shipType" label="类型"></el-table-column>
|
|
|
<el-table-column class="table_td" prop="carNo" label="车牌号"></el-table-column>
|
|
|
- <el-table-column class="table_td" prop="shipName" label="船名"></el-table-column>
|
|
|
- <el-table-column class="table_td" prop="shipNumber" label="航次"></el-table-column>
|
|
|
<el-table-column class="boxNo" prop="boxNo" label="箱号/仓位号"></el-table-column>
|
|
|
<el-table-column class="table_td" prop="loadingWeight" label="装车净重(吨)"></el-table-column>
|
|
|
<el-table-column class="table_td" prop="unloadingWeight" label="卸车净重(吨)">
|
|
@@ -218,7 +216,16 @@
|
|
|
<img style="width: 100px; height: 100px" :src="item" alt="" />
|
|
|
</div>
|
|
|
</WinseaContentModal>
|
|
|
-
|
|
|
+ <WinseaContentModal v-model="editshow" title="装船反馈"
|
|
|
+ @on-cancel="editshow = false">
|
|
|
+ <el-form :model="taskform">
|
|
|
+ <el-form-item label="重量(吨)" >
|
|
|
+ <el-input type='number' v-model="shippedWeight" autocomplete="off" placeholder="输入水单装船重量"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <ws-upload ref="upload" :comp-id="compId" :appendix-ids="enclosure"
|
|
|
+ accept=".jpg, .jpeg, .png, .pdf, .doc, .docx, .zip, .rar" />
|
|
|
+ </WinseaContentModal>
|
|
|
<WinseaContentModal v-model="accessoryTFs" :title="$t('system.noticeCircular.information')"
|
|
|
@on-cancel="accessoryTFs = false">
|
|
|
<div v-for="(item, index) in paymentScreenshotList" :key="index">
|
|
@@ -240,6 +247,7 @@
|
|
|
getYunShuXiaLa,
|
|
|
getYunShuNumber,
|
|
|
SetYunShuPrice,
|
|
|
+ edittrantask
|
|
|
} from '@/model/statisticalReport/index'
|
|
|
import {
|
|
|
posthandle
|
|
@@ -275,6 +283,7 @@
|
|
|
checked: true,
|
|
|
alreadyInvoice: '',
|
|
|
needReapply: true,
|
|
|
+ taskform:{},
|
|
|
dialogFormVisible1: false,
|
|
|
dialogFormVisible2: false,
|
|
|
dialogFormVisible3: false,
|
|
@@ -285,7 +294,7 @@
|
|
|
dialogFormVisible8: false,
|
|
|
dialogFormVisible11: false,
|
|
|
dialogVisible: false,
|
|
|
-
|
|
|
+ shippedWeight:0,
|
|
|
form: {
|
|
|
transactionPrice: '',
|
|
|
transactionsNumber: '',
|
|
@@ -378,6 +387,7 @@
|
|
|
},
|
|
|
shipName:'',
|
|
|
shipNo:'',
|
|
|
+ editshow:true,
|
|
|
amountNotPayable: 0,
|
|
|
amountEdPayable: 0,
|
|
|
paymentScreenshotUrls: [],
|
|
@@ -399,6 +409,9 @@
|
|
|
this.showType = this.isShow
|
|
|
},
|
|
|
methods: {
|
|
|
+ handlefeedback(){
|
|
|
+ this.editshow=true
|
|
|
+ },
|
|
|
find(){
|
|
|
this.getList()
|
|
|
},
|