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-04-27 09:44:21 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ca94e72079bc7ba89ff3f075515e1aef41063a06
ca94e720
1 parent
29e14044
feat: 汇总申报改回原来的传参
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
src/views/summaryEdit/index.vue
src/views/summaryEdit/index.vue
View file @
ca94e72
...
...
@@ -78,10 +78,10 @@
class="inputInner--time"
id="inputInner--time"
v-model="formData.time"
type="date
time
range"
format="yyyy-MM-dd
HH:mm:ss
"
type="daterange"
format="yyyy-MM-dd"
prefix-icon="none"
value-format="yyyy-MM-dd
HH:mm:ss
"
value-format="yyyy-MM-dd"
range-separator="至"
@change="dateChange"
style="background-color: #f2f2f2"
...
...
@@ -322,8 +322,8 @@ export default {
},
dateChange(val) {
if (val) {
this.formData.startTime = val[0];
this.formData.endTime = val[1];
this.formData.startTime = val[0]
+ " 00:00:00"
;
this.formData.endTime = val[1]
+ " 23:59:59"
;
} else {
this.formData.startTime = "";
this.formData.endTime = "";
...
...
Please
register
or
login
to post a comment