Merge pull request '增加订单平台已退款状态' (#385) from zhy into master

Reviewed-on: http://git.luyuan.tk/luyuan/deming/pulls/385
This commit is contained in:
hansu 2020-09-21 17:03:28 +08:00
commit 977d38ce18
2 changed files with 10 additions and 6 deletions

View File

@ -130,7 +130,7 @@ export default {
state = '待退款'; state = '待退款';
break; break;
case 7: case 7:
state = '已退款'; state = '商家已退款';
break; break;
case 9: case 9:
state = '拼团中'; state = '拼团中';
@ -139,9 +139,9 @@ export default {
state = '已取消'; state = '已取消';
break; break;
case 11: case 11:
state = '已拒绝'; state = '商家已拒绝';
case 12: case 12:
state = '已退款'; state = '平台已退款';
break; break;
default: default:
break; break;

View File

@ -115,7 +115,7 @@ export default {
image: '../static/mine/36.png', image: '../static/mine/36.png',
}, },
'5': { '5': {
text: '已退款', text: '商家已退款',
image: '../static/mine/34.png', image: '../static/mine/34.png',
}, },
'6': { '6': {
@ -135,7 +135,11 @@ export default {
image: '../static/mine/33.png', image: '../static/mine/33.png',
}, },
'10': { '10': {
text: '已拒绝', text: '商家已拒绝',
image: '../static/mine/34.png',
},
'11': {
text: '平台已退款',
image: '../static/mine/34.png', image: '../static/mine/34.png',
}, },
}, },
@ -330,7 +334,7 @@ export default {
state = '10'; state = '10';
break; break;
case 12: case 12:
state = '5'; state = '11';
break; break;
default: default:
break; break;