|
@@ -37,9 +37,15 @@
|
|
|
<div class="label">
|
|
|
{{ isCustom.spuName }}
|
|
|
</div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx">
|
|
|
+
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
|
|
|
{{ isCustom.price }}元/{{ isCustom.unit }}
|
|
|
</div>
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-else>
|
|
|
+ {{
|
|
|
+ isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
|
|
|
+ }}元/{{ isCustom.unit }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="line-height: 32px; margin-top: 10px">
|
|
@@ -73,9 +79,14 @@
|
|
|
<div class="label">
|
|
|
{{ isCustom.spuName }}
|
|
|
</div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx">
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
|
|
|
{{ isCustom.price }}元/{{ isCustom.unit }}
|
|
|
</div>
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-else>
|
|
|
+ {{
|
|
|
+ isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
|
|
|
+ }}元/{{ isCustom.unit }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="line-height: 32px; margin-top: 10px">
|
|
@@ -108,9 +119,14 @@
|
|
|
<div class="label">
|
|
|
{{ isCustom.spuName }}
|
|
|
</div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx">
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
|
|
|
{{ isCustom.price }}元/{{ isCustom.unit }}
|
|
|
</div>
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-else>
|
|
|
+ {{
|
|
|
+ isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
|
|
|
+ }}元/{{ isCustom.unit }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="line-height: 32px; margin-top: 10px">
|
|
@@ -145,9 +161,14 @@
|
|
|
<div class="label">
|
|
|
{{ isCustom.spuName }}
|
|
|
</div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx">
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
|
|
|
{{ isCustom.price }}元/{{ isCustom.unit }}
|
|
|
</div>
|
|
|
+ <div style="font-weight: 400; font-size: 28rpx" v-else>
|
|
|
+ {{
|
|
|
+ isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
|
|
|
+ }}元/{{ isCustom.unit }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -216,9 +237,11 @@ const openLink = (url: any) => {
|
|
|
// });
|
|
|
// }
|
|
|
// };
|
|
|
+const userType = ref();
|
|
|
const productOrder = async (record) => {
|
|
|
let userid = uni.getStorageSync("userId");
|
|
|
if (userid == record.shopOwnerId) {
|
|
|
+ userType.value = 1;
|
|
|
let res = await mesApi.default.orderDetail(record.orderId);
|
|
|
if (res.code == 200) {
|
|
|
let item = res.data;
|
|
@@ -228,6 +251,7 @@ const productOrder = async (record) => {
|
|
|
}
|
|
|
console.log(res);
|
|
|
} else {
|
|
|
+ userType.value = 0;
|
|
|
webUni.webView.navigateTo({
|
|
|
url: `/subpages/my/product-orders/buy-order-details?id=` + record.orderId,
|
|
|
});
|