fix : 研发资金格式化

This commit is contained in:
2024-09-22 19:53:20 +08:00
parent b8392f199c
commit 9e9c4beb45

View File

@@ -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 <span>{toThousands(row.rdAmount)}</span>
}
},
{
prop: 'rdDate',