fix : 修复单位元
This commit is contained in:
@@ -142,7 +142,7 @@
|
|||||||
<span>{{ toThousands(scope.row.economicEstimate) }}</span>
|
<span>{{ toThousands(scope.row.economicEstimate) }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="specialFundAmount" label="专项资金(元)" align="center">
|
<el-table-column prop="specialFundAmount" label="预估专项资金(元)" align="center">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<span>{{ toThousands(scope.row.specialFundAmount) }}</span>
|
<span>{{ toThousands(scope.row.specialFundAmount) }}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<fvSearchForm :searchConfig="researchFundSearchConfig" @search="searchResearchFund"
|
<fvSearchForm :searchConfig="researchFundSearchConfig" @search="searchResearchFund"
|
||||||
style="margin-left: 16px"></fvSearchForm>
|
></fvSearchForm>
|
||||||
<fvTable ref="tableIns" :tableConfig="researchFundTableConfig" @headBtnClick="headBtnClick">
|
<fvTable ref="tableIns" :tableConfig="researchFundTableConfig" @headBtnClick="headBtnClick">
|
||||||
<template #empty>
|
<template #empty>
|
||||||
<el-empty description="暂无数据"/>
|
<el-empty description="暂无数据"/>
|
||||||
@@ -30,7 +30,7 @@ const researchFundSearchConfig = ref([
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '研发资金金额',
|
label: '研发资金金额(元)',
|
||||||
prop: 'rdAmount',
|
prop: 'rdAmount',
|
||||||
component: 'el-input',
|
component: 'el-input',
|
||||||
props: {
|
props: {
|
||||||
@@ -74,7 +74,7 @@ const researchFundTableConfig = reactive({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'rdAmount',
|
prop: 'rdAmount',
|
||||||
label: '研发资金金额',
|
label: '研发资金金额(元)',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
currentRender:({row})=>{
|
currentRender:({row})=>{
|
||||||
return <span>{toThousands(row.rdAmount)}</span>
|
return <span>{toThousands(row.rdAmount)}</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user