feat:货品接口带分页

This commit is contained in:
2026-09-02 18:47:30 +08:00
parent 469451232a
commit b1d3ec9b2f
5 changed files with 27 additions and 23 deletions
+1 -1
View File
@@ -734,7 +734,7 @@ export default {
jumpOrderInfo(item) {
uni.navigateTo({
url:
"/pages/mine_package/mine_order_info/mine_order_info?id=" + item.id,
"/pages/mine_package/mine_order_info/mine_order_info?id=" + item.id + '&type=' + this.form.type,
});
},
// 处理到期时间
@@ -282,11 +282,13 @@ export default {
height: "100vh",
isShowBalance: false,
qrcodeVal: '',
returnType: 1
};
},
onLoad(options) {
const id = options.id;
this.id = id ? parseInt(id, 10) : 0;
this.returnType = options.type || 1;
this.getOrderInfo();
const payOpen = options.payOpen;
// 支付弹框
@@ -302,10 +304,10 @@ export default {
formatDate,
formatDate1,
jumpLeft() {
const type = this.orderInfo.status + 1;
// const type = this.orderInfo.status + 1;
uni.navigateTo({
url:
"/pages/mine_package/mine_order/mine_order?type=" + type
"/pages/mine_package/mine_order/mine_order?type=" + this.returnType
});
},
wayShowFun(type) {