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-03-18 17:08:17 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d2be3cb086b57b292a06648796d697cf7ba7fadf
d2be3cb0
1 parent
e26fb9df
fix: 修改BUG
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
src/views/exportRevokeBillQuery/index.vue
src/views/receipt-management/dialog.vue
src/views/exportRevokeBillQuery/index.vue
View file @
d2be3cb
...
...
@@ -26,8 +26,6 @@
dataKey="logisticsNo"
@formChange="formChange"
/>
</Formitem>
</el-col>
<!-- 提运单号 -->
...
...
@@ -60,7 +58,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"
...
...
@@ -163,7 +165,10 @@
</template>
<script>
import { getAllCancellation, getExportCancellationReceiptData } from "@/api/exportRevokeBill-api.js";
import {
getAllCancellation,
getExportCancellationReceiptData,
} from "@/api/exportRevokeBill-api.js";
export default {
name: "ExportRevokeBillQuery",
...
...
@@ -296,12 +301,18 @@ export default {
obj.pageSize = this.page.pageSize;
obj.createTimeStart = "";
obj.createTimeEnd = "";
console.log(obj);
if (obj.createTime.length > 0) {
obj.createTimeStart = obj.createTime[0];
obj.createTimeEnd = obj.createTime[1];
}
if (obj.logisticsNo != null && obj.logisticsNo != "") {
if (!Array.isArray(obj.logisticsNo)) {
obj.logisticsNo = obj.logisticsNo.split("\n");
}
} else {
obj.logisticsNo = [];
}
...
...
@@ -355,7 +366,7 @@ export default {
})
.finally(() => {
this.$nextTick(() => {
this.$store.dispatch(
'setLoadingState', false)
this.$store.dispatch(
"setLoadingState", false);
this.$refs.returnStatusPopover.tableLoading = false;
});
});
...
...
src/views/receipt-management/dialog.vue
View file @
d2be3cb
...
...
@@ -4,7 +4,7 @@
title="新增模拟回执管理"
:visible.sync="outerVisible"
:show-close="false"
width="
45%
"
width="
960px
"
:close-on-click-modal="false"
:destroy-on-close="true"
v-loading="loadings.dialogLoading"
...
...
Please
register
or
login
to post a comment