846 lines
32 KiB
Vue
846 lines
32 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form-item label="项目名称" prop="projectName">
|
|
<el-input v-model="queryParams.projectName" placeholder="请输入项目名称" clearable @keyup.enter="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item label="项目类型" prop="projectType">
|
|
<el-select v-model="queryParams.projectType" placeholder="请选择项目类型" clearable>
|
|
<el-option v-for="dict in pro_project_type" :key="dict.value" :label="dict.label"
|
|
:value="dict.value"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd"
|
|
v-hasPermi="['manage:proProjectInfo:add']">新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate"
|
|
v-hasPermi="['manage:proProjectInfo:edit']">修改</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete"
|
|
v-hasPermi="['manage:proProjectInfo:remove']">删除</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="warning" plain icon="Download" @click="handleExport"
|
|
v-hasPermi="['manage:proProjectInfo:export']">导出</el-button>
|
|
</el-col>
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="proProjectInfoList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="所属单位" align="center" prop="comName" width="120" />
|
|
<el-table-column label="项目名称" align="center" prop="projectName" width="250" />
|
|
<el-table-column label="项目简称" align="center" prop="simpleName" />
|
|
<el-table-column label="项目类型" align="center" prop="projectType" width="100">
|
|
<template #default="scope">
|
|
<dict-tag :options="pro_project_type" :value="scope.row.projectType" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="二维码" align="center" prop="projectQrCode" width="80">
|
|
<template #default="scope">
|
|
<image-preview :src="scope.row.projectQrCode" :width="50" :height="50" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="项目排序" align="center" prop="projectSort" width="180" v-if="isAdmin">
|
|
<template #default="scope">
|
|
<el-input-number v-model="scope.row.projectSort" :min="1" :max="999"
|
|
@change="setProjectSort(scope.row, $event)"></el-input-number>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="项目地址" align="center" prop="projectAddress" width="280" />
|
|
<el-table-column label="负责人" align="center" prop="projectPerson" width="100" />
|
|
<el-table-column label="负责人电话" align="center" prop="projectPersonPhone" width="120" />
|
|
<el-table-column label="项目工期" align="center" prop="projectTimeLimit" width="120">
|
|
<template #default="scope">
|
|
<el-tag effect="plain">
|
|
{{ scope.row.projectTimeLimit + ' 天' }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="总投资" align="center" prop="totalInvestment">
|
|
<template #default="scope">
|
|
<el-tag effect="dark">
|
|
{{ scope.row.totalInvestment + ' 万元' }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="合同金额" align="center" prop="contractAmount">
|
|
<template #default="scope">
|
|
<el-tag effect="dark">
|
|
{{ scope.row.contractAmount + ' 万元' }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="项目进度" align="center" prop="projectSchedule">
|
|
<template #default="scope">
|
|
<dict-tag :options="pro_project_schedule" :value="scope.row.projectSchedule" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="计划开始时间" align="center" prop="scheduledStartTime" width="120" />
|
|
<el-table-column label="计划完工时间" align="center" prop="plannedCompletionTime" width="120" />
|
|
<el-table-column label="实际开始时间" align="center" prop="actualOperatingTime" width="120" />
|
|
<el-table-column label="实际完工时间" align="center" prop="actualCompletionTime" width="120" />
|
|
<el-table-column label="项目状态" align="center" prop="isDel">
|
|
<template #default="scope">
|
|
<dict-tag :options="sys_is_del" :value="scope.row.isDel" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="120">
|
|
<template #default="scope">
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" fixed="right" width="150" class-name="small-padding fixed-width">
|
|
<template #default="scope"><!--
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)"
|
|
v-hasPermi="['manage:proProjectInfo:edit']">修改</el-button>
|
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)"
|
|
v-hasPermi="['manage:proProjectInfo:remove']">删除</el-button>-->
|
|
<el-dropdown @command="e=>menuCommand(e,scope.row)">
|
|
<span class="el-dropdown-link">
|
|
<el-icon :size="14" color="var(--el-color-primary)">
|
|
<Setting />
|
|
</el-icon><span style="margin-left:8px;position: relative;top:-3px;">操作</span>
|
|
<el-icon class="el-icon--right">
|
|
<arrow-down />
|
|
</el-icon>
|
|
</span>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item v-hasPermi="['manage:proProjectInfo:edit']" command="edit"
|
|
style="color: var(--el-color-primary);"><el-icon :size="14" color="var(--el-color-primary)">
|
|
<Edit />
|
|
</el-icon>修改
|
|
</el-dropdown-item>
|
|
<el-dropdown-item v-hasPermi="['manage:proProjectInfo:edit']" command="resetQr"
|
|
style="color: var(--el-color-primary);"><el-icon :size="14" color="var(--el-color-primary)">
|
|
<Refresh />
|
|
</el-icon>重置二维码
|
|
</el-dropdown-item>
|
|
<el-dropdown-item divided v-hasPermi="['manage:costOutput:add']" command="outCost"
|
|
style="color: var(--el-color-primary);"><el-icon :size="14" color="var(--el-color-primary)">
|
|
<Money />
|
|
</el-icon>项目产值管理
|
|
</el-dropdown-item>
|
|
<el-dropdown-item divided v-hasPermi="['manage:proProjectInfo:remove']" command="delete"
|
|
style="color: var(--el-color-primary);"><el-icon :size="14" color="var(--el-color-primary)">
|
|
<Delete />
|
|
</el-icon>删除</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum"
|
|
v-model:limit="queryParams.pageSize" @pagination="getList" />
|
|
|
|
<!-- 添加或修改项目信息对话框 -->
|
|
<el-dialog :title="title" v-model="open" v-loading="formLoading" width="1080px" append-to-body :close-on-click-modal="false"
|
|
:close-on-press-escape="false" class="project-info-edit-dlg">
|
|
<el-form ref="proProjectInfoRef" :model="form" :rules="rules" label-width="120px">
|
|
<el-tabs v-model="activeTags" type="card" class="demo-tabs">
|
|
<el-tab-pane label="项目基本信息" name="base">
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<el-form-item label="归属单位" prop="disDeptId">
|
|
<el-tree-select v-model="form.disDeptId" :data="deptOptions"
|
|
:props="{ value: 'id', label: 'label', children: 'children' }" value-key="id" placeholder="请选择归属单位"
|
|
check-strictly style="width:100%" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="项目名称" prop="projectName">
|
|
<el-input v-model="form.projectName" maxlength="64" show-word-limit placeholder="请输入项目名称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="项目简称" prop="simpleName">
|
|
<el-input v-model="form.simpleName" maxlength="32" show-word-limit placeholder="请输入项目简称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<el-form-item label="项目类型" prop="projectType">
|
|
<el-select v-model="form.projectType" placeholder="请选择项目类型" style="width:100%">
|
|
<el-option v-for="dict in pro_project_type" :key="dict.value" :label="dict.label"
|
|
:value="dict.value"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="项目负责人" prop="projectPerson">
|
|
<el-input v-model="form.projectPerson" maxlength="10" show-word-limit placeholder="请输入项目负责人" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="负责人电话" prop="projectPersonPhone">
|
|
<el-input v-model="form.projectPersonPhone" maxlength="11" show-word-limit placeholder="请输入负责人电话" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="8" class="fitem-no-width">
|
|
<el-form-item label="项目技术负责人" prop="techLeader">
|
|
<el-input v-model="form.techLeader" maxlength="10" show-word-limit placeholder="请输入项目技术负责人" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8" class="fitem-no-width">
|
|
<el-form-item label="技术负责人电话" prop="techLeaderPhone">
|
|
<el-input v-model="form.techLeaderPhone" maxlength="11" show-word-limit placeholder="请输入技术负责人电话" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-row :gutter="20">
|
|
<el-col :span="24">
|
|
<el-form-item label="项目地址" prop="projectAddress" ref="fitemPrjAddr">
|
|
<el-input v-model="addressInfos" placeholder="请选择项目地址信息" @focus="getMapInfo">
|
|
<template #prefix>
|
|
<el-icon class="el-input__icon">
|
|
<Location />
|
|
</el-icon>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<el-form-item label="总工期" prop="projectTimeLimit">
|
|
<el-input v-model.number="form.projectTimeLimit" maxlength="10" show-word-limit placeholder="请输入总工期">
|
|
<template #append>天</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="总投资" prop="totalInvestment">
|
|
<el-input v-model.number="form.totalInvestment" maxlength="20" show-word-limit placeholder="请输入总投资">
|
|
<template #append>万元</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="合同金额" prop="contractAmount">
|
|
<el-input v-model.number="form.contractAmount" maxlength="20" show-word-limit placeholder="请输入合同金额">
|
|
<template #append>万元</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<el-form-item label="建筑面积" prop="floorArea">
|
|
<el-input v-model.number="form.floorArea" maxlength="20" show-word-limit placeholder="请输入项目建筑面积">
|
|
<template #append>㎡</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8" class="fitem-no-width">
|
|
<el-form-item label="计划开工时间" prop="scheduledStartTime">
|
|
<el-date-picker v-model="form.scheduledStartTime" type="date" placeholder="请选择计划开工时间"
|
|
style="width:100%" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8" class="fitem-no-width">
|
|
<el-form-item label="计划完工时间" prop="plannedCompletionTime">
|
|
<el-date-picker v-model="form.plannedCompletionTime" type="date" placeholder="请选择计划完工时间"
|
|
style="width:100%" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<el-form-item label="项目进度" prop="projectSchedule">
|
|
<el-select v-model="form.projectSchedule" placeholder="请选择项目进度" style="width:100%">
|
|
<el-option v-for="dict in pro_project_schedule" :key="dict.value" :label="dict.label"
|
|
:value="dict.value"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
<el-col :span="8" class="fitem-no-width">
|
|
<el-form-item label="实际开工时间" prop="actualOperatingTime">
|
|
<el-date-picker v-model="form.actualOperatingTime" type="date" placeholder="请选择实际开工时间"
|
|
style="width:100%" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8" class="fitem-no-width">
|
|
<el-form-item label="实际完工时间" prop="actualCompletionTime">
|
|
<el-date-picker v-model="form.actualCompletionTime" type="date" placeholder="请选择实际完工时间"
|
|
style="width:100%" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="24">
|
|
<el-form-item label="项目概述" prop="projectSummarize">
|
|
<el-input v-model="form.projectSummarize" type="textarea" :rows="3" placeholder="请输入项目概述"
|
|
maxlength="1024" show-word-limit />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="24">
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="form.remark" placeholder="请输入备注" maxlength="255" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-tab-pane>
|
|
<el-tab-pane label="建设单位信息" name="depts" v-if="data.opt == 'edit'">
|
|
<div class="scroll" style="max-height: 60vh; overflow-y: auto;">
|
|
<div v-for="(it, idx) in data.projectDeptsList" :key="idx" class="prj-dept-item">
|
|
<div class="dept-item-header">
|
|
<el-icon size="14" color="#2196F3">
|
|
<OfficeBuilding />
|
|
</el-icon>
|
|
<span class="sp-header">{{ it.header }}</span>
|
|
<el-button @click="doAddPrjDept(it)" type="primary" size="small" style="margin-left: 10px;"
|
|
v-if="it.header != '建设单位'">增加一行</el-button>
|
|
</div>
|
|
<el-row v-for="(item, index) in it.datas" :key="index">
|
|
<el-col :span="7">
|
|
<el-form-item :label="item.deptType + '名称'">
|
|
<el-input v-model="item.deptName" class="txt-dept-name" placeholder="请输入单位名称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="7">
|
|
<el-form-item label="负责人姓名">
|
|
<el-input v-model="item.leader" class="txt-leader" placeholder="请输入负责人姓名" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="7">
|
|
<el-form-item label="负责人电话">
|
|
<el-input v-model="item.phone" class="txt-phone" placeholder="请输入负责人电话" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="3">
|
|
<el-button v-if="index > 0" type="warning" size="small"
|
|
@click="doDeletPrjDept(it, item, index)">删除</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</div>
|
|
</el-tab-pane>
|
|
<el-tab-pane label="项目大屏设置" name="setting" v-if="data.opt == 'edit'" class="pan-setting">
|
|
<el-row :gutter="20">
|
|
<el-col :span="24">
|
|
<el-form-item label="项目显示名" prop="orgName">
|
|
<el-input v-model="form.setting.orgName" maxlength="32" show-word-limit placeholder="请输入项目显示名" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="12" :class="form.setting.orgLogo ? 'no-up' : 'can-up'" class="up-img">
|
|
<el-form-item label="显示LOGO" prop="orgLogo">
|
|
<image-upload v-model="form.setting.orgLogo" :limit="1" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12" :class="form.setting.orgPlane ? 'no-up' : 'can-up'" class="up-img">
|
|
<el-form-item label="施工平面图布置图" prop="orgPlane">
|
|
<image-upload v-model="form.setting.orgPlane" :limit="1" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="24"
|
|
:class="form.setting.orgImage && form.setting.orgImage.split(',').length == 9 ? 'no-up' : 'can-up'"
|
|
class="up-img">
|
|
<el-form-item label="项目预览图" prop="orgImage">
|
|
<image-upload v-model="form.setting.orgImage" :limit="9" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="24" :class="form.setting.orgVideo ? 'no-up' : 'can-up'" class="up-video">
|
|
<el-form-item label="项目视频" prop="orgVideo">
|
|
<file-upload v-model="form.setting.orgVideo" :limit="1" :fileType="['mp4']" :fileSize="100" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</el-form>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
<costOutputDrawer ref="coDrawer"/>
|
|
<baidu-map ref="mapRef" @docom="mapDocom"></baidu-map>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="ProProjectInfo">
|
|
import { deptTreeSelect } from "@/api/system/user";
|
|
import { listProProjectInfo, getProProjectInfo, delProProjectInfo, addProProjectInfo, updateProProjectInfo, resetProQrCode } from "@/api/manage/proProjectInfo";
|
|
import BaiduMap from "@/components/BaiduMap/Map.vue";
|
|
import useUserStore from '@/store/modules/user'
|
|
import costOutputDrawer from "../costOutput/costOutputDrawer.vue";
|
|
const { proxy } = getCurrentInstance();
|
|
const { pro_project_type, pro_project_schedule, pro_dept_type, sys_is_del } = proxy.useDict('pro_project_type', 'pro_project_schedule', 'pro_dept_type', 'sys_is_del');
|
|
|
|
const isAdmin = ref(false);
|
|
const mapRef = ref("");
|
|
const proProjectInfoList = ref([]);
|
|
const open = ref(false);
|
|
const loading = ref(true);
|
|
const formLoading = ref(false);
|
|
const showSearch = ref(true);
|
|
const ids = ref([]);
|
|
const single = ref(true);
|
|
const multiple = ref(true);
|
|
const total = ref(0);
|
|
const title = ref("");
|
|
const activeTags = ref('base')
|
|
const addressInfos = ref("");
|
|
const fitemPrjAddr = ref()
|
|
const projectDeptsList = ref([]);
|
|
const checkedProjectDepts = ref([]);
|
|
const coDrawer=ref();
|
|
const deptOptions = ref([]);
|
|
const userStore = useUserStore()
|
|
const data = reactive({
|
|
form: {
|
|
setting: {}
|
|
},
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
deptId: null,
|
|
visDeptId: null,
|
|
disDeptId: null,
|
|
projectName: null,
|
|
projectCode: null,
|
|
simpleName: null,
|
|
projectType: null,
|
|
projectLevel: null,
|
|
projectPerson: null,
|
|
projectPersonPhone: null,
|
|
projectStatus: null,
|
|
isDel: null,
|
|
},
|
|
rules: {
|
|
disDeptId: [{ required: true, message: "归属单位不能为空", trigger: "change" }],
|
|
projectName: [{ required: true, message: "项目名称不能为空", trigger: "blur" }],
|
|
simpleName: [{ required: false, message: "项目简称不能为空", trigger: "blur" }],
|
|
projectType: [{ required: true, message: "项目类型不能为空", trigger: "change" }],
|
|
projectPerson: [{ required: true, message: "项目负责人不能为空", trigger: "blur" }],
|
|
projectPersonPhone: [{ required: true, message: "负责人电话不能为空", trigger: "blur" }],
|
|
techLeader: [{ required: true, message: "技术负责人不能为空", trigger: "blur" }],
|
|
techLeaderPhone: [{ required: true, message: "技术负责人联系电话不能为空", trigger: "blur" }],
|
|
projectAddress: [{ required: true, message: "项目地址不能为空", trigger: "blur" }],
|
|
projectTimeLimit: [{ required: true, message: "总工期不能为空", trigger: "blur" }],
|
|
contractAmount: [{ required: true, message: "合同金额不能为空", trigger: "blur" }],
|
|
floorArea: [{ required: true, message: "建筑面积不能为空", trigger: "blur" }],
|
|
scheduledStartTime: [{ required: true, message: "计划开工时间不能为空", trigger: "blur" }],
|
|
plannedCompletionTime: [{ required: true, message: "计划完工时间不能为空", trigger: "blur" }],
|
|
projectSchedule: [{ required: true, message: "项目进度不能为空", trigger: "blur" }],
|
|
actualOperatingTime: [{ required: true, message: "实际开工时间不能为空", trigger: "blur" }],
|
|
projectSummarize: [{ required: true, message: "项目概述不能为空", trigger: "blur" }],
|
|
},
|
|
opt: '',
|
|
projectDeptsList: []
|
|
});
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
/** 地图选择 */
|
|
function mapDocom(pt, city) {
|
|
form.value.province = city.province
|
|
form.value.city = city.city
|
|
form.value.district = city.district
|
|
form.value.address = city.address;
|
|
form.value.projectAddress = city.address || "";
|
|
form.value.longitude = pt.lng.toFixed(5);
|
|
form.value.latitude = pt.lat.toFixed(5);
|
|
addressInfos.value = form.value.projectAddress + "," + form.value.longitude + "," + form.value.latitude;
|
|
fitemPrjAddr.value.clearValidate();
|
|
}
|
|
|
|
function menuCommand(e,row){
|
|
if(e=="edit"){
|
|
handleUpdate(row);
|
|
return;
|
|
}
|
|
if(e=="resetQr"){
|
|
handleResetQr(row);
|
|
return;
|
|
}
|
|
if(e=="delete"){
|
|
handleDelete(row);
|
|
return;
|
|
}
|
|
if(e=="outCost"){
|
|
coDrawer.value.showDrawer(row);
|
|
return;
|
|
}
|
|
}
|
|
/** 查询项目信息列表 */
|
|
function getList() {
|
|
loading.value = true;
|
|
listProProjectInfo(queryParams.value).then(response => {
|
|
proProjectInfoList.value = response.rows;
|
|
total.value = response.total;
|
|
loading.value = false;
|
|
});
|
|
}
|
|
|
|
// 取消按钮
|
|
function cancel() {
|
|
open.value = false;
|
|
reset();
|
|
}
|
|
|
|
// 表单重置
|
|
function reset() {
|
|
addressInfos.value = "";
|
|
form.value = {
|
|
id: null,
|
|
deptId: null,
|
|
visDeptId: null,
|
|
disDeptId: null,
|
|
projectName: null,
|
|
projectCode: null,
|
|
simpleName: null,
|
|
projectType: null,
|
|
projectLevel: null,
|
|
projectRegional: null,
|
|
projectAddress: null,
|
|
projectNature: null,
|
|
licenceNumber: null,
|
|
projectPerson: null,
|
|
projectPersonPhone: null,
|
|
longitude: null,
|
|
latitude: null,
|
|
projectTimeLimit: null,
|
|
totalInvestment: null,
|
|
floorArea: null,
|
|
totalOutputValue: null,
|
|
plannedCompletionTime: null,
|
|
scheduledStartTime: null,
|
|
actualOperatingTime: null,
|
|
actualCompletionTime: null,
|
|
contractAmount: null,
|
|
paidAmount: null,
|
|
onAccountAmount: null,
|
|
projectSchedule: null,
|
|
projectSummarize: null,
|
|
projectQrCode: null,
|
|
projectStatus: null,
|
|
projectSort: null,
|
|
isDel: null,
|
|
createBy: null,
|
|
createTime: null,
|
|
updateBy: null,
|
|
updateTime: null,
|
|
remark: null,
|
|
setting: {}
|
|
};
|
|
proxy.resetForm("proProjectInfoRef");
|
|
activeTags.value = "base";
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
function handleQuery() {
|
|
queryParams.value.pageNum = 1;
|
|
getList();
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
function resetQuery() {
|
|
proxy.resetForm("queryRef");
|
|
handleQuery();
|
|
}
|
|
|
|
// 多选框选中数据
|
|
function handleSelectionChange(selection) {
|
|
ids.value = selection.map(item => item.id);
|
|
single.value = selection.length != 1;
|
|
multiple.value = !selection.length;
|
|
}
|
|
|
|
/** 新增按钮操作 */
|
|
function handleAdd() {
|
|
data.opt = "add"
|
|
reset();
|
|
open.value = true;
|
|
title.value = "添加项目";
|
|
}
|
|
function doAddPrjDept(it) {
|
|
it.datas.push({
|
|
deptType: it.header, deptName: '', leader: '', phone: ''
|
|
});
|
|
}
|
|
|
|
function doDeletPrjDept(it, item, index) {
|
|
if (item.deptName || item.leader || item.phone) {
|
|
proxy.$modal.confirm('是否确认删除这个数据?').then(function () {
|
|
it.datas.splice(index, 1)
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
}).catch(() => { });
|
|
} else {
|
|
it.datas.splice(index, 1)
|
|
}
|
|
}
|
|
|
|
/** 修改按钮操作 */
|
|
function handleUpdate(row) {
|
|
data.opt = "edit"
|
|
reset();
|
|
const _id = row.id || ids.value
|
|
getProProjectInfo(_id).then(response => {
|
|
form.value = response.data;
|
|
form.value.setting = response.data.setting || {
|
|
orgName: '',
|
|
orgLogo: '',
|
|
orgPlane: '',
|
|
orgImage: [],
|
|
orgVideo: ''
|
|
};
|
|
open.value = true;
|
|
title.value = "修改项目信息";
|
|
projectDeptsList.value = (response.data.projectDeptsList || []).filter(d => d.id);
|
|
if (projectDeptsList.value.length == 0) {
|
|
projectDeptsList.value = [
|
|
{ deptType: '建设单位', deptName: '', leader: '', phone: '' },
|
|
{ deptType: '监理单位', deptName: '', leader: '', phone: '' },
|
|
{ deptType: '设计单位', deptName: '', leader: '', phone: '' },
|
|
{ deptType: '检测单位', deptName: '', leader: '', phone: '' },
|
|
{ deptType: '勘察单位', deptName: '', leader: '', phone: '' },
|
|
];
|
|
}
|
|
let headers = "建设单位,监理单位,设计单位,检测单位,勘察单位".split(",");
|
|
data.projectDeptsList = [];
|
|
headers.forEach(h => {
|
|
data.projectDeptsList.push({
|
|
header: h,
|
|
datas: projectDeptsList.value.filter(it => it.deptType == h)
|
|
})
|
|
});
|
|
addressInfos.value = form.value.projectAddress + "," + form.value.longitude + "," + form.value.latitude;
|
|
|
|
});
|
|
}
|
|
|
|
/** 重置项目二维码 */
|
|
function handleResetQr(row) {
|
|
proxy.$modal.confirm('是否确认重置项目二维码编号为"' + row.id + '"的数据项?').then(function () {
|
|
loading.value = true;
|
|
return resetProQrCode(row.id);
|
|
}).then(() => {
|
|
getList();
|
|
proxy.$modal.msgSuccess("重置成功");
|
|
}).catch(() => { });
|
|
}
|
|
|
|
/** 参建单位序号 */
|
|
function rowProjectDeptsIndex({ row, rowIndex }) {
|
|
row.index = rowIndex + 1;
|
|
}
|
|
|
|
/** 参建单位添加按钮操作 */
|
|
function handleAddDepts() {
|
|
let obj = {};
|
|
obj.deptType = "";
|
|
obj.deptName = "";
|
|
obj.leader = "";
|
|
obj.phone = "";
|
|
projectDeptsList.value.push(obj);
|
|
}
|
|
|
|
/** 参建单位删除按钮操作 */
|
|
function handleDeleteDepts() {
|
|
if (checkedProjectDepts.value.length == 0) {
|
|
proxy.$modal.msgError("请先选择要删除的参建单位!");
|
|
} else {
|
|
const projectDeptsList = projectDeptsList.value;
|
|
const checkedProjectDepts = checkedProjectDepts.value;
|
|
projectDeptsList.value = projectDeptsList.filter(function (item) {
|
|
return checkedProjectDepts.indexOf(item.index) == -1
|
|
});
|
|
}
|
|
}
|
|
|
|
/** 复选框选中数据 */
|
|
function handleDeptsSelectionChange(selection) {
|
|
checkedProjectDepts.value = selection.map(item => item.index)
|
|
}
|
|
|
|
function getProjectDeptsList() {
|
|
let datas = [];
|
|
data.projectDeptsList.forEach(d => {
|
|
if (d.datas) {
|
|
d.datas.forEach(it => {
|
|
if (it.deptName || it.leader || it.phone) {
|
|
datas.push(it);
|
|
}
|
|
})
|
|
}
|
|
});
|
|
return datas;
|
|
}
|
|
|
|
/** 提交按钮 */
|
|
function submitForm() {
|
|
proxy.$refs["proProjectInfoRef"].validate(valid => {
|
|
if (valid) {
|
|
formLoading.value = true;
|
|
form.value.projectDeptsList = getProjectDeptsList();
|
|
let postData = {
|
|
...form.value
|
|
}
|
|
if (form.value.id != null) {
|
|
updateProProjectInfo(postData).then(response => {
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
open.value = false;
|
|
formLoading.value = false;
|
|
getList();
|
|
});
|
|
} else {
|
|
addProProjectInfo(postData).then(response => {
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
open.value = false;
|
|
formLoading.value = false;
|
|
getList();
|
|
});
|
|
}
|
|
}else{
|
|
proxy.$modal.msgError("请检查必填数据(项目基本信息)");
|
|
}
|
|
});
|
|
}
|
|
|
|
//修改项目排序
|
|
function setProjectSort(row, val) {
|
|
let param = {
|
|
id: row.id,
|
|
projectSort: val,
|
|
};
|
|
updateProProjectInfo(param).then((response) => {
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
getList();
|
|
});
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
function handleDelete(row) {
|
|
const _ids = row.id || ids.value;
|
|
proxy.$modal.confirm('是否确认删除项目信息编号为"' + _ids + '"的数据项?').then(function () {
|
|
return delProProjectInfo(_ids);
|
|
}).then(() => {
|
|
getList();
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
}).catch(() => { });
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
function handleExport() {
|
|
proxy.download('manage/proProjectInfo/export', {
|
|
...queryParams.value
|
|
}, `proProjectInfo_${new Date().getTime()}.xlsx`)
|
|
}
|
|
|
|
/** 查询部门下拉树结构 */
|
|
function getDeptTree() {
|
|
deptTreeSelect().then(response => {
|
|
deptOptions.value = response.data;
|
|
});
|
|
};
|
|
|
|
/** 地图选择 */
|
|
function getMapInfo() {
|
|
mapRef.value.showDlg(form.value);
|
|
}
|
|
|
|
/** 初始化页面 */
|
|
function initPage() {
|
|
let roles = userStore.roles;
|
|
let _isAdmin = roles.some(item => item.includes("admin") || item.includes("gsAdmin"));
|
|
isAdmin.value = _isAdmin;
|
|
}
|
|
|
|
initPage();
|
|
getList();
|
|
getDeptTree();
|
|
</script>
|
|
<style lang="scss">
|
|
.project-info-edit-dlg {
|
|
.prj-dept-item {
|
|
margin-bottom: 10px;
|
|
|
|
.dept-item-header {
|
|
display: flex;
|
|
color: #2196F3;
|
|
align-items: center;
|
|
line-height: 30px;
|
|
|
|
.sp-header {
|
|
display: inline-block;
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
|
|
.el-form-item {
|
|
margin-bottom: 8px !important;
|
|
}
|
|
|
|
.el-input {
|
|
display: inline-block;
|
|
width: auto;
|
|
}
|
|
|
|
.sp-label {
|
|
font-size: 12px;
|
|
color: #888;
|
|
|
|
&::after {
|
|
content: ":";
|
|
}
|
|
}
|
|
}
|
|
|
|
.el-tab-pane.pan-setting {
|
|
.el-form-item {
|
|
flex-flow: column;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.up-img {
|
|
&.no-up {
|
|
.el-upload__tip {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.up-video {
|
|
&.no-up {
|
|
.el-upload__tip {
|
|
display: none;
|
|
}
|
|
|
|
.upload-file-uploader {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
</style> |