Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-web-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
lanbaoming
jiedao-web-master
Commits
649eb518
Commit
649eb518
authored
Jan 23, 2025
by
Smile
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug226 (web)【控货管理】缺少“订单状态”查询条件。
parent
5fd93c7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
controlorder.vue
src/views/jiedao/profile/controlorder.vue
+12
-2
No files found.
src/views/jiedao/profile/controlorder.vue
View file @
649eb518
...
...
@@ -37,7 +37,7 @@
</el-col>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('controlorder.No')"
prop=
"searchKey"
style=
"margin-left: 28px;"
>
<el-input
v-model=
"queryParams.searchKey"
style=
"width: 250px;"
:placeholder=
"$t('controlorder.NoRules')"
clearable
/>
<el-input
v-model=
"queryParams.searchKey"
onkeyup=
"this.value=this.value.replace(/\s+/g, '')"
style=
"width: 250px;"
:placeholder=
"$t('controlorder.NoRules')"
clearable
/>
</el-form-item>
</el-col></el-row>
<el-row
:gutter=
"20"
>
...
...
@@ -55,6 +55,9 @@
<dict-selector
v-model=
"dateFilterType"
:type=
"DICT_TYPE.ECW_BEGINTIME_TYPE_ENDTIME"
style=
"width: 150px; margin-right: 5px"
/>
<el-date-picker
v-model=
"dateFilter"
type=
"datetimerange"
range-separator=
"-"
:start-placeholder=
"$t('controlorder.start')"
:end-placeholder=
"$t('controlorder.end')"
value-format=
"yyyy-MM-dd HH:mm:ss"
/>
</el-form-item>
<el-form-item
:label=
"$t('receiveorder.status')"
prop=
"dynamicStatusList"
>
<dict-selector
v-model=
"dynamicStatusList"
:type=
"DICT_TYPE.APP_ORDER_STATUS"
style=
"width: 150px; margin-right: 5px"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"handleQuery"
>
{{
$t
(
'
common.search
'
)
}}
</el-button>
<el-button
icon=
"el-icon-refresh"
@
click=
"resetQuery"
>
{{
$t
(
'
common.reload
'
)
}}
</el-button>
...
...
@@ -115,7 +118,6 @@
/>
<el-table-column
:label=
"$t('controlorder.status')"
prop=
"statusMsg"
align=
"center"
header-align=
"center"
>
...
...
@@ -221,6 +223,7 @@ export default {
dateFilter
:
[],
// 筛选日期
// 总条数
total
:
0
,
dynamicStatusList
:
''
,
// 状态筛选类别
// 查询参数
queryParams
:
{
page
:
1
,
...
...
@@ -250,6 +253,12 @@ export default {
timeParams
[
'
begin
'
+
this
.
dateFilterType
]
=
this
.
dateFilter
[
0
]
timeParams
[
'
end
'
+
this
.
dateFilterType
]
=
this
.
dateFilter
[
1
]
}
if
(
this
.
dynamicStatusList
){
this
.
queryParams
.
dynamicStatusList
=
this
.
dynamicStatusList
}
if
(
this
.
queryParams
.
searchKey
!==
null
&&
this
.
queryParams
.
searchKey
!==
''
){
this
.
queryParams
.
searchKey
=
this
.
queryParams
.
searchKey
.
replace
(
/
\s
+/g
,
''
);
}
return
Object
.
assign
({},
this
.
queryParams
,
timeParams
)
},
isChinese
()
{
...
...
@@ -286,6 +295,7 @@ export default {
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
dynamicStatusList
=
''
this
.
$refs
.
queryForm
.
resetFields
()
this
.
getList
()
},
...
...
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