New file |
| | |
| | | import request from '@/utils/request' |
| | | |
| | | // 查询项目管理基础信息列表 |
| | | export function listInfo(query) { |
| | | return request({ |
| | | url: '/code/info/list', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 查询项目管理基础信息详细 |
| | | export function getInfo(id) { |
| | | return request({ |
| | | url: '/code/info/' + id, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 新增项目管理基础信息 |
| | | export function addInfo(data) { |
| | | return request({ |
| | | url: '/code/info', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 修改项目管理基础信息 |
| | | export function updateInfo(data) { |
| | | return request({ |
| | | url: '/code/info', |
| | | method: 'put', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 删除项目管理基础信息 |
| | | export function delInfo(id) { |
| | | return request({ |
| | | url: '/code/info/' + id, |
| | | method: 'delete' |
| | | }) |
| | | } |
New file |
| | |
| | | <template> |
| | | <div class="top-right-btn" :style="style"> |
| | | <el-row> |
| | | <el-tooltip v-if="search" class="item" effect="dark" :content="showSearch ? '隐藏搜索' : '显示搜索'" placement="top"> |
| | | <el-button size="small" circle icon="el-icon-search" @click="toggleSearch"></el-button> |
| | | </el-tooltip> |
| | | <el-tooltip class="item" effect="dark" content="刷新" placement="top"> |
| | | <el-button size="small" circle icon="el-icon-refresh" @click="refresh"></el-button> |
| | | </el-tooltip> |
| | | <el-tooltip v-if="columns" class="item" effect="dark" content="显示/隐藏列" placement="top"> |
| | | <el-button size="small" circle icon="el-icon-menu" @click="openDrawer"></el-button> |
| | | </el-tooltip> |
| | | </el-row> |
| | | |
| | | <el-drawer v-model="table" title="信息显隐筛选" size="30%" append-to-body> |
| | | <div slot="header"> |
| | | <span>信息显隐筛选</span> |
| | | </div> |
| | | <div slot="default"> |
| | | <el-table :data="pagedColumns" style="width: 100%; height: 80%"> |
| | | <el-table-column prop="index" label="序号" width="80"></el-table-column> |
| | | <el-table-column prop="label" label="数据名称"></el-table-column> |
| | | <el-table-column prop="visible" label="是否显示"> |
| | | <template slot-scope="scope"> |
| | | <el-switch |
| | | v-model="scope.row.visible" |
| | | class="ml-2" |
| | | style="--el-switch-on-color: #13ce66; --el-switch-off-color: #ff4949" |
| | | @change="switchChange(scope.row)" |
| | | ></el-switch> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="date" label="排序"> |
| | | <template slot-scope="scope"> |
| | | <el-input-number v-model="scope.row.serialNumber" :min="0" style="width: 120px" @change="sortChange(scope.row, $event)"></el-input-number> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | |
| | | <el-pagination |
| | | v-if="total > pageSize" |
| | | :page-size="pageSize" |
| | | :current-page="currentPage" |
| | | :total="total" |
| | | layout="total, prev, pager, next" |
| | | @current-change="handlePageChange" |
| | | ></el-pagination> |
| | | </div> |
| | | <div slot="footer"> |
| | | <el-button @click="table = false">取 消</el-button> |
| | | <el-button type="primary" @click="resetSort">重 置</el-button> |
| | | </div> |
| | | </el-drawer> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | |
| | | export default { |
| | | data() { |
| | | return { |
| | | table: false, |
| | | currentPage: 1, |
| | | columnRef: null, |
| | | }; |
| | | }, |
| | | props: { |
| | | showSearch: { |
| | | type: Boolean, |
| | | default: true, |
| | | }, |
| | | columns: { |
| | | type: Array, |
| | | default: () => [], |
| | | }, |
| | | search: { |
| | | type: Boolean, |
| | | default: false, |
| | | }, |
| | | gutter: { |
| | | type: Number, |
| | | default: 10, |
| | | }, |
| | | }, |
| | | computed: { |
| | | style() { |
| | | return { |
| | | marginRight: this.gutter ? `${this.gutter / 2}px` : '', |
| | | }; |
| | | }, |
| | | pageSize() { |
| | | return 10; |
| | | }, |
| | | total() { |
| | | return this.columns.length; |
| | | }, |
| | | pagedColumns() { |
| | | const start = (this.currentPage - 1) * this.pageSize; |
| | | const end = start + this.pageSize; |
| | | return this.columns.slice(start, end); |
| | | }, |
| | | }, |
| | | methods: { |
| | | toggleSearch() { |
| | | this.$emit('update:showSearch', !this.showSearch); |
| | | }, |
| | | refresh() { |
| | | this.$emit('queryTable'); |
| | | }, |
| | | openDrawer() { |
| | | this.table = true; |
| | | }, |
| | | switchChange(row) { |
| | | this.$emit('update:columns', row); |
| | | }, |
| | | handlePageChange(page) { |
| | | this.currentPage = page; |
| | | }, |
| | | sortChange(row, val) { |
| | | this.$emit('update:sort', { key: row.key, serialNumber: val }); |
| | | }, |
| | | resetSort() { |
| | | this.$emit('update:resetSort'); |
| | | }, |
| | | }, |
| | | mounted() { |
| | | this.columns.forEach((item, index) => { |
| | | if (item.visible) { |
| | | // 注意:这里假设columnRef应该是一个checkbox组件的引用, |
| | | // 但在Vue 2中,我们可能需要另一种方式来管理checked状态, |
| | | // 因为Vue 2没有ref的自动实例绑定,且这里的columnRef逻辑似乎不完整或错误。 |
| | | // 可能需要移除或重写这部分逻辑。 |
| | | } |
| | | }); |
| | | }, |
| | | }; |
| | | </script> |
| | | |
| | | <style lang="scss" scoped> |
| | | :deep(.el-transfer__button) { |
| | | border-radius: 50%; |
| | | display: block; |
| | | margin-left: 0px; |
| | | } |
| | | :deep(.el-transfer__button:first-child) { |
| | | margin-bottom: 10px; |
| | | } |
| | | |
| | | .my-el-transfer { |
| | | text-align: center; |
| | | } |
| | | .tree-header { |
| | | width: 100%; |
| | | line-height: 24px; |
| | | text-align: center; |
| | | } |
| | | .show-btn { |
| | | margin-left: 12px; |
| | | } |
| | | </style> |
| | |
| | | import VueMeta from 'vue-meta' |
| | | // 字典数据组件 |
| | | import DictData from '@/components/DictData' |
| | | // 自定义搜索、控制表头显隐按钮 |
| | | import VisibilityToolbar from '@/components/VisibilityToolbar' |
| | | |
| | | // 全局方法挂载 |
| | | Vue.prototype.getDicts = getDicts |
| | |
| | | Vue.component('FileUpload', FileUpload) |
| | | Vue.component('ImageUpload', ImageUpload) |
| | | Vue.component('ImagePreview', ImagePreview) |
| | | Vue.component('VisibilityToolbar', VisibilityToolbar) |
| | | |
| | | Vue.use(directive) |
| | | Vue.use(plugins) |
| | |
| | | <div class="other-title"> |
| | | <span style="color: #b3b8c1">其他登录方式:</span |
| | | ><span style="color: #2d5eff; cursor: pointer"> |
| | | <SvgIcon icon-class="phone" />手机验证码登录 |
| | | <svg-icon icon-class="phone" />手机验证码登录 |
| | | </span> |
| | | </div> |
| | | <div class="forget">忘记密码?</div> |
| | |
| | | console.log(this.loginForm); |
| | | }, |
| | | handleLogin() { |
| | | debugger |
| | | this.$refs.loginRef.validate((valid) => { |
| | | if (valid) { |
| | | this.loading = true; |
New file |
| | |
| | | <template> |
| | | <div class="app-container"> |
| | | <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> |
| | | <div class="slot"> |
| | | <div class="left-section"> |
| | | <el-form-item label="项目名称" prop="projectName"> |
| | | <el-input |
| | | style="width: 190px;margin-right: 20px" |
| | | size="small" |
| | | v-model="queryParams.projectName" |
| | | placeholder="请输入项目名称" |
| | | clearable |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="项目代码" prop="projectCode"> |
| | | <el-input |
| | | style="width: 190px;margin-right: 20px" |
| | | size="small" |
| | | v-model="queryParams.projectCode" |
| | | placeholder="请输入项目代码" |
| | | clearable |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label="项目年限" prop="timeRange"> |
| | | <el-date-picker |
| | | style="width: 270px" |
| | | size="small" |
| | | v-model="queryParams[timeRange]" |
| | | type="daterange" |
| | | range-separator="-" |
| | | value-format="yyyy-MM-dd" |
| | | start-placeholder="开始日期" |
| | | end-placeholder="结束日期" |
| | | @change="handleQuery" |
| | | clearable |
| | | > |
| | | </el-date-picker> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button icon="el-icon-search" size="small" @click="handleQuery">搜索</el-button> |
| | | <el-button icon="el-icon-refresh" size="small" @click="resetQuery">重置</el-button> |
| | | </el-form-item> |
| | | <el-popover :visible="popoverValue" :width="500" placement="bottom"> |
| | | <template #reference> |
| | | <el-button style="margin-right: 16px; margin-top: 1px; color: #3369ff" @click="handlePopover" size="small"> |
| | | 更多筛查条件 |
| | | <span style="margin-left: 5px"> |
| | | <el-icon v-if="!popoverValue" class="el-icon-arrow-down"></el-icon> |
| | | <el-icon v-else-if="popoverValue" class="el-icon-arrow-up"></el-icon> |
| | | </span> |
| | | </el-button> |
| | | </template> |
| | | <span>筛选条件</span> |
| | | <!-- 表单内容 --> |
| | | <!-- <el-form ref="queryFormRef" :inline="true" :model="queryForm" class="demo-form-inline">--> |
| | | <!-- <el-row>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="项目类型">--> |
| | | <!-- <el-select v-model="queryForm.projectType" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_project_type" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="重点分类">--> |
| | | <!-- <el-select v-model="queryForm.importanceType" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_key_categories" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- </el-row>--> |
| | | <!-- <el-row>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="项目标签">--> |
| | | <!-- <el-select v-model="queryForm.tag" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_project_tags" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="项目状态">--> |
| | | <!-- <el-select v-model="queryForm.projectStatus" :disabled="isProjectCategory" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_project_status" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- </el-row>--> |
| | | <!-- <el-row>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="项目码">--> |
| | | <!-- <el-select v-model="queryForm.projectColorCode" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_project_code" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="关联状态">--> |
| | | <!-- <el-select v-model="queryForm.assignmentStatus" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_association_status" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- </el-row>--> |
| | | <!-- <el-row>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="资金类型">--> |
| | | <!-- <el-select v-model="queryForm.investmentType" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_funding_type" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="项目阶段">--> |
| | | <!-- <el-select v-model="queryForm.projectPhase" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_project_phases" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- </el-row>--> |
| | | <!-- <el-row>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="投资类别">--> |
| | | <!-- <el-select v-model="queryForm.investType" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_investment_type" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- <el-col :span="12">--> |
| | | <!-- <el-form-item label="行政区划">--> |
| | | <!-- <el-select v-model="queryForm.area" clearable placeholder="请选择" style="width: 140px">--> |
| | | <!-- <el-option v-for="items in sys_administrative_divisions" :key="items.value" :label="items.label" :value="items.value" />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- </el-row>--> |
| | | <!-- <el-row style="text-align: center">--> |
| | | <!-- <el-col :span="24">--> |
| | | <!-- <el-form-item>--> |
| | | <!--<!– <el-button type="primary" @click="handleQueryFrom">确 认</el-button>–>--> |
| | | <!--<!– <el-button @click="closePopover">取 消</el-button>–>--> |
| | | <!-- </el-form-item>--> |
| | | <!-- </el-col>--> |
| | | <!-- </el-row>--> |
| | | <!-- </el-form>--> |
| | | </el-popover> |
| | | </div> |
| | | <div class="right-section"> |
| | | <div> |
| | | <el-button @click="handleExport" size="small" > |
| | | <svg-icon icon-class="exportIcon" style="margin-right: 8px"/> |
| | | 导出数据 |
| | | </el-button> |
| | | <el-button :disabled="isReserve" @click="handleImport" size="small" > |
| | | <svg-icon icon-class="importIcon" style="margin-right: 8px"/> |
| | | 导入数据 |
| | | </el-button> |
| | | </div> |
| | | <div class="add-btn"> |
| | | <el-tooltip content="新增" effect="dark" placement="top"> |
| | | <el-button :disabled="isReserve" circle icon="el-icon-plus" @click="add()" size="small"/> |
| | | </el-tooltip> |
| | | </div> |
| | | <VisibilityToolbar |
| | | v-model:showSearch="showSearch" |
| | | :columns="columnList" |
| | | ></VisibilityToolbar> |
| | | <!-- @update:columns="handleUpdateColumns"--> |
| | | <!-- @update:sort="handleUpdateSort"--> |
| | | <!-- @update:resetSort="handleResetSort"--> |
| | | </div> |
| | | </div> |
| | | </el-form> |
| | | |
| | | <el-table v-loading="loading" :data="infoList" @selection-change="handleSelectionChange"> |
| | | <el-table-column type="selection" width="55" align="center" /> |
| | | <template v-for="item in columns"> |
| | | <el-table-column |
| | | v-if="item.visible" |
| | | :prop="item.id" |
| | | :label="item.label" |
| | | v-bind="item" |
| | | :min-width="item.minWidth" |
| | | > |
| | | <template slot-scope="scope" v-if="item.slotName"> |
| | | <slot :name="item.slotName" :scope="scope"></slot> |
| | | </template> |
| | | </el-table-column> |
| | | </template> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleUpdate(scope.row)" |
| | | v-hasPermi="['code:info:edit']" |
| | | >修改</el-button> |
| | | <el-button |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-delete" |
| | | @click="handleDelete(scope.row)" |
| | | v-hasPermi="['code:info:remove']" |
| | | >删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <template #projectStatus="{ scope }"> |
| | | <el-text class="mx-1">{{ getProjectStatus(scope.row) }}</el-text> |
| | | </template> |
| | | <template #projectColorCode="{ scope }"> |
| | | <el-text class="mx-1 has-dot">{{ '绿' }}<span class="dot" style="margin-left: 5px"></span></el-text> |
| | | </template> |
| | | <template #projectType="{ scope }"> |
| | | <el-text class="mx-1">{{ getProjectType(scope.row) }}</el-text> |
| | | </template> |
| | | <template #investType="{ scope }"> |
| | | <el-text class="mx-1">{{ getInvesType(scope.row) }}</el-text> |
| | | </template> |
| | | <template #planStartTime="{ scope }"> |
| | | {{ scope.row.planStartTime ? scope.row.planStartTime.split('-')[0] + '年' : '' }} |
| | | </template> |
| | | </el-table> |
| | | |
| | | <pagination |
| | | v-show="total>0" |
| | | :total="total" |
| | | :page.sync="queryParams.pageNum" |
| | | :limit.sync="queryParams.pageSize" |
| | | @pagination="getList" |
| | | /> |
| | | |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/projectInfo"; |
| | | import { current } from './list'; |
| | | |
| | | export default { |
| | | name: "projectInfo", |
| | | data() { |
| | | return { |
| | | //控制显隐的表单 |
| | | columnList: [], |
| | | //是否需要新增按钮(储蓄项目需要) |
| | | isReserve: false, |
| | | //表头 |
| | | columns: [], |
| | | //控制更多筛选显隐 |
| | | popoverValue: false, |
| | | // 遮罩层 |
| | | loading: true, |
| | | // 选中数组 |
| | | ids: [], |
| | | // 非单个禁用 |
| | | single: true, |
| | | // 非多个禁用 |
| | | multiple: true, |
| | | // 显示搜索条件 |
| | | showSearch: true, |
| | | // 总条数 |
| | | total: 0, |
| | | // 项目管理基础信息表格数据 |
| | | infoList: [], |
| | | // 弹出层标题 |
| | | title: "", |
| | | // 是否显示弹出层 |
| | | open: false, |
| | | timeRange:[], |
| | | // 查询参数 |
| | | queryParams: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | projectName: null, |
| | | projectCode: null, |
| | | content: null, |
| | | projectType: null, |
| | | projectStatus: null, |
| | | fundType: null, |
| | | investType: null, |
| | | projectPhase: null, |
| | | tag: null, |
| | | competentDepartment: null, |
| | | areaCode: null, |
| | | managementCentralization: null, |
| | | projectApprovalType: null, |
| | | investmentCatalogue: null, |
| | | importanceType: null, |
| | | year: null, |
| | | yearInvestAmount: null, |
| | | createProjectTime: null, |
| | | planStartTime: null, |
| | | planCompleteTime: null, |
| | | winUnit: null, |
| | | winAmount: null, |
| | | winTime: null, |
| | | projectAddress: null, |
| | | longitude: null, |
| | | latitude: null, |
| | | projectOwnerUnit: null, |
| | | projectContactPerson: null, |
| | | contact: null, |
| | | gmtCreateTime: null, |
| | | gmtUpdateTime: null, |
| | | deleted: null |
| | | }, |
| | | // 表单参数 |
| | | form: {}, |
| | | // 表单校验 |
| | | rules: { |
| | | projectName: [ |
| | | { required: true, message: "项目名称不能为空", trigger: "blur" } |
| | | ], |
| | | projectStatus: [ |
| | | { required: true, message: "项目状态 (0未开工,1已开工,2已竣工,3暂停)不能为空", trigger: "change" } |
| | | ], |
| | | } |
| | | }; |
| | | }, |
| | | created() { |
| | | this.columns = current.map((item, index) => { |
| | | item.index = index + 1; |
| | | item.key = index; |
| | | item.serialNumber = index + 1; |
| | | return item; |
| | | }); |
| | | this.getList(); |
| | | }, |
| | | methods: { |
| | | /** 查询项目管理基础信息列表 */ |
| | | getList() { |
| | | this.loading = true; |
| | | // listInfo(this.queryParams).then(response => { |
| | | // this.infoList = response.rows; |
| | | // this.total = response.total; |
| | | // }); |
| | | this.loading = false; |
| | | }, |
| | | // 取消按钮 |
| | | cancel() { |
| | | this.open = false; |
| | | this.reset(); |
| | | }, |
| | | // 表单重置 |
| | | reset() { |
| | | this.form = { |
| | | id: null, |
| | | projectName: null, |
| | | projectCode: null, |
| | | content: null, |
| | | projectType: null, |
| | | projectStatus: null, |
| | | fundType: null, |
| | | investType: null, |
| | | projectPhase: null, |
| | | tag: null, |
| | | competentDepartment: null, |
| | | areaCode: null, |
| | | managementCentralization: null, |
| | | projectApprovalType: null, |
| | | investmentCatalogue: null, |
| | | importanceType: null, |
| | | year: null, |
| | | yearInvestAmount: null, |
| | | createProjectTime: null, |
| | | planStartTime: null, |
| | | planCompleteTime: null, |
| | | winUnit: null, |
| | | winAmount: null, |
| | | winTime: null, |
| | | projectAddress: null, |
| | | longitude: null, |
| | | latitude: null, |
| | | projectOwnerUnit: null, |
| | | projectContactPerson: null, |
| | | contact: null, |
| | | gmtCreateTime: null, |
| | | gmtUpdateTime: null, |
| | | updateBy: null, |
| | | createBy: null, |
| | | deleted: null |
| | | }; |
| | | this.resetForm("form"); |
| | | }, |
| | | /** 搜索按钮操作 */ |
| | | handleQuery() { |
| | | this.queryParams.pageNum = 1; |
| | | this.getList(); |
| | | }, |
| | | /** 重置按钮操作 */ |
| | | resetQuery() { |
| | | this.resetForm("queryForm"); |
| | | this.handleQuery(); |
| | | }, |
| | | // 多选框选中数据 |
| | | handleSelectionChange(selection) { |
| | | this.ids = selection.map(item => item.id) |
| | | this.single = selection.length!==1 |
| | | this.multiple = !selection.length |
| | | }, |
| | | /** 新增按钮操作 */ |
| | | handleAdd() { |
| | | this.reset(); |
| | | this.open = true; |
| | | this.title = "添加项目管理基础信息"; |
| | | }, |
| | | /** 修改按钮操作 */ |
| | | handleUpdate(row) { |
| | | this.reset(); |
| | | const id = row.id || this.ids |
| | | getInfo(id).then(response => { |
| | | this.form = response.data; |
| | | this.open = true; |
| | | this.title = "修改项目管理基础信息"; |
| | | }); |
| | | }, |
| | | /** 提交按钮 */ |
| | | submitForm() { |
| | | this.$refs["form"].validate(valid => { |
| | | if (valid) { |
| | | if (this.form.id != null) { |
| | | updateInfo(this.form).then(response => { |
| | | this.$modal.msgSuccess("修改成功"); |
| | | this.open = false; |
| | | this.getList(); |
| | | }); |
| | | } else { |
| | | addInfo(this.form).then(response => { |
| | | this.$modal.msgSuccess("新增成功"); |
| | | this.open = false; |
| | | this.getList(); |
| | | }); |
| | | } |
| | | } |
| | | }); |
| | | }, |
| | | /** 删除按钮操作 */ |
| | | handleDelete(row) { |
| | | const ids = row.id || this.ids; |
| | | this.$modal.confirm('是否确认删除项目管理基础信息编号为"' + ids + '"的数据项?').then(function() { |
| | | return delInfo(ids); |
| | | }).then(() => { |
| | | this.getList(); |
| | | this.$modal.msgSuccess("删除成功"); |
| | | }).catch(() => {}); |
| | | }, |
| | | /** 导出按钮操作 */ |
| | | handleExport() { |
| | | this.download('code/info/export', { |
| | | ...this.queryParams |
| | | }, `info_${new Date().getTime()}.xlsx`) |
| | | } |
| | | } |
| | | }; |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | .slot { |
| | | display: flex; |
| | | } |
| | | |
| | | .left-section { |
| | | flex-grow: 1; |
| | | } |
| | | |
| | | .right-section { |
| | | display: flex; |
| | | margin-left: auto; |
| | | .add-btn { |
| | | margin: 0 10px; |
| | | } |
| | | } |
| | | |
| | | </style> |
New file |
| | |
| | | export const current = [ |
| | | {id: 'projectName', label: '项目名称', visible: true}, |
| | | {id: 'projectOwnerUnit', label: '业主单位', visible: true}, |
| | | {id: 'projectColorCode', label: '项目码', slotName: 'projectColorCode', visible: true}, |
| | | {id: 'projectCode', label: '项目代码', visible: true}, |
| | | {id: 'projectType', label: '项目类型', slotName: 'projectType', visible: true}, |
| | | {id: 'projectPhase', label: '项目阶段', visible: true}, |
| | | {id: 'totalInvestment', label: '总投资额', visible: true}, |
| | | {id: 'yearInvestAmount', label: '本年计划投资', visible: true}, |
| | | {id: 'planStartTime', label: '项目年份', slotName: 'planStartTime', visible: true}, |
| | | {id: 'projectStatus', label: '项目状态', slotName: 'projectStatus', visible: true}, |
| | | {id: 'investType', label: '投资类别', slotName: 'investType', visible: true}, |
| | | {id: 'content', label: '建设内容', visible: false}, |
| | | {id: 'fundType', label: '资金类型', visible: false}, |
| | | {id: 'projectContactPerson', label: '项目联系人', visible: false}, |
| | | {id: 'contact', label: '联系方式', visible: false}, |
| | | {id: 'engineeringIdList', label: '关联工程', visible: false}, |
| | | {id: 'competentDepartmentList', label: '主管部门', visible: false}, |
| | | {id: 'area', label: '行政区划', visible: false}, |
| | | {id: 'managementCentralizationList', label: '管理归口', visible: false}, |
| | | {id: 'projectApprovalType', label: '项目审批类型', visible: false}, |
| | | {id: 'importanceType', label: '重点分类', visible: false}, |
| | | {id: 'setTime', label: '立项时间', visible: false}, |
| | | {id: 'planCompleteTime', label: '计划竣工时间', visible: false}, |
| | | {id: 'winUnit', label: '中标单位', visible: false}, |
| | | {id: 'winAmount', label: '中标金额', visible: false}, |
| | | {id: 'winTime', label: '中标时间', visible: false}, |
| | | {id: 'year', label: '年度投资计划', visible: false}, |
| | | {id: 'address', label: '项目地址', visible: false}, |
| | | {id: 'projectBudget', label: '项目预算', visible: false}, |
| | | {id: 'beCrossRegion', label: '建设地点是否跨域', visible: false}, |
| | | {id: 'constructionLocation', label: '项目建设地点', visible: false}, |
| | | {id: 'detailedAddress', label: '建设详细地址', visible: false}, |
| | | {id: 'beCompensationProject', label: '是否是补码项目', visible: false}, |
| | | {id: 'compensationReason', label: '补码原因', visible: false}, |
| | | {id: 'plannedStartDate', label: '计划开工时间', visible: false}, |
| | | {id: 'expectedCompletionDate', label: '拟建成时间', visible: false}, |
| | | {id: 'nationalIndustryClassification', label: '国际行业分类', visible: false}, |
| | | {id: 'industryClassification', label: '所属行业分类', visible: false}, |
| | | {id: 'projectNature', label: '项目建成性质', visible: false}, |
| | | {id: 'projectAttribute', label: '项目属性', visible: false}, |
| | | {id: 'useEarth', label: '是否使用土地', visible: false}, |
| | | {id: 'contentScale', label: '主要建设内容及规模', visible: false}, |
| | | {id: 'code', label: '建管平台代码', visible: false}, |
| | | {id: 'projectUnit', label: '项目单位', visible: false}, |
| | | {id: 'projectUnitType', label: '项目单位类型', visible: false}, |
| | | {id: 'registrationType', label: '登记注册类型', visible: false}, |
| | | {id: 'holdingSituation', label: '控股情况', visible: false}, |
| | | {id: 'certificateType', label: '证照类型', visible: false}, |
| | | {id: 'certificateNumber', label: '证件号码', visible: false}, |
| | | {id: 'registeredAddress', label: '注册地址', visible: false}, |
| | | {id: 'registeredCapital', label: '注册资金', visible: false}, |
| | | {id: 'legal_representative', label: '法人代表', visible: false}, |
| | | {id: 'fixedPhone', label: '固定电话', visible: false}, |
| | | {id: 'legalPersonIdcard', label: '法人身份证号', visible: false}, |
| | | {id: 'projectContactPerson', label: '项目联系人', visible: false}, |
| | | {id: 'phone', label: '移动电话', visible: false}, |
| | | {id: 'contactIdcard', label: '联系人身份证号', visible: false}, |
| | | {id: 'wechat', label: '微信号', visible: false}, |
| | | {id: 'contactAddress', label: '联系人通讯地址', visible: false}, |
| | | {id: 'postCode', label: '邮政编码', visible: false}, |
| | | {id: 'email', label: '电子邮箱', visible: false}, |
| | | {id: 'totalInvestment', label: '项目总投资额', visible: false}, |
| | | {id: 'principal', label: '项目本金', visible: false}, |
| | | {id: 'governmentInvestmentTotal', label: '政府投资', visible: false}, |
| | | {id: 'centralInvestmentTotal', label: '中央投资', visible: false}, |
| | | {id: 'centralBudgetInvestment', label: '中央预算投资', visible: false}, |
| | | {id: 'centralFiscalInvestment', label: '中央财政', visible: false}, |
| | | {id: 'centralSpecialBondInvestment', label: '中央专项债券筹集的专项建设资金', visible: false}, |
| | | {id: 'centralSpecialFundInvestment', label: '中央专项建设基金', visible: false}, |
| | | {id: 'provincialInvestmentTotal', label: '省级投资', visible: false}, |
| | | {id: 'provincialBudgetInvestment', label: '省预算内投资', visible: false}, |
| | | {id: 'provincialFiscalInvestment', label: '省财政性建设投资', visible: false}, |
| | | {id: 'provincialSpecialFundInvestment', label: '省专项建设资金', visible: false}, |
| | | {id: 'cityInvestmentTotal', label: '市(州)投资', visible: false}, |
| | | {id: 'cityBudgetInvestment', label: '市(州)预算内投资', visible: false}, |
| | | {id: 'cityFiscalInvestment', label: '市(州)财政性投资', visible: false}, |
| | | {id: 'citySpecialFundInvestment', label: '市(州)专项资金', visible: false}, |
| | | {id: 'countyInvestmentTotal', label: '县(市、区)投资', visible: false}, |
| | | {id: 'countyBudgetInvestment', label: '区(县)预算内投资', visible: false}, |
| | | {id: 'countyFiscalInvestment', label: '区(县)财政性建设资金', visible: false}, |
| | | {id: 'countySpecialFundInvestment', label: '区(县)专项资金', visible: false}, |
| | | {id: 'domesticLoanTotal', label: '国内贷款', visible: false}, |
| | | {id: 'bankLoan', label: '银行贷款', visible: false}, |
| | | {id: 'foreignInvestmentTotal', label: '外商投资', visible: false}, |
| | | {id: 'enterpriseSelfRaisedTotal', label: '企业自筹', visible: false}, |
| | | {id: 'otherInvestmentTotal', label: '其他投资', visible: false} |
| | | ]; |
| | | export const currentRest = [ |
| | | { id: 'projectName', label: '项目名称', visible: true }, |
| | | { id: 'projectOwnerUnit', label: '业主单位', visible: true }, |
| | | { id: 'projectColorCode', label: '项目码', slotName: 'projectColorCode', visible: true }, |
| | | { id: 'projectCode', label: '项目代码', visible: true }, |
| | | { id: 'projectType', label: '项目类型', slotName: 'projectType', visible: true }, |
| | | { id: 'projectPhase', label: '项目阶段', visible: true }, |
| | | { id: 'totalInvestment', label: '总投资额', visible: true }, |
| | | { id: 'yearInvestAmount', label: '本年计划投资', visible: true }, |
| | | { id: 'planStartTime', label: '项目年份', slotName: 'planStartTime', visible: true }, |
| | | { id: 'projectStatus', label: '项目状态', slotName: 'projectStatus', visible: true }, |
| | | { id: 'investType', label: '投资类别', slotName: 'investType', visible: true }, |
| | | { id: 'content', label: '建设内容', visible: false }, |
| | | { id: 'fundType', label: '资金类型', visible: false }, |
| | | { id: 'projectContactPerson', label: '项目联系人', visible: false }, |
| | | { id: 'contact', label: '联系方式', visible: false }, |
| | | { id: 'engineeringIdList', label: '关联工程', visible: false }, |
| | | { id: 'competentDepartmentList', label: '主管部门', visible: false }, |
| | | { id: 'area', label: '行政区划', visible: false }, |
| | | { id: 'managementCentralizationList', label: '管理归口', visible: false }, |
| | | { id: 'projectApprovalType', label: '项目审批类型', visible: false }, |
| | | { id: 'importanceType', label: '重点分类', visible: false }, |
| | | { id: 'setTime', label: '立项时间', visible: false }, |
| | | { id: 'planCompleteTime', label: '计划竣工时间', visible: false }, |
| | | { id: 'winUnit', label: '中标单位', visible: false }, |
| | | { id: 'winAmount', label: '中标金额', visible: false }, |
| | | { id: 'winTime', label: '中标时间', visible: false }, |
| | | { id: 'year', label: '年度投资计划', visible: false }, |
| | | { id: 'address', label: '项目地址', visible: false }, |
| | | { id: 'projectBudget', label: '项目预算', visible: false }, |
| | | { id: 'beCrossRegion', label: '建设地点是否跨域', visible: false }, |
| | | { id: 'constructionLocation', label: '项目建设地点', visible: false }, |
| | | { id: 'detailedAddress', label: '建设详细地址', visible: false }, |
| | | { id: 'beCompensationProject', label: '是否是补码项目', visible: false }, |
| | | { id: 'compensationReason', label: '补码原因', visible: false }, |
| | | { id: 'plannedStartDate', label: '计划开工时间', visible: false }, |
| | | { id: 'expectedCompletionDate', label: '拟建成时间', visible: false }, |
| | | { id: 'nationalIndustryClassification', label: '国际行业分类', visible: false }, |
| | | { id: 'industryClassification', label: '所属行业分类', visible: false }, |
| | | { id: 'projectNature', label: '项目建成性质', visible: false }, |
| | | { id: 'projectAttribute', label: '项目属性', visible: false }, |
| | | { id: 'useEarth', label: '是否使用土地', visible: false }, |
| | | { id: 'contentScale', label: '主要建设内容及规模', visible: false }, |
| | | { id: 'code', label: '建管平台代码', visible: false }, |
| | | { id: 'projectUnit', label: '项目单位', visible: false }, |
| | | { id: 'projectUnitType', label: '项目单位类型', visible: false }, |
| | | { id: 'registrationType', label: '登记注册类型', visible: false }, |
| | | { id: 'holdingSituation', label: '控股情况', visible: false }, |
| | | { id: 'certificateType', label: '证照类型', visible: false }, |
| | | { id: 'certificateNumber', label: '证件号码', visible: false }, |
| | | { id: 'registeredAddress', label: '注册地址', visible: false }, |
| | | { id: 'registeredCapital', label: '注册资金', visible: false }, |
| | | { id: 'legal_representative', label: '法人代表', visible: false }, |
| | | { id: 'fixedPhone', label: '固定电话', visible: false }, |
| | | { id: 'legalPersonIdcard', label: '法人身份证号', visible: false }, |
| | | { id: 'projectContactPerson', label: '项目联系人', visible: false }, |
| | | { id: 'phone', label: '移动电话', visible: false }, |
| | | { id: 'contactIdcard', label: '联系人身份证号', visible: false }, |
| | | { id: 'wechat', label: '微信号', visible: false }, |
| | | { id: 'contactAddress', label: '联系人通讯地址', visible: false }, |
| | | { id: 'postCode', label: '邮政编码', visible: false }, |
| | | { id: 'email', label: '电子邮箱', visible: false }, |
| | | { id: 'totalInvestment', label: '项目总投资额', visible: false }, |
| | | { id: 'principal', label: '项目本金', visible: false }, |
| | | { id: 'governmentInvestmentTotal', label: '政府投资', visible: false }, |
| | | { id: 'centralInvestmentTotal', label: '中央投资', visible: false }, |
| | | { id: 'centralBudgetInvestment', label: '中央预算投资', visible: false }, |
| | | { id: 'centralFiscalInvestment', label: '中央财政', visible: false }, |
| | | { id: 'centralSpecialBondInvestment', label: '中央专项债券筹集的专项建设资金', visible: false }, |
| | | { id: 'centralSpecialFundInvestment', label: '中央专项建设基金', visible: false }, |
| | | { id: 'provincialInvestmentTotal', label: '省级投资', visible: false }, |
| | | { id: 'provincialBudgetInvestment', label: '省预算内投资', visible: false }, |
| | | { id: 'provincialFiscalInvestment', label: '省财政性建设投资', visible: false }, |
| | | { id: 'provincialSpecialFundInvestment', label: '省专项建设资金', visible: false }, |
| | | { id: 'cityInvestmentTotal', label: '市(州)投资', visible: false }, |
| | | { id: 'cityBudgetInvestment', label: '市(州)预算内投资', visible: false }, |
| | | { id: 'cityFiscalInvestment', label: '市(州)财政性投资', visible: false }, |
| | | { id: 'citySpecialFundInvestment', label: '市(州)专项资金', visible: false }, |
| | | { id: 'countyInvestmentTotal', label: '县(市、区)投资', visible: false }, |
| | | { id: 'countyBudgetInvestment', label: '区(县)预算内投资', visible: false }, |
| | | { id: 'countyFiscalInvestment', label: '区(县)财政性建设资金', visible: false }, |
| | | { id: 'countySpecialFundInvestment', label: '区(县)专项资金', visible: false }, |
| | | { id: 'domesticLoanTotal', label: '国内贷款', visible: false }, |
| | | { id: 'bankLoan', label: '银行贷款', visible: false }, |
| | | { id: 'foreignInvestmentTotal', label: '外商投资', visible: false }, |
| | | { id: 'enterpriseSelfRaisedTotal', label: '企业自筹', visible: false }, |
| | | { id: 'otherInvestmentTotal', label: '其他投资', visible: false } |
| | | ]; |
| | |
| | | proxy: { |
| | | // detail: https://cli.vuejs.org/config/#devserver-proxy |
| | | [process.env.VUE_APP_BASE_API]: { |
| | | target: `http://localhost:8080`, |
| | | target: `http://localhost:10076`, |
| | | changeOrigin: true, |
| | | pathRewrite: { |
| | | ['^' + process.env.VUE_APP_BASE_API]: '' |