Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
integral-mall
Overview
Overview
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
integralMall
integral-mall
Commits
846fe6e7
Commit
846fe6e7
authored
Aug 17, 2022
by
huaying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 退款列表
parent
cdc60180
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
324 additions
and
1 deletions
+324
-1
sticky.js
src/utils/sticky.js
+284
-0
detail.vue
src/views/goods/coupon/detail.vue
+30
-0
refundList.vue
src/views/order/refundList.vue
+10
-1
No files found.
src/utils/sticky.js
0 → 100644
View file @
846fe6e7
This diff is collapsed.
Click to expand it.
src/views/goods/coupon/detail.vue
View file @
846fe6e7
...
...
@@ -477,6 +477,32 @@
</p>
</div>
</div>
<div
class=
"section-content"
>
<h3>
售后服务
</h3>
<el-form-item
label=
"支持退款"
prop=
"refund"
>
<el-radio
v-model=
"couponForm.refund"
:label=
"1"
>
否
</el-radio>
<el-radio
v-model=
"couponForm.refund"
:label=
"2"
>
是
</el-radio>
</el-form-item>
<el-form-item
label=
"退款期限"
prop=
"num"
>
<el-input-number
v-model=
"couponForm.num"
controls-position=
"right"
:min=
"1"
:max=
"10"
style=
"width:130px"
:step=
"1"
step-strictly
></el-input-number>
月
</el-form-item>
<el-form-item
label=
"退款方式"
prop=
"refundList"
>
<el-checkbox-group
v-model=
"couponForm.refundList"
>
<el-checkbox
label=
"主动退款"
></el-checkbox>
<el-checkbox
label=
"过期自动退款"
></el-checkbox>
</el-checkbox-group>
</el-form-item>
</div>
<!-- <div class="confim-btn" :style="{ width: fixedWidth + 'px' }">
<el-form-item class="fix-btn">
...
...
@@ -611,6 +637,9 @@ export default {
timeRangeList
:
[{
timeRange
:
''
}],
// 部分时段数组
timeZones
:
[
''
,
''
],
ladder
:
[],
refund
:
1
,
num
:
1
,
refundList
:
[],
},
uploadAction
:
getInputVal
.
uploadAction
(),
headersUpload
:
{
...
...
@@ -633,6 +662,7 @@ export default {
exchangeDateDayArr
:
[{
required
:
true
,
message
:
'请选择时间'
,
trigger
:
'change'
}],
exchangeDateWeekArr
:
[{
required
:
true
,
message
:
'请选择时间'
,
trigger
:
'change'
}],
proName
:
[{
required
:
true
,
message
:
'请输入券包名称'
,
trigger
:
'blur'
}],
refundList
:
[{
required
:
true
,
message
:
'请选择退款方式'
,
trigger
:
'blur'
}],
},
validateTime
,
mallProId
:
''
,
...
...
src/views/order/refundList.vue
View file @
846fe6e7
...
...
@@ -39,6 +39,7 @@
>
<el-option
label=
"仅退款"
:value=
"1"
/>
<el-option
label=
"退货退款"
:value=
"2"
/>
<el-option
label=
"过期自动退"
:value=
"3"
/>
</el-select>
</div>
<div
class=
"search-item m-r-10"
>
...
...
@@ -90,7 +91,7 @@
<el-tab-pane
label=
"待退款"
name=
"0"
class=
"goods-table-content"
/>
<el-tab-pane
label=
"退款成功"
name=
"1"
class=
"goods-table-content"
/>
<el-tab-pane
label=
"退款关闭"
name=
"2"
class=
"goods-table-content"
/>
<div
class=
"goods-list-content"
v-loading=
"loading"
>
<div
class=
"goods-list-content
scroll_class
"
v-loading=
"loading"
>
<el-table
:data=
"tableData"
ref=
"multipleTable"
...
...
@@ -160,6 +161,9 @@
<p
v-if=
"scope.row.refundType === 2"
>
退货退款
</p>
<p
v-if=
"scope.row.refundType === 3"
>
过期自动退
</p>
</
template
>
</el-table-column>
<el-table-column
prop=
"definedCode"
label=
"申请金额"
min-width=
"120px"
>
...
...
@@ -289,6 +293,7 @@
<
script
>
import
qs
from
'qs'
;
import
sticky
from
'@/utils/sticky.js'
;
import
request
from
'../../service/request.js'
;
import
getInputVal
from
'../../utils/common.js'
;
import
closeRefund
from
'./closeRefund'
;
...
...
@@ -296,6 +301,7 @@ import agreeRefund from './agreeRefund';
import
deliverModal
from
'./delive'
;
import
memberInfo
from
'../../components/memberInfo'
;
export
default
{
mixins
:
[
sticky
],
components
:
{
closeRefund
,
agreeRefund
,
...
...
@@ -304,6 +310,9 @@ export default {
},
data
()
{
return
{
headerTop
:
'62px'
,
parent
:
'scroll_class'
,
scrollClass
:
'dm-layout-page'
,
requestProject
:
'integral-mall'
,
placement
:
'top-start'
,
getTime
:
getInputVal
.
getTime
,
...
...
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