fix : 修复菜单图标、金额单位为元、项目实施台账上传费用功能、

This commit is contained in:
2024-06-02 11:04:54 +08:00
parent a796e7622f
commit cd715fbf98
26 changed files with 94 additions and 86 deletions

View File

@@ -156,7 +156,7 @@ const tableConfig = reactive({
align: 'center',
showOverflowTooltip: false,
currentRender: ({row, index}) => {
if (row.state !== null) {
if (row.projectType !== null) {
return (<Tag dictType={'project_type'} value={row.projectType}/>)
} else {
return '--'
@@ -169,7 +169,7 @@ const tableConfig = reactive({
align: 'center',
showOverflowTooltip: false,
currentRender: ({row, index}) => {
if (row.state !== null) {
if (row.rdSubject !== null) {
return (<Tag dictType={'rd_subject'} value={row.rdSubject}/>)
} else {
return '--'
@@ -182,7 +182,7 @@ const tableConfig = reactive({
align: 'center',
showOverflowTooltip: false,
currentRender: ({row, index}) => {
if (row.state !== null) {
if (row.projectImpact !== null) {
return (<Tag dictType={'project_impact'} value={row.projectImpact}/>)
} else {
return '--'
@@ -191,7 +191,7 @@ const tableConfig = reactive({
},
{
prop: 'economicEstimate',
label: '经济概算(元)',
label: '经济概算(元)',
align: 'center'
},
{