From a0ea1ece4e3ffb728aee73e954d65a2209ebde32 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期三, 06 十一月 2024 17:51:45 +0800 Subject: [PATCH] 1.提现不能超过500 --- sub_pages/supplier/print/print-list.vue | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sub_pages/supplier/print/print-list.vue b/sub_pages/supplier/print/print-list.vue index d28802e..253d446 100644 --- a/sub_pages/supplier/print/print-list.vue +++ b/sub_pages/supplier/print/print-list.vue @@ -147,14 +147,20 @@ // that.printerNum = numList[0] }, - async onLoad() { + async onLoad(options) { var t = this.$storage.getItem('cache_delivery_order_print') || '' if (t) { this.items = JSON.parse(t) var requrl = '' // #ifdef PUB_SUPPLIER // apitype = '/supplier' - requrl = `/api/supplier/delivery/list/items/views/new` + if(options.source=='detail'){ + requrl = `/api/supplier/delivery/list/items/views` + + }else{ + requrl = `/api/supplier/delivery/list/items/views/new` + + } // #endif // #ifndef PUB_SUPPLIER requrl = `/api/delivery/list/items/views` -- Gitblit v1.9.3