Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录
切换导航
S
shop-new
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
王天霸
shop-new
Commits
2adddc4c
提交
2adddc4c
authored
9月 27, 2021
作者:
huaxinzhu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug修复
上级
a62dcf64
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
93 行增加
和
67 行删除
+93
-67
index.vue
src/views/system/freight/freight_list/index.vue
+5
-5
indexbtn.vue
src/views/system/freight/freight_list/indexbtn.vue
+34
-34
orderDetail.vue
src/views/system/order/components/orderDetail.vue
+17
-10
index.vue
src/views/system/order/index.vue
+1
-1
edit.vue
src/views/system/retreat/edit.vue
+17
-7
index.vue
src/views/system/retreat/retreat/index.vue
+19
-10
没有找到文件。
src/views/system/freight/freight_list/index.vue
浏览文件 @
2adddc4c
...
@@ -250,7 +250,7 @@
...
@@ -250,7 +250,7 @@
name
:
""
,
name
:
""
,
isDefault
:
0
,
isDefault
:
0
,
chargeType
:
0
,
chargeType
:
0
,
D
ispatching
:
[
d
ispatching
:
[
{
{
a
:
"全国"
,
a
:
"全国"
,
f
:
500
,
f
:
500
,
...
@@ -259,8 +259,8 @@
...
@@ -259,8 +259,8 @@
np
:
5
,
np
:
5
,
}
}
],
],
Disd
ispatching
:
""
,
disD
ispatching
:
""
,
P
ublish
:
0
,
p
ublish
:
0
,
};
};
this
.
title
=
"添加运费模板"
;
this
.
title
=
"添加运费模板"
;
},
},
...
@@ -269,8 +269,8 @@
...
@@ -269,8 +269,8 @@
this
.
reset
();
this
.
reset
();
const
id
=
row
.
id
const
id
=
row
.
id
getFreight
(
id
).
then
(
response
=>
{
getFreight
(
id
).
then
(
response
=>
{
let
formdate
=
response
.
data
//
let formdate = response.data
response
.
data
.
Dispatching
=
JSON
.
parse
(
formdate
.
D
ispatching
)
//response.data.dispatching = JSON.parse(formdate.d
ispatching)
this
.
form
=
response
.
data
this
.
form
=
response
.
data
this
.
isOpen
=
true
;
this
.
isOpen
=
true
;
this
.
title
=
"修改运费模板"
;
this
.
title
=
"修改运费模板"
;
...
...
src/views/system/freight/freight_list/indexbtn.vue
浏览文件 @
2adddc4c
...
@@ -3,26 +3,26 @@
...
@@ -3,26 +3,26 @@
<el-form
class=
'el_form'
ref=
"form"
label-width=
"100px"
>
<el-form
class=
'el_form'
ref=
"form"
label-width=
"100px"
>
<el-form-item
label=
"排序"
>
<el-form-item
label=
"排序"
>
<el-input
<el-input
v-model=
"goodsDate.
S
ort"
v-model=
"goodsDate.
s
ort"
placeholder=
""
placeholder=
""
style=
"width: 70%"
style=
"width: 70%"
></el-input>
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"模板名称"
>
<el-form-item
label=
"模板名称"
>
<el-input
<el-input
v-model=
"goodsDate.
N
ame"
v-model=
"goodsDate.
n
ame"
placeholder=
""
placeholder=
""
style=
"width: 70%"
style=
"width: 70%"
></el-input>
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"是否默认"
>
<el-form-item
label=
"是否默认"
>
<el-radio-group
v-model=
"goodsDate.
IsD
efault"
>
<el-radio-group
v-model=
"goodsDate.
is_d
efault"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
</el-radio-group>
</el-form-item>
</el-form-item>
<el-form-item
label=
"计费方式"
>
<el-form-item
label=
"计费方式"
>
<el-radio-group
v-model=
"goodsDate.
ChargeT
ype"
>
<el-radio-group
v-model=
"goodsDate.
charge_t
ype"
>
<el-radio
:label=
"1"
>
按重量
</el-radio>
<el-radio
:label=
"1"
>
按重量
</el-radio>
<el-radio
:label=
"2"
>
按数量
</el-radio>
<el-radio
:label=
"2"
>
按数量
</el-radio>
</el-radio-group>
</el-radio-group>
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
<p
class=
"col_pr"
>
管理
</p>
<p
class=
"col_pr"
>
管理
</p>
</div>
</div>
<div
<div
v-for=
"(item, index) in goodsDate.
D
ispatching"
v-for=
"(item, index) in goodsDate.
d
ispatching"
:key=
"index"
:key=
"index"
class=
"tablessst"
class=
"tablessst"
>
>
...
@@ -106,20 +106,19 @@
...
@@ -106,20 +106,19 @@
</el-form-item>
</el-form-item>
<el-form-item
label=
"不配送区域"
>
<el-form-item
label=
"不配送区域"
>
<el-input
<el-input
v-model=
"goodsDate.
Dis
dispatching"
v-model=
"goodsDate.
dis_
dispatching"
placeholder=
""
placeholder=
""
style=
"width: 80%"
style=
"width: 80%"
disabled
disabled
>
>
<
template
slot=
"prepend"
>
<
template
slot=
"prepend"
>
<span
@
click=
"opendias(goodsDate.Disdispatching, 1, 99)"
<span
@
click=
"opendias(goodsDate.dis_dispatching, 1, 99)"
>
选择
</span
>
选择
</span>
>
</
template
>
</
template
>
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"状态"
>
<el-form-item
label=
"状态"
>
<el-radio-group
v-model=
"goodsDate.
P
ublish"
>
<el-radio-group
v-model=
"goodsDate.
p
ublish"
>
<el-radio
:label=
"1"
>
启用
</el-radio>
<el-radio
:label=
"1"
>
启用
</el-radio>
<el-radio
:label=
"0"
>
禁用
</el-radio>
<el-radio
:label=
"0"
>
禁用
</el-radio>
</el-radio-group>
</el-radio-group>
...
@@ -201,16 +200,16 @@ export default {
...
@@ -201,16 +200,16 @@ export default {
disabledate
:
[],
//不能选择
disabledate
:
[],
//不能选择
dialogVisible
:
false
,
dialogVisible
:
false
,
goodsDate
:
{
goodsDate
:
{
I
d
:
0
,
i
d
:
0
,
S
ort
:
0
,
s
ort
:
0
,
N
ame
:
"0"
,
n
ame
:
"0"
,
IsD
efault
:
0
,
is_d
efault
:
0
,
ChargeT
ype
:
0
,
charge_t
ype
:
0
,
D
ispatching
:
[
d
ispatching
:
[
{
a
:
"全国"
,
f
:
500
,
fp
:
10
,
n
:
100
,
np
:
5
}
{
a
:
"全国"
,
f
:
500
,
fp
:
10
,
n
:
100
,
np
:
5
}
],
],
Dis
dispatching
:
""
,
dis_
dispatching
:
""
,
P
ublish
:
0
,
p
ublish
:
0
,
},
},
};
};
},
},
...
@@ -226,9 +225,9 @@ export default {
...
@@ -226,9 +225,9 @@ export default {
if
(
checkListString
.
substr
(
0
,
1
)
===
','
)
{
if
(
checkListString
.
substr
(
0
,
1
)
===
','
)
{
checkListString
=
checkListString
.
slice
(
1
);
checkListString
=
checkListString
.
slice
(
1
);
}
}
this
.
goodsDate
.
Dis
dispatching
=
checkListString
;
this
.
goodsDate
.
dis_
dispatching
=
checkListString
;
}
else
{
}
else
{
this
.
goodsDate
.
D
ispatching
[
this
.
btnindex
].
a
=
this
.
checkList
.
join
()
this
.
goodsDate
.
d
ispatching
[
this
.
btnindex
].
a
=
this
.
checkList
.
join
()
}
}
this
.
dialogVisible
=
false
this
.
dialogVisible
=
false
},
},
...
@@ -240,13 +239,13 @@ export default {
...
@@ -240,13 +239,13 @@ export default {
},
},
opendias
(
type
,
i
,
index
)
{
opendias
(
type
,
i
,
index
)
{
this
.
goodsDate
.
D
ispatching
.
forEach
((
element
)
=>
{
this
.
goodsDate
.
d
ispatching
.
forEach
((
element
)
=>
{
let
arrd
=
element
.
a
.
split
(
','
)
let
arrd
=
element
.
a
.
split
(
','
)
for
(
let
i
=
0
;
i
<
arrd
.
length
;
i
++
){
for
(
let
i
=
0
;
i
<
arrd
.
length
;
i
++
){
this
.
disabledate
.
push
(
arrd
[
i
]);
this
.
disabledate
.
push
(
arrd
[
i
]);
}
}
});
});
let
arr
=
this
.
goodsDate
.
Dis
dispatching
.
split
(
','
);
let
arr
=
this
.
goodsDate
.
dis_
dispatching
.
split
(
','
);
for
(
let
i
=
0
;
i
<
arr
.
length
;
i
++
){
for
(
let
i
=
0
;
i
<
arr
.
length
;
i
++
){
this
.
disabledate
.
push
(
arr
[
i
]);
this
.
disabledate
.
push
(
arr
[
i
]);
}
}
...
@@ -266,25 +265,30 @@ export default {
...
@@ -266,25 +265,30 @@ export default {
this
.
dialogVisible
=
true
;
this
.
dialogVisible
=
true
;
},
},
handleinfomationclick
()
{
//提交
/** 运费模板 修改/新增 的保存 */
this
.
goodsDate
.
Dispatching
.
forEach
(
item
=>
{
handleinfomationclick
()
{
this
.
goodsDate
.
dispatching
.
forEach
(
item
=>
{
item
.
fp
=
Number
(
item
.
fp
*
100
).
toFixed
();
item
.
fp
=
Number
(
item
.
fp
*
100
).
toFixed
();
item
.
np
=
Number
(
item
.
np
*
100
).
toFixed
();
item
.
np
=
Number
(
item
.
np
*
100
).
toFixed
();
})
})
this
.
loading
=
true
addFreight
(
this
.
goodsDate
).
then
(
res
=>
{
addFreight
(
this
.
goodsDate
).
then
(
res
=>
{
//console.log(275,res);
//console.log(275,res);
if
(
res
.
code
===
1
)
{
if
(
res
.
code
===
1
)
{
this
.
$emit
(
"closeIndexbtn"
,
false
);
this
.
$emit
(
"closeIndexbtn"
,
false
);
if
(
this
.
goodsDate
.
I
d
===
0
)
{
if
(
this
.
goodsDate
.
i
d
===
0
)
{
this
.
$message
({
message
:
'新增成功'
,
type
:
'success'
});
this
.
$message
({
message
:
'新增成功'
,
type
:
'success'
});
}
else
{
}
else
{
this
.
$message
({
message
:
'修改成功'
,
type
:
'success'
});
this
.
$message
({
message
:
'修改成功'
,
type
:
'success'
});
}
}
}
else
{
this
.
goodsDate
.
dispatching
.
forEach
(
item
=>
{
item
.
fp
=
Number
(
item
.
fp
/
100
).
toFixed
();
item
.
np
=
Number
(
item
.
np
/
100
).
toFixed
();
})
}
}
this
.
loading
=
false
;
});
});
},
},
/** 配送区域 添加参数 操作 */
addguild
()
{
addguild
()
{
//添加
//添加
let
arrchild
=
{
let
arrchild
=
{
...
@@ -294,15 +298,11 @@ export default {
...
@@ -294,15 +298,11 @@ export default {
n
:
""
,
n
:
""
,
np
:
""
,
np
:
""
,
};
};
this
.
$set
(
this
.
$set
(
this
.
goodsDate
.
dispatching
,
this
.
goodsDate
.
dispatching
.
length
,
arrchild
);
this
.
goodsDate
.
Dispatching
,
this
.
goodsDate
.
Dispatching
.
length
,
arrchild
);
},
},
/** 删除 运费模板 */
deletearrinput
(
index
)
{
deletearrinput
(
index
)
{
//删除
this
.
goodsDate
.
dispatching
.
splice
(
index
,
1
);
this
.
goodsDate
.
Dispatching
.
splice
(
index
,
1
);
},
},
info
()
{
info
()
{
this
.
goodsDate
=
this
.
option
this
.
goodsDate
=
this
.
option
...
...
src/views/system/order/components/orderDetail.vue
浏览文件 @
2adddc4c
...
@@ -178,8 +178,11 @@
...
@@ -178,8 +178,11 @@
<el-input
size=
"mini"
v-model=
"addressForm.tel"
placeholder=
"请输入联系电话"
></el-input>
<el-input
size=
"mini"
v-model=
"addressForm.tel"
placeholder=
"请输入联系电话"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"收货地址:"
>
<el-form-item
label=
"收货地址:"
>
<el-cascader
v-model=
"addressForm.areaList"
:props=
'props'
ref=
"ssqCascader"
placeholder=
"请选择具体的省市区"
style=
"width:100%"
></el-cascader>
<el-cascader
v-model=
"addressForm.areaList"
:props=
'props'
@
change=
"handleChanges"
ref=
"ssqCascader"
placeholder=
"请选择具体的省市区"
style=
"width:100%"
></el-cascader>
</el-form-item>
</el-form-item>
<!-- <el-form-item label="省市区:" prop="address_ids">-->
<!-- <el-cascader v-model="areaList" :props='props' @change="handleChanges" placeholder="请选择具体的省市区" style="width:100%"></el-cascader>-->
<!-- </el-form-item>-->
<el-form-item
label=
"街道:"
>
<el-form-item
label=
"街道:"
>
<el-input
size=
"mini"
v-model=
"addressForm.street"
placeholder=
"请输入街道"
></el-input>
<el-input
size=
"mini"
v-model=
"addressForm.street"
placeholder=
"请输入街道"
></el-input>
</el-form-item>
</el-form-item>
...
@@ -590,13 +593,15 @@ export default {
...
@@ -590,13 +593,15 @@ export default {
if
(
this
.
orderDetail
.
mobile
)
{
if
(
this
.
orderDetail
.
mobile
)
{
this
.
addressForm
.
tel
=
this
.
orderDetail
.
mobile
;
this
.
addressForm
.
tel
=
this
.
orderDetail
.
mobile
;
}
}
// if(this.orderDetail.provice && this.orderDetail.city && this.orderDetail.district) {
// this.addressForm.areaList.push(this.orderDetail.provice) //this.orderDetail.provice + this.orderDetail.city + this.orderDetail.district
if
(
this
.
orderDetail
.
provice
&&
this
.
orderDetail
.
city
&&
this
.
orderDetail
.
district
)
{
// this.addressForm.areaList.push(this.orderDetail.this.city) //this.orderDetail.provice + this.orderDetail.city + this.orderDetail.district
this
.
addressForm
.
areaList
[
0
]
=
Number
(
this
.
orderDetail
.
provice
)
// this.addressForm.areaList.push(this.orderDetail.district) //this.orderDetail.provice + this.orderDetail.city + this.orderDetail.district
this
.
addressForm
.
areaList
[
1
]
=
Number
(
this
.
orderDetail
.
city
)
// }else {
this
.
addressForm
.
areaList
[
2
]
=
Number
(
this
.
orderDetail
.
district
)
// this.addressForm.areaList = []
//console.log(66,this.addressForm.areaList);
// }
}
else
{
this
.
addressForm
.
areaList
=
[]
}
if
(
this
.
orderDetail
.
street
)
{
if
(
this
.
orderDetail
.
street
)
{
this
.
addressForm
.
street
=
this
.
orderDetail
.
street
;
this
.
addressForm
.
street
=
this
.
orderDetail
.
street
;
...
@@ -605,8 +610,6 @@ export default {
...
@@ -605,8 +610,6 @@ export default {
this
.
addressForm
.
address
=
this
.
orderDetail
.
address
;
this
.
addressForm
.
address
=
this
.
orderDetail
.
address
;
}
}
this
.
modifyinfoDialog
=
true
this
.
modifyinfoDialog
=
true
},
},
/** 保存 买家信息 */
/** 保存 买家信息 */
...
@@ -788,6 +791,10 @@ export default {
...
@@ -788,6 +791,10 @@ export default {
resolve
(
result
)
resolve
(
result
)
})
})
},
},
handleChanges
(
value
)
{
this
.
addressForm
.
areaList
=
value
;
console
.
log
(
797
,
value
);
},
}
}
}
}
</
script
>
</
script
>
...
...
src/views/system/order/index.vue
浏览文件 @
2adddc4c
...
@@ -595,7 +595,6 @@
...
@@ -595,7 +595,6 @@
this
.
$refs
.
upload
.
clearFiles
();
this
.
$refs
.
upload
.
clearFiles
();
this
.
isDeliveryOpen
=
false
;
this
.
isDeliveryOpen
=
false
;
this
.
excelList
=
[];
this
.
excelList
=
[];
//console.log(88,this.excelList);
//console.log(88,this.excelList);
},
},
// 提交导入数据
// 提交导入数据
...
@@ -609,6 +608,7 @@
...
@@ -609,6 +608,7 @@
deliveryOrderExport
(
this
.
excelList
).
then
(
res
=>
{
deliveryOrderExport
(
this
.
excelList
).
then
(
res
=>
{
if
(
res
.
code
===
1
)
{
if
(
res
.
code
===
1
)
{
this
.
isDeliveryOpen
=
false
;
this
.
isDeliveryOpen
=
false
;
this
.
excelList
=
[];
this
.
$message
({
type
:
'success'
,
message
:
'批量发货成功'
});
this
.
$message
({
type
:
'success'
,
message
:
'批量发货成功'
});
this
.
getListOrder
();
this
.
getListOrder
();
}
else
{
}
else
{
...
...
src/views/system/retreat/edit.vue
浏览文件 @
2adddc4c
...
@@ -149,8 +149,8 @@
...
@@ -149,8 +149,8 @@
<el-button
class=
"as-btn"
type=
"primary"
@
click=
"refuseHandle(4)"
:disabled=
"isFinishedButtonDisabled"
>
拒绝退货退款
</el-button>
<el-button
class=
"as-btn"
type=
"primary"
@
click=
"refuseHandle(4)"
:disabled=
"isFinishedButtonDisabled"
>
拒绝退货退款
</el-button>
</div>
</div>
<div
class=
"as-handle-btn"
v-if=
"onlyOrRefundBtnType == 3"
>
<div
class=
"as-handle-btn"
v-if=
"onlyOrRefundBtnType == 3"
>
<el-button
class=
"as-btn"
type=
"primary"
@
click=
"refuseHandle(4)"
:disabled=
"isFinishedButtonDisabled"
>
拒收包裹
</el-button>
<el-button
class=
"as-btn"
type=
"primary"
@
click=
"refuseHandle(4)"
:disabled=
"isFinishedButtonDisabled
|| returnRefundDisabled
"
>
拒收包裹
</el-button>
<el-button
class=
"as-btn"
type=
"primary"
@
click=
"agreeHandle(1)"
:disabled=
"isFinishedButtonDisabled
"
>
确定退款
</el-button>
<el-button
class=
"as-btn"
type=
"primary"
@
click=
"agreeHandle(1)"
:disabled=
"isFinishedButtonDisabled
|| returnRefundDisabled"
>
确定退款
</el-button>
</div>
</div>
</el-card>
</el-card>
...
@@ -265,7 +265,8 @@
...
@@ -265,7 +265,8 @@
sellerId
:
0
,
sellerId
:
0
,
asAddressOptions
:
[],
asAddressOptions
:
[],
order_refund_address
:
''
,
order_refund_address
:
''
,
isFinishedButtonDisabled
:
false
isFinishedButtonDisabled
:
false
,
returnRefundDisabled
:
false
,
// 仅 退货退款 订单,需要此参数,控制,拒收包裹-同意退款按钮是否可以点击
}
// return end
}
// return end
},
},
watch
:
{
watch
:
{
...
@@ -479,6 +480,7 @@
...
@@ -479,6 +480,7 @@
this
.
onlyOrRefundBtnType
=
1
this
.
onlyOrRefundBtnType
=
1
}
else
if
(
row
.
refund_type
==
2
)
{
}
else
if
(
row
.
refund_type
==
2
)
{
this
.
onlyOrRefundBtnType
=
(
row
.
status
==
1
)
?
2
:
3
this
.
onlyOrRefundBtnType
=
(
row
.
status
==
1
)
?
2
:
3
this
.
returnRefundDisabled
=
(
row
.
status
==
2
)
?
true
:
false
// 仅 退货退款 订单,当买家未回填物流单号时,不允许点击 “拒收包裹” 按钮
}
else
{
}
else
{
this
.
onlyOrRefundBtnType
=
0
;
this
.
onlyOrRefundBtnType
=
0
;
}
}
...
@@ -676,13 +678,21 @@
...
@@ -676,13 +678,21 @@
reasonFormatter
(
type
)
{
reasonFormatter
(
type
)
{
let
reasonText
=
''
let
reasonText
=
''
if
(
type
==
1
)
{
if
(
type
==
1
)
{
reasonText
=
'
其他
'
reasonText
=
'
协商一致退款
'
}
else
if
(
type
==
2
)
{
}
else
if
(
type
==
2
)
{
reasonText
=
'
漏发
'
reasonText
=
'
质量问题
'
}
else
if
(
type
==
3
)
{
}
else
if
(
type
==
3
)
{
reasonText
=
'
协商一致
'
reasonText
=
'
物流问题
'
}
else
if
(
type
==
4
)
{
}
else
if
(
type
==
4
)
{
reasonText
=
'质量不符'
reasonText
=
'假冒品牌'
}
else
if
(
type
==
5
)
{
reasonText
=
'少件/漏发/破损/污渍'
}
else
if
(
type
==
6
)
{
reasonText
=
'7天无理由'
}
else
if
(
type
==
7
)
{
reasonText
=
'拍错/多拍/不想要'
}
else
if
(
type
==
8
)
{
reasonText
=
'其他'
}
}
return
reasonText
return
reasonText
},
},
...
...
src/views/system/retreat/retreat/index.vue
浏览文件 @
2adddc4c
...
@@ -79,10 +79,14 @@
...
@@ -79,10 +79,14 @@
</el-table-column>
</el-table-column>
<el-table-column
label=
"退换货原因"
align=
"center"
prop=
"reason"
>
<el-table-column
label=
"退换货原因"
align=
"center"
prop=
"reason"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.reason==1"
>
其他
</span>
<span
v-if=
"scope.row.reason==1"
>
协商一致退款
</span>
<span
v-if=
"scope.row.reason==2"
>
漏发
</span>
<span
v-if=
"scope.row.reason==2"
>
质量问题
</span>
<span
v-if=
"scope.row.reason==3"
>
协商一致
</span>
<span
v-if=
"scope.row.reason==3"
>
物流问题
</span>
<span
v-if=
"scope.row.reason==4"
>
质量不符
</span>
<span
v-if=
"scope.row.reason==4"
>
假冒品牌
</span>
<span
v-if=
"scope.row.reason==5"
>
少件/漏发/破损/污渍
</span>
<span
v-if=
"scope.row.reason==6"
>
7天无理由
</span>
<span
v-if=
"scope.row.reason==7"
>
拍错/多拍/不想要
</span>
<span
v-if=
"scope.row.reason==8"
>
其他
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"申请时间"
align=
"center"
prop=
"created_time"
>
<el-table-column
label=
"申请时间"
align=
"center"
prop=
"created_time"
>
...
@@ -172,10 +176,14 @@
...
@@ -172,10 +176,14 @@
// 退换货原因
// 退换货原因
needMsgOptions
:
[
needMsgOptions
:
[
{
value
:
-
1
,
label
:
'全部原因'
},
{
value
:
-
1
,
label
:
'全部原因'
},
{
value
:
3
,
label
:
'协商一致退款'
},
{
value
:
1
,
label
:
'协商一致退款'
},
{
value
:
1
,
label
:
'其他'
},
{
value
:
2
,
label
:
'质量问题'
},
{
value
:
2
,
label
:
'漏发'
},
{
value
:
3
,
label
:
'物流问题'
},
{
value
:
4
,
label
:
'质量不符'
},
{
value
:
4
,
label
:
'假冒品牌'
},
{
value
:
5
,
label
:
'少件/漏发/破损/污渍'
},
{
value
:
6
,
label
:
'7天无理由'
},
{
value
:
7
,
label
:
'拍错/多拍/不想要'
},
{
value
:
8
,
label
:
'其他'
},
],
],
fullHeight
:
0
,
fullHeight
:
0
,
afterSaleHeight
:
200
,
afterSaleHeight
:
200
,
...
@@ -195,12 +203,13 @@
...
@@ -195,12 +203,13 @@
}
}
},
},
created
()
{
created
()
{
this
.
searchList
();
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
this
.
fullHeight
=
document
.
getElementsByClassName
(
'box-card'
)[
0
].
clientHeight
this
.
fullHeight
=
document
.
getElementsByClassName
(
'box-card'
)[
0
].
clientHeight
})
})
},
},
mounted
()
{},
mounted
()
{
this
.
searchList
();
},
methods
:
{
methods
:
{
/** 顶部 状态页签切换
/** 顶部 状态页签切换
* 1-未处理;2-处理中;3-已完成
* 1-未处理;2-处理中;3-已完成
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论