Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TFMOM
TF-MOM-WEB
Commits
516068eb
Commit
516068eb
authored
Mar 01, 2024
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
配套出库确认增加计划开始时间查询
parent
5974eae0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
2 deletions
+24
-2
left.vue
...ter/myPlanTask/outStorageMatchConfirm/components/left.vue
+24
-2
No files found.
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/outStorageMatchConfirm/components/left.vue
View file @
516068eb
...
...
@@ -5,7 +5,7 @@
ref=
"form"
:model=
"form"
size=
"small"
label-width=
"
68
px"
label-width=
"
100
px"
>
<el-form-item
label=
"架次"
>
<el-input
...
...
@@ -23,6 +23,17 @@
placeholder=
"请输入"
/>
</el-form-item>
<el-form-item
label=
"计划开始时间"
>
<el-date-picker
v-model=
"form.scheduledStart"
type=
"daterange"
size=
"mini"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
value-format=
"yyyy-MM-dd"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
@
click=
"searchForm()"
>
查询
</el-button>
<el-button
@
click=
"resetForm()"
>
重置
</el-button>
...
...
@@ -118,6 +129,16 @@ export default {
init
()
{
// const searchData = obtainedParams.searchFormData ? obtainedParams.searchFormData.items : []
// const extraItems = obtainedParams.extraBaseParams || []
const
items
=
[]
if
(
this
.
form
.
scheduledStart
)
{
items
.
push
({
fieldName
:
'extSupporting.extProcessPlan.joExecutePlan.scheduledStart'
,
operator
:
'BTWN'
,
searchItemType
:
'Date'
,
value
:
this
.
form
.
scheduledStart
[
0
]
+
' 00:00:00'
,
value1
:
this
.
form
.
scheduledStart
[
1
]
+
' 23:59:59'
})
}
const
params
=
{
'pageFrom'
:
1
,
'pageSize'
:
9999
,
...
...
@@ -133,7 +154,8 @@ export default {
'fieldName'
:
'sorties'
,
'operator'
:
'LIKE'
,
'value'
:
this
.
form
.
sorties
||
''
}
},
...
items
],
'operator'
:
'AND'
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment