fix : 修复菜单图标、金额单位为元、项目实施台账上传费用功能、
This commit is contained in:
@@ -89,10 +89,6 @@ const tableConfig = reactive({
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
prop: 'projectName',
|
||||
label: '项目名称',
|
||||
align: 'center'
|
||||
},{
|
||||
prop: 'time',
|
||||
label: '时间',
|
||||
align: 'center'
|
||||
@@ -100,12 +96,28 @@ const tableConfig = reactive({
|
||||
{
|
||||
prop: 'projectCost',
|
||||
label: '项目费用',
|
||||
align: 'center'
|
||||
align: 'center',
|
||||
currentRender: ({row, index}) => {
|
||||
if (row.projectCost !== null) {
|
||||
return (<Tag dictType={'project_cost'} value={row.projectCost}/>)
|
||||
} else {
|
||||
return '--'
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
prop: 'researchStage',
|
||||
label: '研发阶段',
|
||||
align: 'center'
|
||||
align: 'center',
|
||||
currentRender: ({row, index}) => {
|
||||
console.log('row.researchStage',row.researchStage)
|
||||
if (row.researchStage&&row.researchStage !== null&&row.researchStage!==undefined) {
|
||||
console.log('ull',row.researchStage)
|
||||
return (<Tag dictType={'research_stage'} value={row.researchStage}/>)
|
||||
} else {
|
||||
return '--'
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
prop: 'digest',
|
||||
|
||||
Reference in New Issue
Block a user