Merge pull request 'master' (#805) from master into prod

Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/805
This commit is contained in:
2024-09-22 11:53:42 +00:00

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