| | |
| | | <el-row> |
| | | <el-col :span="12"> |
| | | <el-form-item label="项目码"> |
| | | <el-select v-model="queryParams.projectColorCode" clearable placeholder="请选择" class="select-option" |
| | | <el-select v-model="queryParams.coding" clearable placeholder="请选择" class="select-option" |
| | | @change="handleQuery"> |
| | | <el-option v-for="item in dict.type.sys_project_code" :key="item.value" :label="item.label" |
| | | :value="item.value"/> |
| | |
| | | @selection-change="handleSelectionChange" |
| | | height="100%" |
| | | sortable="custom" |
| | | :show-overflow-tooltip="true"> |
| | | > |
| | | <el-table-column type="selection" width="55" align="center"/> |
| | | <!-- 动态列 --> |
| | | <el-table-column |
| | |
| | | <template v-if="item.slotName === 'projectStatus'"> |
| | | <dict-tag :options="dict.type.sys_project_status" :value="scope.row.projectStatus"/> |
| | | </template> |
| | | <!-- projectColorCode插槽 --> |
| | | <template v-if="item.slotName === 'projectColorCode'"> |
| | | <dict-tag :options="dict.type.sys_project_code" :value="scope.row.projectColorCode"/> |
| | | <!-- coding插槽 --> |
| | | <template v-if="item.slotName === 'coding'"> |
| | | <dict-tag :options="dict.type.sys_project_code" :value="scope.row.coding"/> |
| | | </template> |
| | | <!-- projectType插槽 --> |
| | | <template v-if="item.slotName === 'projectType'"> |
| | | <dict-tag :options="dict.type.sys_project_type" :value="scope.row.projectType"/> |
| | | </template> |
| | | <!-- projectSubType插槽 --> |
| | | <template v-if="item.slotName === 'attractInvestment'"> |
| | | <dict-tag :options="dict.type.sys_project_type" :value="scope.row.attractInvestment"/> |
| | | </template> |
| | | <!-- constructionNature插槽 --> |
| | | <template v-if="item.slotName === 'constructionNature'"> |
| | | <dict-tag :options="dict.type.construction_nature" :value="scope.row.constructionNature"/> |
| | | </template> |
| | | <!-- investType插槽 --> |
| | | <template v-if="item.slotName === 'investType'"> |
| | |
| | | <template v-if="item.slotName === 'planStartTime'"> |
| | | {{ scope.row.planStartTime ? scope.row.planStartTime.split('-')[0] + '年' : '' }} |
| | | </template> |
| | | <!-- usedStatus插槽 --> |
| | | <template v-if="item.slotName === 'usedStatus'"> |
| | | <dict-tag :options="dict.type.sys_used_status" :value="scope.row.usedStatus"/> |
| | | </template> |
| | | </template> |
| | | <!-- 默认显示 --> |
| | | <span v-else>{{ scope.row[item.id] }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column v-if="this.$route.query.projectPhase==6" label="审核备注" width="140" align="center" prop="remark"/> |
| | | <!-- 操作列 --> |
| | | <el-table-column label="操作" width="140" align="center"> |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-view" |
| | | @click="handleDetail(scope.row)" |
| | | > |
| | | </el-button> |
| | | <el-button |
| | | v-if="isReserve" |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleUpdate(scope.row)" |
| | | > |
| | | </el-button> |
| | | <el-button |
| | | v-if="isReserve" |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-delete" |
| | | @click="handleDelete(scope.row)" |
| | | > |
| | | </el-button> |
| | | <el-tooltip class="item" effect="dark" content="审核" placement="top"> |
| | | <el-button |
| | | v-if="scope.row.auditRole && $route.query.projectPhase==='6' && scope.row.usedStatus === 1" |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-circle-check" |
| | | @click="handleDetail(scope.row)" |
| | | > |
| | | </el-button> |
| | | </el-tooltip> |
| | | <el-tooltip class="item" effect="dark" content="详情" placement="top"> |
| | | <el-button |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-view" |
| | | @click="handleDetail(scope.row)" |
| | | > |
| | | </el-button> |
| | | </el-tooltip> |
| | | <el-tooltip class="item" effect="dark" content="编辑" placement="top"> |
| | | <el-button |
| | | v-if="isReserve" |
| | | v-hasRole="['user']" |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleUpdate(scope.row)" |
| | | > |
| | | </el-button> |
| | | </el-tooltip> |
| | | <el-tooltip class="item" effect="dark" content="删除" placement="top"> |
| | | <el-button |
| | | v-if="isReserve" |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-delete" |
| | | @click="handleDelete(scope.row)" |
| | | > |
| | | </el-button> |
| | | </el-tooltip> |
| | | |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | :total="total" |
| | | :page.sync="queryParams.currentPage" |
| | | :limit.sync="queryParams.pageSize" |
| | | @pagination="getList" |
| | | @pagination="() => getList(null)" |
| | | /> |
| | | |
| | | <FileDialog |
| | |
| | | import {current, currentRest} from '@/views/projectEngineering/projectLibrary/list'; |
| | | import FileDialog from '@/views/projectEngineering/projectLibrary/component/FileDialog'; |
| | | import Cookies from "js-cookie"; |
| | | import {getChildList} from "@/api/system/dict/data"; |
| | | |
| | | export default { |
| | | dicts: ['sys_administrative_divisions', 'sys_investment_type', 'sys_project_phases', |
| | | 'sys_funding_type', 'sys_association_status', 'sys_project_status', 'sys_project_code', |
| | | 'sys_project_tags', 'sys_key_categories', 'sys_project_type'], |
| | | 'sys_project_tags', 'sys_key_categories', 'sys_project_type','sys_used_status', 'construction_nature', 'attract_investment'], |
| | | name: "ProjectInfo", |
| | | components: { |
| | | FileDialog |
| | |
| | | queryParams: { |
| | | currentPage: 1, |
| | | pageSize: 10, |
| | | center: 0, // 1 代表项目中心 |
| | | projectName: null, |
| | | projectCode: null, |
| | | projectStartTime: null, |
| | |
| | | projectType: '', // 项目类型 |
| | | importanceType: '', // 重点分类 |
| | | projectStatus: '', // 项目状态 |
| | | projectColorCode: '', // 项目码 |
| | | coding: '', // 项目码 |
| | | investmentType: '', // 资金类型 |
| | | projectPhase: '', // 项目阶段 |
| | | investType: '', // 投资类别 |
| | |
| | | }, |
| | | created() { |
| | | this.queryParams.importanceType = this.$route.query.importanceType; |
| | | const projectCategory = this.$route.query.projectCategory; |
| | | if (!projectCategory || projectCategory === '1') { |
| | | const projectPhase = this.$route.query.projectPhase; |
| | | if (projectPhase === '6') { |
| | | this.queryParams.center = 1 |
| | | } |
| | | if (!projectPhase || projectPhase === '1' || projectPhase === '6') { |
| | | this.isReserve = true; |
| | | } |
| | | if (projectCategory) { |
| | | if (projectPhase) { |
| | | this.isProjectCategory = true; |
| | | } |
| | | const columns = current.map((item, index) => { |
| | | item.index = index + 1; |
| | | item.key = index; |
| | | item.serialNumber = index + 1; |
| | | if(item.id ==='usedStatus' ){ |
| | | if(projectPhase !== '6') { |
| | | item.visible = false |
| | | } else { |
| | | item.visible = true |
| | | } |
| | | } |
| | | return item; |
| | | }); |
| | | this.columns = columns; |
| | | this.defaultColumns = JSON.parse(JSON.stringify(columns)); |
| | | this.getList(); |
| | | this.getList(this.$route.query.projectPhase == '5' || this.$route.query.projectPhase == '6' ? null : this.$route.query.projectPhase); |
| | | }, |
| | | beforeDestroy() { |
| | | this.removeStore(); |
| | | }, |
| | | methods: { |
| | | // async getProjectSubType(projectType, projectSubType) { |
| | | // if (!projectType || !projectSubType) { |
| | | // return '' |
| | | // } |
| | | // let value = ''; |
| | | // // 根据项目类型查子类型 |
| | | // const projectTypeItem = this.dict.type.sys_project_type.find(item => item.raw.dictValue === projectType); |
| | | // if (projectTypeItem) { |
| | | // const res = await getChildList(projectTypeItem.raw.dictCode); |
| | | // const target = res.data.filter(item => item.dictValue === projectSubType); |
| | | // if (target && target.length > 0) { |
| | | // value = target[0].dictLabel; |
| | | // console.log(value); |
| | | // } |
| | | // } |
| | | // console.log("拿到值了", value); |
| | | // return value; |
| | | // }, |
| | | /** 修改按钮操作 */ |
| | | handleUpdate(row) { |
| | | this.removeStore(); |
| | |
| | | }, |
| | | handleDetail(row) { |
| | | this.removeStore(); |
| | | this.$router.push({path: '/projectEngineering/project/ProjectDetails', query: {projectId: row.id,disabled: 'true' }}); |
| | | const audit = this.$route.query.projectPhase==='6'? 1:0 |
| | | this.$router.push({path: '/projectEngineering/project/ProjectDetails', query: {projectId: row.id,disabled: 'true',audit: audit }}); |
| | | }, |
| | | // 新增页面 |
| | | add() { |
| | |
| | | }, |
| | | // 重置排序的方法 |
| | | handleResetSort() { |
| | | const projectPhase = this.$route.query.projectPhase; |
| | | this.defaultColumns = currentRest.map((item, index) => { |
| | | item.index = index + 1; |
| | | item.key = index; |
| | | item.serialNumber = index + 1 |
| | | if(item.id ==='usedStatus' ){ |
| | | if(projectPhase !== '6') { |
| | | item.visible = false |
| | | } else { |
| | | item.visible = true |
| | | } |
| | | } |
| | | return item; |
| | | }); |
| | | this.columns = currentRest.map((item, index) => { |
| | | item.index = index + 1; |
| | | item.key = index; |
| | | item.serialNumber = index + 1 |
| | | if(item.id ==='usedStatus' ){ |
| | | if(projectPhase !== '6') { |
| | | item.visible = false |
| | | } else { |
| | | item.visible = true |
| | | } |
| | | } |
| | | return item; |
| | | }); |
| | | //强制table渲染 |
| | |
| | | this.popoverValue = false; |
| | | }, |
| | | /** 查询项目管理基础信息列表 */ |
| | | getList() { |
| | | getList(projectPhase) { |
| | | this.loading = true; |
| | | this.queryParams.projectCategory = this.$route.query.projectCategory; |
| | | if (projectPhase) { |
| | | this.queryParams.projectPhase = projectPhase; |
| | | } |
| | | if (this.timeRange) { |
| | | this.queryParams.projectStartTime = this.timeRange[0] |
| | | this.queryParams.projectEndTime = this.timeRange[1] |
| | |
| | | /** 搜索按钮操作 */ |
| | | handleQuery() { |
| | | this.queryParams.currentPage = 1; |
| | | this.getList(); |
| | | this.getList(null); |
| | | }, |
| | | /** 重置按钮操作 */ |
| | | resetQuery() { |