Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-05-13 10:38:26 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1b5e298380168662cc39af31f505d848f8ae0827
1b5e2983
1 parent
19578961
feat: BUG修复
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
37 additions
and
26 deletions
src/views/exportListQuery/custom-dialog.vue
src/views/exportListQuery/index.vue
src/views/exportRevokeBillQuery/index.vue
src/views/logisticsExitQuery/index.vue
src/views/reportingData/time-dialog.vue
src/views/exportListQuery/custom-dialog.vue
View file @
1b5e298
...
...
@@ -128,8 +128,12 @@ export default {
});
await getCustomizeExcel({}).then((res) => {
if (res.code === "200") {
this.transferValue = res.data.defaultLogisticsWaybill;
this.transferValue1 = res.data.defaultCommodityDetail;
this.transferValue = res.data.logisticsWaybillDimension
? res.data.logisticsWaybillDimension
: res.data.defaultLogisticsWaybill;
this.transferValue1 = res.data.commodityDetailDimension
? res.data.commodityDetailDimension
: res.data.defaultCommodityDetail;
this.historyInfo = res.data;
this.$nextTick(() => {
this.commodityDetailDimension = this.commodityDetailDimension.map(
...
...
@@ -159,9 +163,13 @@ export default {
radioChange(e) {
console.log(e);
if (e === 3) {
this.transferValue = this.historyInfo.defaultLogisticsWaybill;
this.transferValue = this.historyInfo.logisticsWaybillDimension
? this.historyInfo.logisticsWaybillDimension
: this.historyInfo.defaultLogisticsWaybill;
} else if (e === 6) {
this.transferValue1 = this.historyInfo.defaultCommodityDetail;
this.transferValue1 = this.historyInfo.commodityDetailDimension
? this.historyInfo.commodityDetailDimension
: this.historyInfo.defaultCommodityDetail;
}
},
...
...
src/views/exportListQuery/index.vue
View file @
1b5e298
...
...
@@ -191,7 +191,7 @@
ref="entryTable"
:data="tableData"
:headerData="headerData"
:maxHeight="
500
"
:maxHeight="
tableMaxheight
"
:border="true"
:pagination="true"
:order="false"
...
...
@@ -370,9 +370,7 @@ export default {
this.search(0);
},
mounted() {
this.$nextTick(() => {
this.tableMaxheight = window.innerHeight - 300;
});
},
watch: {
$route() {
...
...
src/views/exportRevokeBillQuery/index.vue
View file @
1b5e298
...
...
@@ -194,17 +194,18 @@ export default {
slot: true,
},
{
name: "
物流运单编
号",
value: "
logistics
No",
name: "
提运单
号",
value: "
bill
No",
width: "",
align: "left",
},
{
name: "
提运单
号",
value: "
bill
No",
name: "
物流运单编
号",
value: "
logistics
No",
width: "",
align: "left",
},
{
name: "清单编号",
value: "invtNo",
...
...
src/views/logisticsExitQuery/index.vue
View file @
1b5e298
...
...
@@ -48,7 +48,11 @@
placeholder=""
>
<el-option
v-for="(item, index) in $store.getters.dict.RECEIPT_STATUS.filter(fItem => fItem.itemChineseName !== '已提交')"
v-for="(
item, index
) in $store.getters.dict.RECEIPT_STATUS.filter(
(fItem) => fItem.itemChineseName !== '已提交'
)"
:key="index"
:label="item.itemChineseName"
:value="item.itemValue"
...
...
@@ -146,9 +150,9 @@
</div>
</TablePopover>
</template>
<template v-slot:
logistics
No="scope">
<template v-slot:
bill
No="scope">
<el-button type="text" @click="view(scope.row)">{{
scope.row.logistics
No
scope.row.bill
No
}}</el-button>
</template>
</Table>
...
...
@@ -186,18 +190,19 @@ export default {
slot: true,
},
{
name: "
物流运单编
号",
value: "
logistics
No",
name: "
提运单
号",
value: "
bill
No",
width: "",
align: "left",
slot: true
slot: true
,
},
{
name: "
提运单
号",
value: "
bill
No",
name: "
物流运单编
号",
value: "
logistics
No",
width: "",
align: "left",
},
{
name: "物流企业名称",
value: "logisticsName",
...
...
@@ -295,13 +300,13 @@ export default {
if (val == 0) {
this.page.pageIndex = 1;
}
let obj = {
...this.sreachFormData
};
let obj = {
...this.sreachFormData
};
obj.pageIndex = this.page.pageIndex;
obj.pageSize = this.page.pageSize;
obj.createTimeStart = "";
obj.createTimeEnd = "";
obj.logisticsNo = obj.logisticsWaybillNumber
delete obj.logisticsWaybillNumber
obj.logisticsNo = obj.logisticsWaybillNumber
;
delete obj.logisticsWaybillNumber
;
if (obj.logisticsNo != null && obj.logisticsNo != "") {
obj.logisticsNo = obj.logisticsNo.split("\n");
} else {
...
...
@@ -311,7 +316,7 @@ export default {
obj.createTimeStart = obj.createTime[0];
obj.createTimeEnd = obj.createTime[1];
}
delete obj.createTime
delete obj.createTime
;
// if (obj.billNo != null && obj.billNo != "") {
// obj.billNo = obj.billNo.split("\n");
// } else {
...
...
@@ -362,7 +367,7 @@ export default {
})
.finally(() => {
this.$nextTick(() => {
this.$store.dispatch(
'setLoadingState', false)
this.$store.dispatch(
"setLoadingState", false);
this.$refs.returnStatusPopover.tableLoading = false;
});
});
...
...
src/views/reportingData/time-dialog.vue
View file @
1b5e298
...
...
@@ -52,8 +52,7 @@
:border="true"
:pagination="false"
:order="false"
:height="tableMaxheight + 'px'"
:maxHeight="tableMaxheight + 'px'"
:maxHeight="tableMaxheight"
>
</Table>
...
...
Please
register
or
login
to post a comment