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',