Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
688dad31
authored
Aug 31, 2023
by
puhui999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单列表:添加配送方式筛选
parent
5c7796ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
src/views/mall/trade/order/index.vue
+14
-5
No files found.
src/views/mall/trade/order/index.vue
View file @
688dad31
...
@@ -64,10 +64,17 @@
...
@@ -64,10 +64,17 @@
/>
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<!-- TODO @puhui999:要不加个 deliveryType 筛选;配送方式;然后如果选了快递,就有【快递公司】筛选;如果选了自提,就有【自提门店】;然后把他们这 3 个,坐在一个 el-form-item 里;
<el-form-item
label=
"配送方式"
prop=
"deliveryType"
>
目的是;有的时候,会筛选门店,然后做核销;这个时候,就需要筛选自提门店;
<el-select
v-model=
"queryParams.deliveryType"
class=
"!w-280px"
clearable
placeholder=
"全部"
>
-->
<el-option
<el-form-item
label=
"快递公司"
prop=
"type"
>
v-for=
"dict in getIntDictOptions(DICT_TYPE.TRADE_DELIVERY_TYPE)"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
/>
</el-select>
</el-form-item>
<el-form-item
v-if=
"queryParams.deliveryType === 1"
label=
"快递公司"
>
<el-select
v-model=
"queryParams.logisticsId"
class=
"!w-280px"
clearable
placeholder=
"全部"
>
<el-select
v-model=
"queryParams.logisticsId"
class=
"!w-280px"
clearable
placeholder=
"全部"
>
<el-option
<el-option
v-for=
"item in deliveryExpressList"
v-for=
"item in deliveryExpressList"
...
@@ -77,7 +84,7 @@
...
@@ -77,7 +84,7 @@
/>
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
label=
"自提门店"
prop=
"type
"
>
<el-form-item
v-if=
"queryParams.deliveryType === 2"
label=
"自提门店
"
>
<el-select
<el-select
v-model=
"queryParams.pickUpStoreId"
v-model=
"queryParams.pickUpStoreId"
class=
"!w-280px"
class=
"!w-280px"
...
@@ -337,11 +344,13 @@ const queryParams = reactive({
...
@@ -337,11 +344,13 @@ const queryParams = reactive({
userMobile
:
''
,
userMobile
:
''
,
receiverName
:
''
,
receiverName
:
''
,
receiverMobile
:
''
,
receiverMobile
:
''
,
terminal
:
''
,
terminal
:
''
,
type
:
null
,
type
:
null
,
status
:
null
,
status
:
null
,
payChannelCode
:
''
,
payChannelCode
:
''
,
createTime
:
[],
createTime
:
[],
deliveryType
:
null
,
spuName
:
''
,
spuName
:
''
,
itemCount
:
''
,
itemCount
:
''
,
pickUpStoreId
:
[],
pickUpStoreId
:
[],
...
...
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