This commit is contained in:
linfso 2024-12-19 11:29:07 +08:00
parent 8546ed5c75
commit 0da7c0ca5b
2 changed files with 6 additions and 3 deletions

View File

@ -1513,7 +1513,9 @@ methods: {
},
calcSendSite(){
let queryParams = {
province:this.form.sender.province
province:this.form.sender.province,
city:this.form.sender.city,
county:this.form.sender.county
};
if(this.form.sender.province){
getSendSite(queryParams).then(response => {

View File

@ -207,6 +207,7 @@
@queryTable="getList"
@selection-change="handleSelectionChange"
@sort-change="handleSortChange"
@row-dblclick="handleShowTraceInfo"
>
<div slot="toolbar">
@ -516,8 +517,8 @@
<TraceWaybillDetailView :key="currentTraceBillCode" :scanBillCode="currentTraceBillCode" :billDetail="currentTraceBillItem"></TraceWaybillDetailView>
</el-dialog> -->
<el-dialog title="查看" :visible.sync="openView" width="80%" :close-on-click-modal="false" v-dialogDrag append-to-body>
<WaybillDetailReadOnly :key="billCode" :billCode="billCode" ></WaybillDetailReadOnly>
<el-dialog title="查看" :visible.sync="openTraceInfo" width="80%" :close-on-click-modal="false" v-dialogDrag append-to-body>
<WaybillDetailReadOnly :key="currentTraceBillCode" :billCode="currentTraceBillCode" ></WaybillDetailReadOnly>
</el-dialog>
</XdPageContainer>