From e474ab6cee45627c34a8fc79f2b76c9e82763f2c Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期三, 14 八月 2024 17:44:40 +0800
Subject: [PATCH] update 供应商结算单
---
sub_pages/supplier/print/print-list.vue | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/sub_pages/supplier/print/print-list.vue b/sub_pages/supplier/print/print-list.vue
index e544fba..9bf47d5 100644
--- a/sub_pages/supplier/print/print-list.vue
+++ b/sub_pages/supplier/print/print-list.vue
@@ -145,12 +145,19 @@
var t = this.$storage.getItem('cache_delivery_order_print') || ''
if (t) {
this.item = JSON.parse(t)
+ var apitype = ''
+ // #ifdef PUB_SUPPLIER
+ apitype = '/supplier'
+ // #endif
+ // #ifdef PUB_PARTNER
+ // apitype = '/supplier'
+ // #endif
//获取详情接口
this.$message.showLoading()
const {
code,
data
- } = await this.$http.request('get', '/api/supplier/delivery/list/items/view', {
+ } = await this.$http.request('get', `/api${apitype}/delivery/list/items/view`, {
params: {
id: this.item.id
}
@@ -529,7 +536,7 @@
var flowerCategory = that.item.flowerCategory
if (flowerCategory) {
//只取二级分类
- var tarr = flowerCategory.splite("/")
+ var tarr = flowerCategory.split("/")
if (tarr.length >= 2) {
flowerCategory = tarr[tarr.length - 1]
}
--
Gitblit v1.9.3