Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-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
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
lanbaoming
jiedao-app-operator-master
Commits
fe66db0f
Commit
fe66db0f
authored
Oct 20, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单列表状态适配运输方式
parent
54083f27
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
index.vue
src/views/ecw/order/index.vue
+15
-1
No files found.
src/views/ecw/order/index.vue
View file @
fe66db0f
...
@@ -76,7 +76,7 @@
...
@@ -76,7 +76,7 @@
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('订单状态')"
prop=
"status"
>
<el-form-item
:label=
"$t('订单状态')"
prop=
"status"
>
<dict-selector
:type=
"DICT_TYPE.ORDER_STATUS"
v-model=
"queryParams.status"
<dict-selector
:type=
"DICT_TYPE.ORDER_STATUS"
v-model=
"queryParams.status"
@
keyup.enter.native=
"handleQuery"
clearable
/>
@
keyup.enter.native=
"handleQuery"
:filter=
"statusDictFilter"
clearable
/>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('报关方式')"
prop=
"customsType"
>
<el-form-item
:label=
"$t('报关方式')"
prop=
"customsType"
>
<dict-selector
:type=
"DICT_TYPE.ECW_CUSTOMS_TYPE"
v-model=
"queryParams.customsType"
clearable
@
change=
"handleQuery"
/>
<dict-selector
:type=
"DICT_TYPE.ECW_CUSTOMS_TYPE"
v-model=
"queryParams.customsType"
clearable
@
change=
"handleQuery"
/>
...
@@ -963,6 +963,20 @@ export default {
...
@@ -963,6 +963,20 @@ export default {
printTag
(
order
){
printTag
(
order
){
this
.
printTagOrderId
=
order
.
orderId
this
.
printTagOrderId
=
order
.
orderId
this
.
printTagWarehouseInNum
=
order
.
sumNum
this
.
printTagWarehouseInNum
=
order
.
sumNum
},
// 过滤订单状态筛选字典内容
statusDictFilter
(
item
){
console
.
log
(
'
statusDictFilter
'
,
item
)
if
(
this
.
transportId
==
3
&&
item
.
cssClass
&&
item
.
cssClass
!=
'
air
'
){
return
false
}
if
(
this
.
transportId
==
1
&&
item
.
cssClass
&&
item
.
cssClass
!=
'
sea
'
){
return
false
}
if
(
this
.
transportId
==
4
&&
item
.
cssClass
&&
item
.
cssClass
!=
'
sea-air
'
){
return
false
}
return
true
}
}
}
}
};
};
...
...
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