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

@@ -161,7 +161,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 '--'
@@ -174,7 +174,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 '--'
@@ -187,7 +187,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 '--'
@@ -196,7 +196,7 @@ const tableConfig = reactive({
},
{
prop: 'economicEstimate',
label: '经济概算(元)',
label: '经济概算(元)',
align: 'center'
},
{