diff --git a/components/balance-list/balance-list.vue b/components/balance-list/balance-list.vue
index de701d2..480819c 100644
--- a/components/balance-list/balance-list.vue
+++ b/components/balance-list/balance-list.vue
@@ -12,7 +12,7 @@
- {{ item.isAdd ? '+' : '-' }}{{ Number(item.money).toFixed(2) }}
+ {{ item.isAdd ? '+' : '-' }}{{ numberUtil.formatMoneyWithThousand(item.money) }}
@@ -39,7 +39,7 @@
已全额退款
余额
{{
- Number(item.balance).toFixed(2)
+ numberUtil.formatMoneyWithThousand(item.balance)
}}元
@@ -58,6 +58,10 @@ import {
reactive
} from 'vue'
+import {
+ numberUtil
+} from '@/utils/common.js'
+
// 定义组件属性
const props = defineProps({
list: {
diff --git a/components/shopping/jingdong/shopping-card.vue b/components/shopping/jingdong/shopping-card.vue
index 1f8321e..bb8c7c1 100644
--- a/components/shopping/jingdong/shopping-card.vue
+++ b/components/shopping/jingdong/shopping-card.vue
@@ -1,5 +1,5 @@
-
+
+
+
+
diff --git a/static/image/common/add.png b/static/image/common/add.png
new file mode 100644
index 0000000..07e11e6
Binary files /dev/null and b/static/image/common/add.png differ
diff --git a/static/image/index/qita/ranking.png b/static/image/index/qita/ranking.png
new file mode 100644
index 0000000..b45de44
Binary files /dev/null and b/static/image/index/qita/ranking.png differ
diff --git a/static/image/other/ranking/happy.png b/static/image/other/ranking/happy.png
new file mode 100644
index 0000000..9f90471
Binary files /dev/null and b/static/image/other/ranking/happy.png differ
diff --git a/static/image/other/ranking/sad.png b/static/image/other/ranking/sad.png
new file mode 100644
index 0000000..28cf599
Binary files /dev/null and b/static/image/other/ranking/sad.png differ
diff --git a/static/image/shopping/jingdong/detail/cancel.png b/static/image/shopping/jingdong/detail/cancel.png
new file mode 100644
index 0000000..b4bb2b4
Binary files /dev/null and b/static/image/shopping/jingdong/detail/cancel.png differ
diff --git a/static/image/shopping/jingdong/detail/dianpukefu.png b/static/image/shopping/jingdong/detail/dianpukefu.png
new file mode 100644
index 0000000..3ab7139
Binary files /dev/null and b/static/image/shopping/jingdong/detail/dianpukefu.png differ
diff --git a/static/image/shopping/jingdong/detail/gift.png b/static/image/shopping/jingdong/detail/gift.png
new file mode 100644
index 0000000..6d3fc64
Binary files /dev/null and b/static/image/shopping/jingdong/detail/gift.png differ
diff --git a/static/image/shopping/jingdong/detail/jiagebaozhang.png b/static/image/shopping/jingdong/detail/jiagebaozhang.png
new file mode 100644
index 0000000..24b99ef
Binary files /dev/null and b/static/image/shopping/jingdong/detail/jiagebaozhang.png differ
diff --git a/static/image/shopping/jingdong/detail/jingdongkefu.png b/static/image/shopping/jingdong/detail/jingdongkefu.png
new file mode 100644
index 0000000..519ea61
Binary files /dev/null and b/static/image/shopping/jingdong/detail/jingdongkefu.png differ
diff --git a/static/image/shopping/jingdong/detail/like-left.png b/static/image/shopping/jingdong/detail/like-left.png
new file mode 100644
index 0000000..664e879
Binary files /dev/null and b/static/image/shopping/jingdong/detail/like-left.png differ
diff --git a/static/image/shopping/jingdong/detail/like-right.png b/static/image/shopping/jingdong/detail/like-right.png
new file mode 100644
index 0000000..60919c5
Binary files /dev/null and b/static/image/shopping/jingdong/detail/like-right.png differ
diff --git a/static/image/shopping/jingdong/detail/location.png b/static/image/shopping/jingdong/detail/location.png
new file mode 100644
index 0000000..5ea3f99
Binary files /dev/null and b/static/image/shopping/jingdong/detail/location.png differ
diff --git a/static/image/shopping/jingdong/detail/more.png b/static/image/shopping/jingdong/detail/more.png
new file mode 100644
index 0000000..f3f7c74
Binary files /dev/null and b/static/image/shopping/jingdong/detail/more.png differ
diff --git a/static/image/shopping/jingdong/detail/plus-logo.png b/static/image/shopping/jingdong/detail/plus-logo.png
new file mode 100644
index 0000000..e363833
Binary files /dev/null and b/static/image/shopping/jingdong/detail/plus-logo.png differ
diff --git a/static/image/shopping/jingdong/detail/plus-text.png b/static/image/shopping/jingdong/detail/plus-text.png
new file mode 100644
index 0000000..77c51c0
Binary files /dev/null and b/static/image/shopping/jingdong/detail/plus-text.png differ
diff --git a/static/image/shopping/jingdong/detail/qianshou.png b/static/image/shopping/jingdong/detail/qianshou.png
new file mode 100644
index 0000000..1a9515c
Binary files /dev/null and b/static/image/shopping/jingdong/detail/qianshou.png differ
diff --git a/static/image/shopping/jingdong/detail/share.png b/static/image/shopping/jingdong/detail/share.png
new file mode 100644
index 0000000..92f1994
Binary files /dev/null and b/static/image/shopping/jingdong/detail/share.png differ
diff --git a/static/image/shopping/jingdong/detail/tuikuan.png b/static/image/shopping/jingdong/detail/tuikuan.png
new file mode 100644
index 0000000..cec209e
Binary files /dev/null and b/static/image/shopping/jingdong/detail/tuikuan.png differ
diff --git a/static/image/shopping/jingdong/detail/wait.png b/static/image/shopping/jingdong/detail/wait.png
new file mode 100644
index 0000000..39ae611
Binary files /dev/null and b/static/image/shopping/jingdong/detail/wait.png differ
diff --git a/static/image/shopping/jingdong/detail/xiadan.png b/static/image/shopping/jingdong/detail/xiadan.png
new file mode 100644
index 0000000..54f923f
Binary files /dev/null and b/static/image/shopping/jingdong/detail/xiadan.png differ
diff --git a/static/image/shopping/jingdong/detail/ziyin.png b/static/image/shopping/jingdong/detail/ziyin.png
new file mode 100644
index 0000000..704d29b
Binary files /dev/null and b/static/image/shopping/jingdong/detail/ziyin.png differ
diff --git a/static/image/shopping/jingdong/null.png b/static/image/shopping/jingdong/null.png
new file mode 100644
index 0000000..c76b51b
Binary files /dev/null and b/static/image/shopping/jingdong/null.png differ