From 9e9c4beb456b47b4c47ac90848c230e334d72aa8 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Sun, 22 Sep 2024 19:53:20 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E7=A0=94=E5=8F=91=E8=B5=84=E9=87=91?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/research-fund/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/research-fund/index.vue b/src/views/research-fund/index.vue index d78c4e8..0e86846 100644 --- a/src/views/research-fund/index.vue +++ b/src/views/research-fund/index.vue @@ -12,6 +12,7 @@ import {ElNotification} from "element-plus"; import {deleteResearchFund} from "@/api/research-fund"; import { getSubCompOpt } from '@/api/user/user.js'; +import {toThousands} from '@/utils/changePrice.js' const router = useRouter(); const researchFundSearchConfig = ref([ @@ -74,7 +75,10 @@ const researchFundTableConfig = reactive({ { prop: 'rdAmount', label: '研发资金金额', - align: 'center' + align: 'center', + currentRender:({row})=>{ + return {toThousands(row.rdAmount)} + } }, { prop: 'rdDate',