feat: 更改ui样式&改在售后流程&底部栏状态
This commit is contained in:
@@ -352,7 +352,7 @@ export default {
|
||||
onLoad(options) {
|
||||
const type = options.type;
|
||||
this.form.type =
|
||||
type && type < 5 ? parseInt(type, 10) : MINE_ORDER_TYPE.UNPAID;
|
||||
type ? parseInt(type, 10) : MINE_ORDER_TYPE.UNPAID;
|
||||
this.loadData();
|
||||
// 待收货判断是否签署
|
||||
if (
|
||||
@@ -403,7 +403,7 @@ export default {
|
||||
this.aftterSalesProduct = item;
|
||||
this.afterShow = true;
|
||||
this.aftterSalesProduct.status = 9;
|
||||
this.aftterSalesProduct.afterType = this.form.type - 1;
|
||||
this.aftterSalesProduct.afterType = this.form.type == MINE_ORDER_TYPE.UNSHIPPED ? 1 : 2;
|
||||
}
|
||||
},
|
||||
// 售后订单详情
|
||||
@@ -800,7 +800,7 @@ export default {
|
||||
}
|
||||
|
||||
.order_warp {
|
||||
height: calc(100vh - 130rpx);
|
||||
height: calc(100vh - env(safe-area-inset-bottom));
|
||||
background-color: $app-bj;
|
||||
padding: 100rpx 30rpx 30rpx;
|
||||
overflow-y: hidden;
|
||||
|
||||
Reference in New Issue
Block a user