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
fb94ae96
authored
Sep 29, 2023
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trade:退款理由的维护
parent
04e02ffb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
1 deletions
+38
-1
src/views/mall/trade/config/index.vue
+38
-1
No files found.
src/views/mall/trade/config/index.vue
View file @
fb94ae96
...
...
@@ -10,8 +10,43 @@
<el-form-item
label=
"hideId"
v-show=
"false"
>
<el-input
v-model=
"formData.id"
/>
</el-form-item>
<!-- 配送 -->
<el-tabs>
<!-- 售后 -->
<el-tab-pane
label=
"售后"
>
<el-form-item
label=
"退款理由"
prop=
"afterSaleRefundReasons"
>
<el-select
v-model=
"formData.afterSaleRefundReasons"
allow-create
filterable
multiple
placeholder=
"请直接输入退款理由"
>
<el-option
v-for=
"reason in formData.afterSaleRefundReasons"
:key=
"reason"
:label=
"reason"
:value=
"reason"
/>
</el-select>
</el-form-item>
<el-form-item
label=
"退货理由"
prop=
"afterSaleReturnReasons"
>
<el-select
v-model=
"formData.afterSaleReturnReasons"
allow-create
filterable
multiple
placeholder=
"请直接输入退货理由"
>
<el-option
v-for=
"reason in formData.afterSaleReturnReasons"
:key=
"reason"
:label=
"reason"
:value=
"reason"
/>
</el-select>
</el-form-item>
</el-tab-pane>
<!-- 配送 -->
<el-tab-pane
label=
"配送"
>
<el-form-item
label=
"启用包邮"
prop=
"deliveryExpressFreeEnabled"
>
<el-switch
v-model=
"formData.deliveryExpressFreeEnabled"
style=
"user-select: none"
/>
...
...
@@ -182,6 +217,8 @@ const formLoading = ref(false) // 表单的加载中:1)修改时的数据加
const
formRef
=
ref
()
const
formData
=
ref
({
id
:
null
,
afterSaleRefundReasons
:
[],
afterSaleReturnReasons
:
[],
deliveryExpressFreeEnabled
:
false
,
deliveryExpressFreePrice
:
0
,
brokerageEnabled
:
false
,
...
...
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