From b05a84f9178894b40a1d6a601b577403d7d93c46 Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期三, 08 一月 2025 09:09:20 +0800
Subject: [PATCH] 1.运费配置说明修改

---
 sub_pages/supplier/order-manage/order-manage-settlement-op-detail.vue |   29 +++++++++++++++++++++++++----
 1 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/sub_pages/supplier/order-manage/order-manage-settlement-op-detail.vue b/sub_pages/supplier/order-manage/order-manage-settlement-op-detail.vue
index 02342c9..d0d7131 100644
--- a/sub_pages/supplier/order-manage/order-manage-settlement-op-detail.vue
+++ b/sub_pages/supplier/order-manage/order-manage-settlement-op-detail.vue
@@ -7,12 +7,18 @@
 				},
 				orderItemId: '',
 				op: '',
-
+				opStr: ''
 			};
 		},
 		async onLoad(options) {
 			this.orderItemId = options.orderItemId || ''
 			this.op = options.op || ''
+			this.opStr = options.opStr || ''
+			if (this.opStr) {
+				uni.setNavigationBarTitle({
+					title: this.opStr
+				})
+			}
 
 			await this.init()
 
@@ -20,10 +26,15 @@
 
 		methods: {
 			async init() {
+				var apitype = 'supplier'
+				// #ifdef PUB_CUSTOMER
+				apitype = 'customer'
+				// #endif
+
 				this.$message.showLoading()
 				const {
 					data
-				} = await this.$http.request('get', `/api/supplier/delivery/mine/list/check/info/` + this.op, {
+				} = await this.$http.request('get', `/api/${apitype}/delivery/mine/list/check/info/` + this.op, {
 					params: {
 						orderItemId: this.orderItemId
 					}
@@ -55,6 +66,8 @@
 </script>
 <template>
 	<view class="delivery-detail-page bg-white p20">
+		<no-data v-if="!dto.id" style="width: 100%;"></no-data>
+
 		<view v-if="dto.id">
 			<view class="delivery-info p10 flex">
 				<view class="flex1">
@@ -68,15 +81,21 @@
 					<view class="name" v-if="dto.targetLevel">降级等级:{{ dto.targetLevelStr || dto.targetLevel  || '-'}}
 					</view>
 
-					<view class="name" v-if="dto.type">处理类型:{{ dto.type  || '-'}}</view>
+					<!-- <view class="name" v-if="dto.type">处理类型:{{ dto.type  || '-'}}</view> -->
 					<view class="name">处理数量:{{ dto.num || '-' }}</view>
-					<view class="name">扣款金额:{{ dto.deductAmount  || '-'}}</view>
+
+					<view class="name">
+						扣款金额/每扎:¥{{ (dto.deductAmount&&parseFloat(dto.deductAmount)||0)/(dto.num&&parseInt(dto.num)||1).toFixed(2)  || '-'}}
+					</view>
+
+					<view class="name">扣款金额:¥{{ dto.deductAmount  || '-'}}</view>
 
 				</view>
 			</view>
 
 
 		</view>
+
 		<view class="p10" style="margin-top: 0rpx;padding-top: 0rpx;" v-if="dto.pictureList&&dto.pictureList.length>0">
 			<view class="line-gray"></view>
 
@@ -90,6 +109,7 @@
 				</view>
 			</view>
 		</view>
+
 	</view>
 
 	</view>
@@ -100,6 +120,7 @@
 		font-weight: 400;
 		font-size: 28rpx;
 		line-height: 40rpx;
+		min-height: 99vh;
 
 		.arrive-img {
 			width: 96rpx;

--
Gitblit v1.9.3