|
|
|
|
@ -118,6 +118,11 @@
|
|
|
|
|
<dict-tag :options="project_category" :value="scope.row.projectCategory" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="项目状态" align="center" prop="projectStatus" v-if="columns[16].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="project_status" :value="scope.row.projectStatus" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备件标识" align="center" prop="spareFlag" v-if="columns[7].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="spare_flag" :value="scope.row.spareFlag" />
|
|
|
|
|
@ -131,11 +136,6 @@
|
|
|
|
|
<el-table-column label="分管副总" align="center" prop="deputyName" width="100" v-if="columns[13].visible" />
|
|
|
|
|
<el-table-column label="抄送人员" align="center" prop="peopleId" v-if="columns[14].visible" />
|
|
|
|
|
<el-table-column label="金额" align="center" prop="amount" width="110" v-if="columns[15].visible" />
|
|
|
|
|
<el-table-column label="项目状态" align="center" prop="projectStatus" v-if="columns[16].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="project_status" :value="scope.row.projectStatus" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="流程状态" align="center" prop="flowStatus" v-if="columns[17].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="wf_business_status" :value="scope.row.flowStatus" />
|
|
|
|
|
@ -219,7 +219,7 @@ const columns = ref<FieldOption[]>([
|
|
|
|
|
{ key: 6, label: `项目类别`, visible: true },
|
|
|
|
|
{ key: 7, label: `备件标识`, visible: true },
|
|
|
|
|
{ key: 8, label: `项目类型`, visible: true },
|
|
|
|
|
{ key: 9, label: `付款方式`, visible: true },
|
|
|
|
|
{ key: 9, label: `付款方式`, visible: false },
|
|
|
|
|
{ key: 10, label: `部门`, visible: true },
|
|
|
|
|
{ key: 11, label: `项目经理`, visible: true },
|
|
|
|
|
{ key: 12, label: `部门负责人`, visible: true },
|
|
|
|
|
|