feat: 更改ui样式&改在售后流程&底部栏状态

This commit is contained in:
2025-09-06 21:03:39 +08:00
parent 9bcded1bd5
commit 279e6cf4c7
8 changed files with 72 additions and 44 deletions
+3 -3
View File
@@ -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;