From 0df65703a3ae44ae933ff9ed3e8efb06cc02f95e Mon Sep 17 00:00:00 2001 From: sx <2427911852@qq.com> Date: Fri, 18 Apr 2025 08:51:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E4=BB=A3=E7=A0=81=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jiuyi2/components/shop/detail/detail.vue | 4 +++ jiuyi2/components/shop/order/item.vue | 6 ++-- jiuyi2/manifest.json | 4 +-- .../components/jy-commodity-head/index.vue | 5 ++- jiuyi2/pages/shop/order/index.vue | 3 ++ jiuyi2/pages/shop/store/order.vue | 35 ++++++++++++++++--- jiuyi2/readme.md | 1 - jiuyi2/vite.config.js | 2 +- 8 files changed, 46 insertions(+), 14 deletions(-) diff --git a/jiuyi2/components/shop/detail/detail.vue b/jiuyi2/components/shop/detail/detail.vue index 8301d78c..72dcc285 100644 --- a/jiuyi2/components/shop/detail/detail.vue +++ b/jiuyi2/components/shop/detail/detail.vue @@ -265,6 +265,10 @@ 支持先用后付 + + + {{detail.intro}} + diff --git a/jiuyi2/components/shop/order/item.vue b/jiuyi2/components/shop/order/item.vue index 17d72fa9..f207c6a3 100644 --- a/jiuyi2/components/shop/order/item.vue +++ b/jiuyi2/components/shop/order/item.vue @@ -38,10 +38,8 @@ - - 用户小A + + {{item.cusName}} diff --git a/jiuyi2/manifest.json b/jiuyi2/manifest.json index 7860422d..fb8f766b 100644 --- a/jiuyi2/manifest.json +++ b/jiuyi2/manifest.json @@ -2,8 +2,8 @@ "name" : "九亿", "appid" : "__UNI__08B31BC", "description" : "", - "versionName" : "1.0.21", - "versionCode" : 1021, + "versionName" : "1.0.22", + "versionCode" : 1022, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/jiuyi2/pages/shop/commodity/components/jy-commodity-head/index.vue b/jiuyi2/pages/shop/commodity/components/jy-commodity-head/index.vue index d2039181..3c166e4a 100644 --- a/jiuyi2/pages/shop/commodity/components/jy-commodity-head/index.vue +++ b/jiuyi2/pages/shop/commodity/components/jy-commodity-head/index.vue @@ -2,6 +2,7 @@ import { ref, defineProps, + computed, } from 'vue' // 状态栏 import statusBar from '@/components/header/statusBar' @@ -12,6 +13,8 @@ default: {} } }) + // 是否礼包商品 + const giftPack = computed(() => props.detail.categoryCode?.startsWith('GIFT_PACK')) // 顶部激活 const headerActive = ref(false) const share_more = ref(null) @@ -109,7 +112,7 @@ - 销量: {{detail.sales}} + 销量: {{detail.sales}} diff --git a/jiuyi2/pages/shop/order/index.vue b/jiuyi2/pages/shop/order/index.vue index 044b6685..55582b7d 100644 --- a/jiuyi2/pages/shop/order/index.vue +++ b/jiuyi2/pages/shop/order/index.vue @@ -340,6 +340,9 @@ + + + diff --git a/jiuyi2/pages/shop/store/order.vue b/jiuyi2/pages/shop/store/order.vue index 656dea03..895f423d 100644 --- a/jiuyi2/pages/shop/store/order.vue +++ b/jiuyi2/pages/shop/store/order.vue @@ -18,6 +18,8 @@ import JyShopNavigation from '@/components/public/jy-shop-navigation' // 订单列表项 import orderItem from '@/components/shop/order/item.vue'; + // 快递信息 + import expressVue from '@/components/shop/order/express.vue'; // 工具库 import util from '@/common/js/util'; // @@ -156,6 +158,24 @@ // 重载列表 refreshList() } + + /** + * 填写退货物流信息 + * @param {Object} param + */ + function handleExpressConfirm(param) { + let data = { + ...param, + id: orderDetail.id, + } + console.log('orderupdateRefund', data) + return + + order.orderupdateRefund(data).then(res => { + // 重载列表 + refreshList() + }) + }