From ebe71e1688fc8eac298c61542430aae9d8852a6b Mon Sep 17 00:00:00 2001 From: tangxinyue <524779910@qq.com> Date: Fri, 3 Apr 2026 13:54:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E4=BB=8E=E5=A4=AF=E9=81=93?= =?UTF-8?q?=E6=8B=89=E6=8E=92=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/balance-list/balance-list.vue | 8 +- .../shopping/jingdong/shopping-card.vue | 21 +- main.js | 2 +- pages.json | 56 +- pages/bill/bill-detail/bill-detail.vue | 6 +- pages/bill/bill-list/bill-list.vue | 11 +- pages/index/index.nvue | 15 +- pages/other/ranking/ranking.vue | 697 ++++++++ pages/other/ranking/ranking.vue.mine | 136 ++ pages/shopping/jingdong/list-index.vue | 238 ++- .../jingdong/order-detail/order-detail.vue | 1437 +++++++++++++++++ static/image/common/add.png | Bin 0 -> 212 bytes static/image/index/qita/ranking.png | Bin 0 -> 5911 bytes static/image/other/ranking/happy.png | Bin 0 -> 23875 bytes static/image/other/ranking/sad.png | Bin 0 -> 24052 bytes .../image/shopping/jingdong/detail/cancel.png | Bin 0 -> 1289 bytes .../shopping/jingdong/detail/dianpukefu.png | Bin 0 -> 1562 bytes .../image/shopping/jingdong/detail/gift.png | Bin 0 -> 530 bytes .../jingdong/detail/jiagebaozhang.png | Bin 0 -> 1709 bytes .../shopping/jingdong/detail/jingdongkefu.png | Bin 0 -> 1764 bytes .../shopping/jingdong/detail/like-left.png | Bin 0 -> 1760 bytes .../shopping/jingdong/detail/like-right.png | Bin 0 -> 1732 bytes .../shopping/jingdong/detail/location.png | Bin 0 -> 1431 bytes .../image/shopping/jingdong/detail/more.png | Bin 0 -> 256 bytes .../shopping/jingdong/detail/plus-logo.png | Bin 0 -> 1687 bytes .../shopping/jingdong/detail/plus-text.png | Bin 0 -> 3466 bytes .../shopping/jingdong/detail/qianshou.png | Bin 0 -> 1290 bytes .../image/shopping/jingdong/detail/share.png | Bin 0 -> 1801 bytes .../shopping/jingdong/detail/tuikuan.png | Bin 0 -> 2441 bytes .../image/shopping/jingdong/detail/wait.png | Bin 0 -> 1361 bytes .../image/shopping/jingdong/detail/xiadan.png | Bin 0 -> 1084 bytes .../image/shopping/jingdong/detail/ziyin.png | Bin 0 -> 1093 bytes static/image/shopping/jingdong/null.png | Bin 0 -> 45930 bytes 33 files changed, 2508 insertions(+), 119 deletions(-) create mode 100644 pages/other/ranking/ranking.vue create mode 100644 pages/other/ranking/ranking.vue.mine create mode 100644 pages/shopping/jingdong/order-detail/order-detail.vue create mode 100644 static/image/common/add.png create mode 100644 static/image/index/qita/ranking.png create mode 100644 static/image/other/ranking/happy.png create mode 100644 static/image/other/ranking/sad.png create mode 100644 static/image/shopping/jingdong/detail/cancel.png create mode 100644 static/image/shopping/jingdong/detail/dianpukefu.png create mode 100644 static/image/shopping/jingdong/detail/gift.png create mode 100644 static/image/shopping/jingdong/detail/jiagebaozhang.png create mode 100644 static/image/shopping/jingdong/detail/jingdongkefu.png create mode 100644 static/image/shopping/jingdong/detail/like-left.png create mode 100644 static/image/shopping/jingdong/detail/like-right.png create mode 100644 static/image/shopping/jingdong/detail/location.png create mode 100644 static/image/shopping/jingdong/detail/more.png create mode 100644 static/image/shopping/jingdong/detail/plus-logo.png create mode 100644 static/image/shopping/jingdong/detail/plus-text.png create mode 100644 static/image/shopping/jingdong/detail/qianshou.png create mode 100644 static/image/shopping/jingdong/detail/share.png create mode 100644 static/image/shopping/jingdong/detail/tuikuan.png create mode 100644 static/image/shopping/jingdong/detail/wait.png create mode 100644 static/image/shopping/jingdong/detail/xiadan.png create mode 100644 static/image/shopping/jingdong/detail/ziyin.png create mode 100644 static/image/shopping/jingdong/null.png 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 @@