|
@@ -1,185 +1,20 @@
|
|
|
<template>
|
|
|
<div class="custom">
|
|
|
- <!-- {{ isCustom }} -->
|
|
|
- <template v-if="isCustom.businessID === 'product_message'">
|
|
|
+ <template v-if="isCustom.businessID === 'order'">
|
|
|
<div class="evaluate">
|
|
|
<div @click="product(isCustom)">
|
|
|
<div class="left">
|
|
|
<img
|
|
|
- :src="isCustom.pic"
|
|
|
+ :src="isCustom.imageUrl"
|
|
|
style="width: 80px; height: 80px; border-radius: 10px"
|
|
|
/>
|
|
|
<div class="right">
|
|
|
<div class="label">
|
|
|
- {{ isCustom.spuName }}
|
|
|
+ {{ isCustom.title }}
|
|
|
</div>
|
|
|
+ <div class="label">描述:{{ isCustom.spuDesc }}</div>
|
|
|
<div style="font-weight: 400; font-size: 28rpx">
|
|
|
- {{ isCustom.price.toFixed(2) }}元/{{ isCustom.unit }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
-
|
|
|
- <template v-else-if="isCustom.businessID === 'modify_order_cost'">
|
|
|
- <div class="evaluate">
|
|
|
- <span style="font-size: 36rpx; line-height: 44rpx"
|
|
|
- >老板,请及时修改订单费用!</span
|
|
|
- >
|
|
|
- <div @click="productOrder(isCustom)" style="margin-top: 10px">
|
|
|
- <div class="left">
|
|
|
- <img
|
|
|
- :src="isCustom.pic"
|
|
|
- style="width: 80px; height: 80px; border-radius: 10px"
|
|
|
- />
|
|
|
- <div class="right">
|
|
|
- <div class="label">
|
|
|
- {{ isCustom.spuName }}
|
|
|
- </div>
|
|
|
-
|
|
|
- <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
|
|
|
- {{ isCustom.price.toFixed(2) }}元/{{ 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">
|
|
|
- <div>
|
|
|
- <span class="name">姓名 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeContactName }}</span>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <span class="name">电话 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeContactMobile }}</span>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <span class="name">地址 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeAddressDetail }}</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
-
|
|
|
- <template v-else-if="isCustom.businessID === 'reminder_pay'">
|
|
|
- <div class="evaluate">
|
|
|
- <span style="font-size: 36rpx; line-height: 44rpx">亲,请及时付款!</span>
|
|
|
- <div @click="productOrder(isCustom)" style="margin-top: 10px">
|
|
|
- <div class="left">
|
|
|
- <img
|
|
|
- :src="isCustom.pic"
|
|
|
- style="width: 80px; height: 80px; border-radius: 10px"
|
|
|
- />
|
|
|
- <div class="right">
|
|
|
- <div class="label">
|
|
|
- {{ isCustom.spuName }}
|
|
|
- </div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
|
|
|
- {{ isCustom.price.toFixed(2) }}元/{{ isCustom.unit }}
|
|
|
- </div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx" v-else>
|
|
|
- {{
|
|
|
- (
|
|
|
- isCustom.goodsAmount +
|
|
|
- isCustom.serviceFee +
|
|
|
- isCustom.freightFee
|
|
|
- ).toFixed(2)
|
|
|
- }}元/{{ isCustom.unit }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div style="line-height: 32px; margin-top: 10px">
|
|
|
- <div>
|
|
|
- <span class="name">姓名 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeContactName }}</span>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <span class="name">电话 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeContactMobile }}</span>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <span class="name">地址 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeAddressDetail }}</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else-if="isCustom.businessID === 'order_deliver_goods'">
|
|
|
- <div class="evaluate">
|
|
|
- <span style="font-size: 36rpx; line-height: 44rpx">老板,请尽快发货!</span>
|
|
|
- <div @click="productOrder(isCustom)" style="margin-top: 10px">
|
|
|
- <div class="left">
|
|
|
- <img
|
|
|
- :src="isCustom.pic"
|
|
|
- style="width: 80px; height: 80px; border-radius: 10px"
|
|
|
- />
|
|
|
- <div class="right">
|
|
|
- <div class="label">
|
|
|
- {{ isCustom.spuName }}
|
|
|
- </div>
|
|
|
- <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
|
|
|
- ).toFixed(2)
|
|
|
- }}元/{{ isCustom.unit }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div style="line-height: 32px; margin-top: 10px">
|
|
|
- <div>
|
|
|
- <span class="name">姓名 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeContactName }}</span>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <span class="name">电话 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeContactMobile }}</span>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <span class="name">地址 :</span>
|
|
|
- <span class="value">{{ isCustom.consigneeAddressDetail }}</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else-if="isCustom.businessID === 'order_pay'">
|
|
|
- <div class="evaluate">
|
|
|
- <span style="font-size: 36rpx; line-height: 44rpx"
|
|
|
- >订单价格已修改,请及时付款!</span
|
|
|
- >
|
|
|
- <div @click="productOrder(isCustom)" style="margin-top: 10px">
|
|
|
- <div class="left">
|
|
|
- <img
|
|
|
- :src="isCustom.pic"
|
|
|
- style="width: 80px; height: 80px; border-radius: 10px"
|
|
|
- />
|
|
|
- <div class="right">
|
|
|
- <div class="label">
|
|
|
- {{ isCustom.spuName }}
|
|
|
- </div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
|
|
|
- {{ isCustom.price.toFixed(2) }}元/{{ isCustom.unit }}
|
|
|
- </div>
|
|
|
- <div style="font-weight: 400; font-size: 28rpx" v-else>
|
|
|
- {{
|
|
|
- (
|
|
|
- isCustom.goodsAmount +
|
|
|
- isCustom.serviceFee +
|
|
|
- isCustom.freightFee
|
|
|
- ).toFixed(2)
|
|
|
- }}元/{{ isCustom.unit }}
|
|
|
+ 价格:{{ isCustom.price.toFixed(2) }}元/{{ isCustom.unit }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -232,49 +67,18 @@ watchEffect(() => {
|
|
|
const openLink = (url: any) => {
|
|
|
window.open(url);
|
|
|
};
|
|
|
-// const productOrderPay = async (record) => {
|
|
|
-// let userid = uni.getStorageSync("userId");
|
|
|
-// if (userid == record.shopOwnerId) {
|
|
|
-// let res = await mesApi.default.orderDetail(record.orderId);
|
|
|
-// if (res.code == 200) {
|
|
|
-// let item = res.data;
|
|
|
-// webUni.webView.navigateTo({
|
|
|
-// url: `/subpages/my/product-orders/sell-order-details?id=${item.id}&item=${item.consigneeAddress.contact.contactMobile}&orderStatus=${item.orderStatus}&transportStatus=${item.transportStatus}&invoiceStatus=${item.invoiceStatus}¤tIndex=1`,
|
|
|
-// });
|
|
|
-// }
|
|
|
-// console.log(res);
|
|
|
-// } else {
|
|
|
-// webUni.webView.navigateTo({
|
|
|
-// url: `/subpages/my/product-orders/buy-order-details?id=` + record.orderId,
|
|
|
-// });
|
|
|
-// }
|
|
|
-// };
|
|
|
-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;
|
|
|
- webUni.webView.navigateTo({
|
|
|
- url: `/subpages/my/product-orders/sell-order-details?id=${item.orderId}&item=${item.consigneeAddress.contact.contactMobile}&orderStatus=${item.orderStatus}&transportStatus=${item.transportStatus}&invoiceStatus=${item.invoiceStatus}¤tIndex=1`,
|
|
|
- });
|
|
|
- }
|
|
|
- console.log(res);
|
|
|
+
|
|
|
+const product = (record) => {
|
|
|
+ if (record.saleType == 2) {
|
|
|
+ webUni.webView.redirectTo({
|
|
|
+ url: `/subpages/home/carpoolGoods/product-details?id=` + record.id,
|
|
|
+ });
|
|
|
} else {
|
|
|
- userType.value = 0;
|
|
|
- webUni.webView.navigateTo({
|
|
|
- url: `/subpages/my/product-orders/buy-order-details?id=` + record.orderId,
|
|
|
+ webUni.webView.redirectTo({
|
|
|
+ url: `/subpages/home/supply-hall/product-details?id=` + record.id,
|
|
|
});
|
|
|
}
|
|
|
};
|
|
|
-
|
|
|
-const product = (record) => {
|
|
|
- webUni.webView.navigateTo({
|
|
|
- url: `/subpages/home/carpoolGoods/product-details?id=` + record.id,
|
|
|
- });
|
|
|
-};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
@import "../../../../assets/styles/common";
|