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-06 16:05:27 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
87e725397ab9998d3ebdb9c8ae27cf84f7ef7b30
87e72539
1 parent
27eed66a
优化选择
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
src/views/summaryEdit/index.vue
src/views/summaryEdit/index.vue
View file @
87e7253
...
...
@@ -100,7 +100,7 @@
clearable
filterable
placeholder=""
@focus="getCustomerList"
@focus
.stop
="getCustomerList"
>
<el-option
v-for="(item, index) in ebcDataList"
...
...
@@ -288,8 +288,13 @@ export default {
});
},
dateChange(val) {
this.formData.startTime = val[0] + " 00:00:00";
this.formData.endTime = val[1] + " 23:59:59";
if (val) {
this.formData.startTime = val[0] + " 00:00:00";
this.formData.endTime = val[1] + " 23:59:59";
} else {
this.formData.startTime = "";
this.formData.endTime = "";
}
this.formData.ebpcode = "";
},
getDeclareType() {
...
...
Please
register
or
login
to post a comment