From 5519cbf2e00c7ba4c650a542d98da99978124a30 Mon Sep 17 00:00:00 2001
From: 曹睿 <360930172@qq.com>
Date: 星期四, 24 四月 2025 16:43:01 +0800
Subject: [PATCH] test: 测试生产管理
---
src/components/product_card/index.vue | 14 +++++++++-----
1 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/src/components/product_card/index.vue b/src/components/product_card/index.vue
index 799875e..3cb28bb 100644
--- a/src/components/product_card/index.vue
+++ b/src/components/product_card/index.vue
@@ -2,9 +2,9 @@
<wd-card class="card_bg">
<template #title>
<view class="flex justify-between w-full">
- <text class="font-medium text-[#252525]">璁惧缂栧彿: {{ data.deviceModel }}</text>
+ <text class="font-medium text-[#252525]">璁惧缂栧彿: {{ data[map.deviceModel] }}</text>
<wd-tag color="#0D867F" bg-color="#E7F4EC">
- <text class="text-xs">{{ data.model }}</text>
+ <text class="text-xs">{{ data[map.model] }}</text>
</wd-tag>
</view>
</template>
@@ -16,7 +16,7 @@
</view>
<text class="text-[#646874] mx-2">
鎬婚渶姹傛暟閲�:
- <text class="text-[#252525]">{{ data.totalAmount }}m</text>
+ <text class="text-[#252525]">{{ data[map.totalAmount] }}m</text>
</text>
</view>
</wd-col>
@@ -29,7 +29,7 @@
</view>
<text class="text-[#646874] mx-2">
宸茬敓浜ф暟閲�:
- <text class="text-[#252525]">{{ data.amount }}m</text>
+ <text class="text-[#252525]">{{ data[map.amount] }}m</text>
</text>
</view>
</wd-col>
@@ -40,7 +40,7 @@
</view>
<text class="text-[#646874] mx-2">
寰呮帓浜ф暟閲�:
- <text class="text-[#252525]">{{ data.unAmount }}m</text>
+ <text class="text-[#252525]">{{ data[map.unAmount] }}m</text>
</text>
</view>
</wd-col>
@@ -54,6 +54,10 @@
type: Object,
default: () => {},
},
+ map: {
+ type: Object,
+ default: () => {},
+ },
});
</script>
--
Gitblit v1.9.3