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() + }) + }