diff --git a/src/components/DetailComponent/Opinion.vue b/src/components/DetailComponent/Opinion.vue index 88fd390..32de2d8 100644 --- a/src/components/DetailComponent/Opinion.vue +++ b/src/components/DetailComponent/Opinion.vue @@ -22,6 +22,9 @@ +
- - + + - - {{ localFormData.projectName }} - - - - - {{ localFormData.startTime }} - - - - - {{ localFormData.endTime }} - - - - - {{ filterDict(cacheStore.getDict('project_type'), localFormData.projectType) }} - - - - - {{ filterDict(cacheStore.getDict('rd_subject'), localFormData.rdSubject) }} - - - - - {{ filterDict(cacheStore.getDict('invest_type'), localFormData.investmentType) }} - - - - - - {{ filterDict(cacheStore.getDict('business_segment'), localFormData.businessSegment) }} - - - - - {{ filterDict(cacheStore.getDict('technical_standard'), localFormData.technicalStandard) }} - - - - - {{ filterDict(cacheStore.getDict('project_impact'), localFormData.projectImpact) }} - - - - - {{ toThousands(localFormData.economicEstimate) }} - - - - - {{ - filterDict(cacheStore.getDict('industry_university'), localFormData.industryUniversityResearch) - }} - - - - - {{ - filterDict(cacheStore.getDict('government_declaration'), localFormData.governmentDeclaration) - }} - - - - - {{ - localFormData.specialFundId === 0 ? localFormData.specialFund : changeName(fundOption, localFormData.specialFundId) - }} - - - - - {{ toThousands(localFormData.specialFundAmount) }} - - - - - {{ localFormData.optionalChargeLeadership?.map(item=>item.name).join()||'--' }} - - - - - - - - {{ filterDict(cacheStore.getDict('result_form'), localFormData.resultForm) }} @@ -128,10 +41,9 @@ - - - - + + + {{ localFormData.serviceDescription }} @@ -142,11 +54,12 @@ {{ localFormData.contentDescription }} - - - + + + > + - + @@ -154,9 +67,9 @@ - - - + + +
- +
diff --git a/src/views/project-management/implementation/index.vue b/src/views/project-management/implementation/index.vue index 20f1969..e47bd03 100644 --- a/src/views/project-management/implementation/index.vue +++ b/src/views/project-management/implementation/index.vue @@ -174,6 +174,7 @@ const tableConfig = reactive({ prop: 'projectType', label: '项目类型', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.projectType && row.projectType !== null && row.projectType !== undefined) { @@ -187,6 +188,7 @@ const tableConfig = reactive({ prop: 'rdSubject', label: '研发主体', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.rdSubject && row.rdSubject !== null && row.rdSubject !== undefined) { @@ -200,6 +202,7 @@ const tableConfig = reactive({ prop: 'researchStage', label: '研发阶段', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.researchStage && row.researchStage !== null && row.researchStage !== undefined) { @@ -213,6 +216,7 @@ const tableConfig = reactive({ prop: 'projectImpact', label: '项目影响', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.projectImpact && row.projectImpact !== null && row.projectImpact !== undefined) { @@ -226,6 +230,7 @@ const tableConfig = reactive({ prop: 'economicEstimate', label: '经费预算(元)', align: 'center', + width: 150, currentRender:({row})=>{ return {toThousands(row.economicEstimate)} } @@ -242,6 +247,7 @@ const tableConfig = reactive({ prop: 'approveName', label: '当前审批节点', align: 'center', + width: 120, currentRender: ({row, index}) => { if(row.state=='3'||row.state=='4'){ return {row.taskNode} @@ -256,6 +262,7 @@ const tableConfig = reactive({ prop: 'state', label: '状态', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.state && row.state !== null && row.state !== undefined) { diff --git a/src/views/project-management/initiation/index.vue b/src/views/project-management/initiation/index.vue index c52659a..6c6be6a 100644 --- a/src/views/project-management/initiation/index.vue +++ b/src/views/project-management/initiation/index.vue @@ -169,6 +169,7 @@ const tableConfig = reactive({ prop: 'projectType', label: '项目类型', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.projectType !== null) { @@ -182,6 +183,7 @@ const tableConfig = reactive({ prop: 'rdSubject', label: '研发主体', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.rdSubject !== null) { @@ -195,6 +197,7 @@ const tableConfig = reactive({ prop: 'projectImpact', label: '项目影响', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.projectImpact !== null) { @@ -208,6 +211,7 @@ const tableConfig = reactive({ prop: 'economicEstimate', label: '经费预算(元)', align: 'center', + width: 150, currentRender:({row})=>{ return {toThousands(row.economicEstimate)} } @@ -224,6 +228,7 @@ const tableConfig = reactive({ prop: 'approveName', label: '当前审批节点', align: 'center', + width: 120, currentRender: ({row, index}) => { if(row.state=='3'||row.state=='4'){ return {row.taskNode} @@ -243,6 +248,7 @@ const tableConfig = reactive({ prop: 'state', label: '状态', align: 'center', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { if (row.state !== null) { @@ -257,6 +263,7 @@ const tableConfig = reactive({ label: '操作', align: 'center', fixed:'right', + width: 100, showOverflowTooltip: false, currentRender: ({row, index}) => { let btn = [] diff --git a/src/views/project-management/mobledetail/StepsMoblie.vue b/src/views/project-management/mobledetail/StepsMoblie.vue index e5b3ddf..01ca25a 100644 --- a/src/views/project-management/mobledetail/StepsMoblie.vue +++ b/src/views/project-management/mobledetail/StepsMoblie.vue @@ -1,6 +1,6 @@