Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
罗鑫霖
/
vion-tools
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 530e37bc
authored
Mar 25, 2020
by
周志凯
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[chg]: changed parameter
1 parent
bd2f131c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
10 deletions
static/index.html
static/index.html
View file @
530e37b
...
...
@@ -697,9 +697,9 @@
</el-select>
</div>
<div
class=
"query-item"
>
<span
v-show=
"
featureRevisitType !== 3
"
class=
"query-item__title"
>
日期 :
</span>
<span
v-show=
"
isSendDateParam
"
class=
"query-item__title"
>
日期 :
</span>
<el-date-picker
v-show=
"
featureRevisitType !== 3
"
v-show=
"
isSendDateParam
"
v-model=
"query.dateVal"
type=
"date"
value-format=
"yyyy-MM-dd"
...
...
@@ -708,7 +708,7 @@
></el-date-picker>
<el-button
type=
"primary"
:class=
"
featureRevisitType === 1
? '' : 'query-button'"
:class=
"
isSendDateParam
? '' : 'query-button'"
@
click=
"onSearchClick"
>
开 始
</el-button>
</div>
...
...
@@ -803,16 +803,16 @@
</el-select>
</div>
<div
class=
"query-item"
>
<span
v-show=
"
featureLibRebuildType!== 1
"
class=
"query-item__title"
>
日期 :
</span>
<span
v-show=
"
isSendDateParam
"
class=
"query-item__title"
>
日期 :
</span>
<el-date-picker
v-show=
"
featureLibRebuildType !== 1
"
v-show=
"
isSendDateParam
"
v-model=
"query.dateVal"
type=
"date"
value-format=
"yyyy-MM-dd"
:picker-options=
"pickerOpts"
placeholder=
"选择日期"
></el-date-picker>
<el-button
type=
"primary"
:class=
"
featureLibRebuildType === 1
? '' : 'query-button'"
@
click=
"onSearchClick"
>
开 始
</el-button>
<el-button
type=
"primary"
:class=
"
isSendDateParam
? '' : 'query-button'"
@
click=
"onSearchClick"
>
开 始
</el-button>
</div>
</div>
</div>
...
...
@@ -1155,6 +1155,18 @@
}
},
computed
:
{
isSendDateParam
()
{
if
(
(
this
.
dateFormat
===
'rebuildFeatureLib'
&&
this
.
featureLibRebuildType
===
1
)
||
(
this
.
dateFormat
===
'revisitFeature'
&&
this
.
featureRevisitType
===
3
)
)
{
return
false
}
return
true
},
totalTime
()
{
const
{
startTiming
,
endTiming
}
=
this
return
endTiming
-
startTiming
...
...
@@ -1193,11 +1205,9 @@
:
typeHandler
[
val
]
},
featureRevisitType
(
val
)
{
this
.
query
.
dateVal
=
val
===
3
?
null
:
this
.
createDate
()
this
.
query
.
type
=
val
},
featureLibRebuildType
(
val
)
{
this
.
query
.
dateVal
=
val
===
1
?
null
:
this
.
createDate
()
this
.
query
.
type
=
val
},
rematchPersonType
(
val
)
{
...
...
@@ -1901,7 +1911,7 @@
return
val
===
1
?
'/mall/staff'
:
'/mall/custom'
}
}
const
{
dateFormat
,
query
}
=
this
const
{
dateFormat
,
query
,
isSendDateParam
}
=
this
const
{
dateVal
,
mallVal
,
type
}
=
query
...
...
@@ -1914,7 +1924,7 @@
scheduleType
:
scheduleType
,
// featureType: dateFormat === 'revisitFeature' ? type : null
}
if
(
dateVal
)
{
if
(
isSendDateParam
)
{
parameter
.
startDate
=
dateVal
+
' 00:00:00'
parameter
.
endDate
=
dateVal
+
' 23:59:59'
}
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment