Browse Source

完善建设进度模块

master
xzt 1 month ago
parent
commit
49e7598a43
  1. 10
      jwtech-admin-page/src/views/building/projectInfo/buildProgressWarning/index.vue
  2. 855
      jwtech-admin-page/src/views/building/projectInfo/buildProgressWarning/list.vue
  3. 631
      jwtech-admin-page/src/views/building/projectInfo/buildProgressWarning/progress.vue

10
jwtech-admin-page/src/views/building/projectInfo/buildProgressWarning/index.vue

@ -181,6 +181,14 @@
v-hasPermi="['build:xmgcgl:edit']" v-hasPermi="['build:xmgcgl:edit']"
>查看预警</el-button >查看预警</el-button
> >
<el-button
size="mini"
type="text"
icon="el-icon-view"
@click="handleToList('3', scope.row)"
v-hasPermi="['build:xmgcgl:edit']"
>建设进度</el-button
>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -2273,7 +2281,7 @@ export default {
handleToList (tabNum, row) { handleToList (tabNum, row) {
this.$router.push({ this.$router.push({
// path: "/project/special/options", // path: "/project/special/options",
path: "/building/project-regular-list", path: "/building/build/buildProgressWarning-list",
query: { query: {
baseDataId: row.id, baseDataId: row.id,
proNo: row.proNo, proNo: row.proNo,

855
jwtech-admin-page/src/views/building/projectInfo/buildProgressWarning/list.vue

@ -1,423 +1,270 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch"> <div style="font-size: 24px;margin-bottom: 16px;">{{ formData.projectName }}</div>
<el-form-item label="所属项目" prop="projectName">
<el-input <el-tabs v-model="activeName" style="margin-bottom: 20px">
v-model="queryParams.data.projectName" <el-tab-pane
placeholder="请输入所属项目" label="设置规则"
clearable name="regular"
size="small" >
@keyup.enter.native="handleQuery" <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
> <el-form-item label="所属项目" prop="projectName">
<el-button <el-input
type="primary" v-model="queryParams.data.projectName"
slot="append" placeholder="请输入所属项目"
icon="el-icon-search" clearable
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="项目编码" prop="proCode">
<el-input
v-model="queryParams.data.proCode"
placeholder="请输入项目编码"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="项目编号" prop="proNo">
<el-input
v-model="queryParams.data.proNo"
placeholder="请输入项目编号"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="进度要求" prop="scheduleReq">
<el-input
v-model="queryParams.data.scheduleReq"
placeholder="请输入进度要求"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="执行情况" prop="execEnv">
<el-input
v-model="queryParams.data.execEnv"
placeholder="请输入执行情况"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="填写日期" prop="reportDate">
<el-date-picker clearable size="small" style="width: 200px"
v-model="queryParams.reportDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择填写日期">
</el-date-picker>
</el-form-item>
<el-form-item label="填报人" prop="reportPerson">
<el-input
v-model="queryParams.data.reportPerson"
placeholder="请输入填报人"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="联系人" prop="telLink">
<el-input
v-model="queryParams.data.telLink"
placeholder="请输入联系人"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="附件" prop="attachment">
<el-input
v-model="queryParams.data.attachment"
placeholder="请输入附件"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="审核人" prop="applyPerson">
<el-input
v-model="queryParams.data.applyPerson"
placeholder="请输入审核人"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="审核日期" prop="applyDate">
<el-date-picker clearable size="small" style="width: 200px"
v-model="queryParams.applyDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择审核日期">
</el-date-picker>
</el-form-item>
<el-form-item label="审核意见" prop="applyOpinion">
<el-input
v-model="queryParams.data.applyOpinion"
placeholder="请输入审核意见"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item label="审核状态" prop="status">
<el-select v-model="queryParams.data.status" placeholder="请选择审核状态" clearable size="small">
<el-option label="请选择字典生成" value="" />
</el-select>
</el-form-item>
<el-form-item label="创建人" prop="createUid">
<el-input
v-model="queryParams.data.createUid"
placeholder="请输入创建人"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small" size="small"
@click="handleQuery" @keyup.enter.native="handleQuery"
></el-button> >
</el-input> <el-button
</el-form-item> type="primary"
<el-form-item label="创建时间" prop="createTime"> slot="append"
<el-date-picker clearable size="small" style="width: 200px" icon="el-icon-search"
v-model="queryParams.createTime" size="small"
type="date" @click="handleQuery"
value-format="yyyy-MM-dd" ></el-button>
placeholder="选择创建时间"> </el-input>
</el-date-picker> </el-form-item>
</el-form-item> <el-form-item>
<el-form-item label="更新人" prop="updateUid"> <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-input <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
v-model="queryParams.data.updateUid" </el-form-item>
placeholder="请输入更新人" </el-form>
clearable
size="small" <el-row :gutter="10" class="mb8">
@keyup.enter.native="handleQuery" <el-col :span="1.5">
> <el-button
<el-button
type="primary" type="primary"
slot="append" icon="el-icon-plus"
icon="el-icon-search" size="mini"
size="small" @click="handleAdd"
@click="handleQuery" v-hasPermi="['build:warningRule:add']"
></el-button> >新增</el-button>
</el-input> </el-col>
</el-form-item> <el-col :span="1.5">
<el-form-item label="更新时间" prop="updateTime"> <el-button
<el-date-picker clearable size="small" style="width: 200px" type="success"
v-model="queryParams.updateTime" icon="el-icon-edit"
type="date" size="mini"
value-format="yyyy-MM-dd" :disabled="single"
placeholder="选择更新时间"> @click="handleUpdate"
</el-date-picker> v-hasPermi="['build:warningRule:edit']"
</el-form-item> >修改</el-button>
<el-form-item> </el-col>
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> <el-col :span="1.5">
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> <el-button
</el-form-item> type="danger"
</el-form> icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['build:warningRule:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['build:warningRule:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-row :gutter="10" class="mb8"> <el-table v-loading="loading" :data="warningRuleList" @selection-change="handleSelectionChange">
<el-col :span="1.5"> <el-table-column type="selection" width="55" align="center" fixed/>
<el-button <el-table-column label="序号" type="index" width="50" align="center" fixed/>
type="primary"
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['build:buildProgressWarning:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['build:buildProgressWarning:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['build:buildProgressWarning:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['build:buildProgressWarning:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="buildProgressWarningList" @selection-change="handleSelectionChange"> <el-table-column label="所属项目" align="center" prop="projectName" min-width="120">
<el-table-column type="selection" width="55" align="center" fixed/> <template slot-scope="scope">
<el-table-column label="序号" type="index" width="50" align="center" fixed/> {{ formData.projectName }}
</template>
</el-table-column>
<el-table-column label="项目编码" align="center" prop="proCode" min-width="120">
<template slot-scope="scope">
{{ formData.proCode }}
</template>
</el-table-column>
<el-table-column label="项目编号" align="center" prop="proNo" min-width="120">
<template slot-scope="scope">
{{ formData.proNo }}
</template>
</el-table-column>
<el-table-column label="进度要求" align="center" prop="scheduleReq" min-width="120"/>
<el-table-column label="时间节点" align="center" prop="dateNode" min-width="120"/>
<el-table-column label="年度" align="center" prop="conYear" :formatter="yearFormat" min-width="120"/>
<el-table-column label="约束条件" align="center" prop="conRule" :formatter="constraintFormat" min-width="120"/>
<el-table-column label="预警描述" align="center" prop="ruleMsg" min-width="120"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['build:warningRule:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['build:warningRule:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</el-tab-pane>
<el-tab-pane
label="查看预警"
name="warning"
>
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
<el-form-item label="所属项目" prop="projectName">
<el-input
v-model="queryParams.data.projectName"
placeholder="请输入所属项目"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<!-- <el-form-item label="状态" prop="status">
<el-select v-model="queryParams.data.status" placeholder="请选择状态" clearable size="small">
<el-option label="请选择字典生成" value="" />
</el-select>
</el-form-item> -->
<el-form-item>
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-table-column label="所属项目" align="center" prop="projectName" min-width="120"/> <el-table v-loading="loading" :data="warningRuleList" @selection-change="handleSelectionChange">
<el-table-column label="项目编码" align="center" prop="proCode" min-width="120"/> <el-table-column type="selection" width="55" align="center" fixed/>
<el-table-column label="项目编号" align="center" prop="proNo" min-width="120"/> <el-table-column label="序号" type="index" width="50" align="center" fixed/>
<el-table-column label="进度要求" align="center" prop="scheduleReq" min-width="120"/>
<el-table-column label="执行情况" align="center" prop="execEnv" min-width="120"/>
<el-table-column label="填写日期" align="center" prop="reportDate" min-width="120">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.reportDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="填报人" align="center" prop="reportPerson" min-width="120"/>
<el-table-column label="联系人" align="center" prop="telLink" min-width="120"/>
<el-table-column label="附件" align="center" prop="attachment" min-width="120"/>
<el-table-column label="审核人" align="center" prop="applyPerson" min-width="120"/>
<el-table-column label="审核日期" align="center" prop="applyDate" min-width="120">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.applyDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="审核意见" align="center" prop="applyOpinion" min-width="120"/>
<el-table-column label="审核状态" align="center" prop="status" min-width="120"/>
<el-table-column label="创建人" align="center" prop="createUid" min-width="120"/>
<el-table-column label="创建时间" align="center" prop="createTime" min-width="120">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="更新人" align="center" prop="updateUid" min-width="120"/>
<el-table-column label="更新时间" align="center" prop="updateTime" min-width="120">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" min-width="120"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['build:buildProgressWarning:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['build:buildProgressWarning:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination <el-table-column label="所属项目" align="center" prop="projectName" min-width="120">
v-show="total>0" <template slot-scope="scope">
:total="total" {{ formData.projectName }}
:page.sync="queryParams.pageNum" </template>
:limit.sync="queryParams.pageSize" </el-table-column>
@pagination="getList" <el-table-column label="项目编码" align="center" prop="proCode" min-width="120">
/> <template slot-scope="scope">
{{ formData.proCode }}
</template>
</el-table-column>
<el-table-column label="项目编号" align="center" prop="proNo" min-width="120">
<template slot-scope="scope">
{{ formData.proNo }}
</template>
</el-table-column>
<el-table-column label="进度要求" align="center" prop="scheduleReq" min-width="120"/>
<el-table-column label="时间节点" align="center" prop="dateNode" min-width="120"/>
<el-table-column label="年度" align="center" prop="conYear" :formatter="yearFormat" min-width="120"/>
<el-table-column label="约束条件" align="center" prop="conRule" :formatter="constraintFormat" min-width="120"/>
<el-table-column label="预警描述" align="center" prop="ruleMsg" min-width="120"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['build:warningRule:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['build:warningRule:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</el-tab-pane>
<el-tab-pane
label="建设进度"
name="build"
>
<build-proccess :projectInfo="formData" />
</el-tab-pane>
</el-tabs>
<!-- 添加或修改建设进度预警对话框 --> <!-- 添加或修改进度填报预警管理对话框 -->
<el-dialog :title="title" :visible.sync="open" width="1200px" append-to-body :close-on-click-modal="false"> <el-dialog :title="title" :visible.sync="open" width="650px" append-to-body :close-on-click-modal="false">
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> <el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="所属项目" prop="projectName">
<el-input v-model="form.projectName" placeholder="请输入所属项目" />
</el-form-item>
<el-form-item label="项目编码" prop="proCode">
<el-input v-model="form.proCode" placeholder="请输入项目编码" />
</el-form-item>
<el-form-item label="项目编号" prop="proNo">
<el-input v-model="form.proNo" placeholder="请输入项目编号" />
</el-form-item>
<el-form-item label="进度要求" prop="scheduleReq"> <el-form-item label="进度要求" prop="scheduleReq">
<el-input v-model="form.scheduleReq" placeholder="请输入进度要求" /> <el-input v-model="form.scheduleReq" placeholder="请输入进度要求" />
</el-form-item> </el-form-item>
<el-form-item label="执行情况" prop="execEnv"> <el-form-item label="时间节点" prop="dateNode">
<el-input v-model="form.execEnv" placeholder="请输入执行情况" /> <el-date-picker
</el-form-item> v-model="form.dateNode"
<el-form-item label="填写日期" prop="reportDate">
<el-date-picker clearable size="small" style="width: 100%"
v-model="form.reportDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择填写日期">
</el-date-picker>
</el-form-item>
<el-form-item label="填报人" prop="reportPerson">
<el-input v-model="form.reportPerson" placeholder="请输入填报人" />
</el-form-item>
<el-form-item label="联系人" prop="telLink">
<el-input v-model="form.telLink" placeholder="请输入联系人" />
</el-form-item>
<el-form-item label="附件" prop="attachment">
<el-input v-model="form.attachment" placeholder="请输入附件" />
</el-form-item>
<el-form-item label="审核人" prop="applyPerson">
<el-input v-model="form.applyPerson" placeholder="请输入审核人" />
</el-form-item>
<el-form-item label="审核日期" prop="applyDate">
<el-date-picker clearable size="small" style="width: 100%"
v-model="form.applyDate"
type="date" type="date"
style="width: 100%;"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
placeholder="选择审核日期"> placeholder="选择日期">
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
<el-form-item label="审核意见" prop="applyOpinion"> <el-form-item label="年度" prop="conYear">
<el-input v-model="form.applyOpinion" placeholder="请输入审核意见" /> <el-select
</el-form-item> v-model="form.conYear"
<el-form-item label="审核状态"> placeholder="请选择年度"
<el-radio-group v-model="form.status"> clearable
<el-radio label="1">请选择字典生成</el-radio> style="width: 100%;"
</el-radio-group> >
</el-form-item> <el-option
<el-form-item label="创建人" prop="createUid"> v-for="dict in yearOptions"
<el-input v-model="form.createUid" placeholder="请输入创建人" /> :key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item> </el-form-item>
<el-form-item label="更新人" prop="updateUid"> <el-form-item label="约束条件" prop="conRule">
<el-input v-model="form.updateUid" placeholder="请输入更新人" /> <el-select
v-model="form.conRule"
placeholder="请选择约束条件"
clearable
style="width: 100%;"
>
<el-option
v-for="dict in constraintOption"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item> </el-form-item>
<el-form-item label="备注" prop="remark"> <el-form-item label="预警描述" prop="ruleMsg">
<el-input v-model="form.remark" placeholder="请输入备注" /> <el-input type="textarea" :rows="5" v-model="form.ruleMsg" placeholder="请输入预警描述" />
</el-form-item> </el-form-item>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
@ -429,10 +276,19 @@
</template> </template>
<script> <script>
import { listBuildProgressWarning, getBuildProgressWarning, delBuildProgressWarning, addBuildProgressWarning, updateBuildProgressWarning, exportBuildProgressWarning } from "@/api/build/buildProgressWarning"; import { listWarningRule, getWarningRule, delWarningRule, addWarningRule, updateWarningRule, exportWarningRule } from "@/api/build/warningRule";
import {
listInfo,
getInfo,
delInfo,
addInfo,
updateInfo,
exportInfo,
} from "@/api/build/projectInfo";
import BuildProccess from './progress.vue'
export default { export default {
name: "BuildProgressWarning", name: "WarningRule",
components: { BuildProccess },
data() { data() {
return { return {
// //
@ -447,8 +303,8 @@ export default {
showSearch: true, showSearch: true,
// //
total: 0, total: 0,
// //
buildProgressWarningList: [], warningRuleList: [],
// //
title: "", title: "",
// //
@ -459,52 +315,142 @@ export default {
pageSize: 10, pageSize: 10,
ids:null, ids:null,
data:{ data:{
projectName: null, projectName: null,
proCode: null, proCode: null,
proNo: null, proNo: null,
scheduleReq: null, scheduleReq: null,
execEnv: null, dateNode: null,
reportDate: null, conYear: null,
reportPerson: null, conRule: null,
telLink: null, ruleMsg: null,
attachment: null, createUid: null,
applyPerson: null, createTime: null,
applyDate: null, updateUid: null,
applyOpinion: null, updateTime: null,
status: null, status: null
createUid: null, },
createTime: null,
updateUid: null,
updateTime: null,
},
// //
params: { params: {
// //
orderBy: "create_time", orderBy: "create_time",
// descasc // descasc
sortBy: "desc", sortBy: "desc",
}, },
}, },
// //
form: {}, form: {},
// //
rules: { rules: {
scheduleReq: [
{
required: true,
message: "请输入进度要求",
trigger: "blur",
},
],
dateNode: [
{
required: true,
message: "请输入时间节点",
trigger: "change",
},
],
conYear: [
{
required: true,
message: "请输入年度",
trigger: "change",
},
],
conRule: [
{
required: true,
message: "请输入约束条件",
trigger: "change",
},
],
ruleMsg: [
{
required: true,
message: "请输入预警描述",
trigger: "blur",
},
],
},
activeName: 'regular',
formData: {},
yearOptions: [],
constraintOption: []
}
},
watch: {
activeName(newVal) {
if (newVal === 'warning') {
this.queryParams.data.status = 1
} else {
this.queryParams.data.status = null
} }
}; this.getList()
}
}, },
created() { created() {
this.getDictList()
this.queryParams.data.proNo = this.$route.query.proNo
this.handleJudgeTab()
this.getProjectInfo()
this.getList(); this.getList();
}, },
methods: { methods: {
/** 查询建设进度预警列表 */ //
getProjectInfo() {
getInfo(this.$route.query.baseDataId).then((response) => {
this.formData = response.data;
console.log(this.formData)
// console.log(999, this.formData);
// listBidInfo(this.queryParams).then((response) => {
// console.log(response);
// // this.formData = response.records[0];
// });
});
},
/** 查询进度填报预警管理列表 */
getList() { getList() {
this.loading = true; this.loading = true;
listBuildProgressWarning(this.queryParams).then(response => { listWarningRule(this.queryParams).then(response => {
this.buildProgressWarningList = response.records; this.warningRuleList = response.records;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
}); });
}, },
//
getDictList() {
this.getDicts("sl_year").then((response) => {
this.yearOptions = response.data;
})
this.getDicts("sl_constraint").then((response) => {
this.constraintOption = response.data;
})
},
//
yearFormat(row, column) {
return this.selectDictLabel(this.yearOptions, row.conYear);
},
//
constraintFormat(row, column) {
return this.selectDictLabel(this.constraintOption, row.conRule);
},
handleJudgeTab() {
let tabNum = this.$route.query.tabNum
if (tabNum === '1') {
this.queryParams.data.status = null
this.activeName = 'regular'
} else if (tabNum === '2') {
this.queryParams.data.status = 1
this.activeName = 'warning'
} else {
this.activeName = 'build'
}
},
// //
cancel() { cancel() {
this.open = false; this.open = false;
@ -518,20 +464,16 @@ export default {
proCode: null, proCode: null,
proNo: null, proNo: null,
scheduleReq: null, scheduleReq: null,
execEnv: null, dateNode: null,
reportDate: null, conYear: null,
reportPerson: null, conRule: null,
telLink: null, ruleMsg: null,
attachment: null,
applyPerson: null,
applyDate: null,
applyOpinion: null,
status: "0",
createUid: null, createUid: null,
createTime: null, createTime: null,
updateUid: null, updateUid: null,
updateTime: null, updateTime: null,
remark: null remark: null,
status: null
}; };
this.resetForm("form"); this.resetForm("form");
}, },
@ -546,20 +488,16 @@ export default {
proCode: null, proCode: null,
proNo: null, proNo: null,
scheduleReq: null, scheduleReq: null,
execEnv: null, dateNode: null,
reportDate: null, conYear: null,
reportPerson: null, conRule: null,
telLink: null, ruleMsg: null,
attachment: null,
applyPerson: null,
applyDate: null,
applyOpinion: null,
status: "0",
createUid: null, createUid: null,
createTime: null, createTime: null,
updateUid: null, updateUid: null,
updateTime: null, updateTime: null,
remark: null remark: null,
status: "0"
}, },
// //
params: { params: {
@ -591,16 +529,16 @@ export default {
handleAdd() { handleAdd() {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = "添加建设进度预警"; this.title = "添加进度填报预警管理";
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.reset(); this.reset();
const id = row.id || this.ids const id = row.id || this.ids
getBuildProgressWarning(id).then(response => { getWarningRule(id).then(response => {
this.form = response.data; this.form = response.data;
this.open = true; this.open = true;
this.title = "修改建设进度预警"; this.title = "修改进度填报预警管理";
}); });
}, },
/** 提交按钮 */ /** 提交按钮 */
@ -608,7 +546,7 @@ export default {
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {
if (valid) { if (valid) {
if (this.form.id != null) { if (this.form.id != null) {
updateBuildProgressWarning(this.form).then(response => { updateWarningRule(this.form).then(response => {
if (response.code === 200) { if (response.code === 200) {
this.msgSuccess("修改成功"); this.msgSuccess("修改成功");
this.open = false; this.open = false;
@ -616,7 +554,10 @@ export default {
} }
}); });
} else { } else {
addBuildProgressWarning(this.form).then(response => { this.form.projectName = this.formData.projectName
this.form.proCode = this.formData.proCode
this.form.proNo = this.formData.proNo
addWarningRule(this.form).then(response => {
if (response.code === 200) { if (response.code === 200) {
this.msgSuccess("新增成功"); this.msgSuccess("新增成功");
this.open = false; this.open = false;
@ -636,7 +577,7 @@ export default {
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
}).then(function() { }).then(function() {
return delBuildProgressWarning(ids); return delWarningRule(ids);
}).then(() => { }).then(() => {
this.getList(); this.getList();
this.msgSuccess("删除成功"); this.msgSuccess("删除成功");
@ -659,7 +600,7 @@ export default {
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
}).then(function() { }).then(function() {
return exportBuildProgressWarning(queryParams); return exportWarningRule(queryParams);
}).then(response => { }).then(response => {
this.downloadFile(response, true, response.msg); this.downloadFile(response, true, response.msg);
// this.download(response.msg); // this.download(response.msg);

631
jwtech-admin-page/src/views/building/projectInfo/buildProgressWarning/progress.vue

@ -0,0 +1,631 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
<el-form-item label="进度要求" prop="scheduleReq">
<el-input
v-model="queryParams.data.scheduleReq"
placeholder="请输入进度要求"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
</el-form-item>
<el-form-item>
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['build:buildProgressWarning:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['build:buildProgressWarning:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['build:buildProgressWarning:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['build:buildProgressWarning:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="buildProgressWarningList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" fixed/>
<el-table-column label="序号" type="index" width="50" align="center" fixed/>
<el-table-column label="所属项目" align="center" prop="projectName" min-width="120">
<template slot-scope="scope">
{{ projectInfo.projectName }}
</template>
</el-table-column>
<el-table-column label="项目编码" align="center" prop="proCode" min-width="120">
<template slot-scope="scope">
{{ projectInfo.proCode }}
</template>
</el-table-column>
<el-table-column label="项目编号" align="center" prop="proNo" min-width="120">
<template slot-scope="scope">
{{ projectInfo.proNo }}
</template>
</el-table-column>
<el-table-column label="进度要求" align="center" prop="scheduleReq" min-width="120"/>
<el-table-column label="执行情况" align="center" prop="execEnv" min-width="120"/>
<el-table-column label="填写日期" align="center" prop="reportDate" min-width="120">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.reportDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="填报人" align="center" prop="reportPerson" min-width="120"/>
<el-table-column label="联系人" align="center" prop="telLink" min-width="120"/>
<el-table-column label="附件" align="center" prop="attachment" min-width="120">
<template slot-scope="scope">
<div
v-for="(item, index) in JSON.parse(
scope.row.attachment
)"
:key="item + index"
>
<i class="el-icon-document"></i>
{{ item.name }}
<i
class="el-icon-download"
@click="downloadFile1(scope, index)"
style="cursor: pointer"
></i>
</div>
</template>
</el-table-column>
<el-table-column label="审核人" align="center" prop="applyPerson" min-width="120"/>
<el-table-column label="审核日期" align="center" prop="applyDate" min-width="120">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.applyDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="审核意见" align="center" prop="applyOpinion" min-width="120"/>
<el-table-column label="审核状态" align="center" prop="status" :formatter="statusFormat" min-width="120"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['build:buildProgressWarning:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['build:buildProgressWarning:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改建设进度预警对话框 -->
<el-dialog :title="title" :visible.sync="open" width="650px" append-to-body :close-on-click-modal="false">
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="填报人" prop="reportPerson">
<el-input v-model="form.reportPerson" placeholder="请输入填报人" />
</el-form-item>
<el-form-item label="联系人" prop="telLink">
<el-input v-model="form.telLink" placeholder="请输入联系人" />
</el-form-item>
<el-form-item label="执行情况" prop="execEnv">
<el-input v-model="form.execEnv" placeholder="请输入执行情况" />
</el-form-item>
<el-form-item label="填写日期" prop="reportDate">
<el-date-picker clearable size="small" style="width: 100%"
v-model="form.reportDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择填写日期">
</el-date-picker>
</el-form-item>
<el-form-item label="进度要求" prop="scheduleReq">
<el-input type="textarea" :rows="5" v-model="form.scheduleReq" placeholder="请输入进度要求" />
</el-form-item>
<el-form-item label="审核人" prop="applyPerson">
<el-input v-model="form.applyPerson" placeholder="请输入审核人" />
</el-form-item>
<el-form-item label="审核日期" prop="applyDate">
<el-date-picker clearable size="small" style="width: 100%"
v-model="form.applyDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择审核日期">
</el-date-picker>
</el-form-item>
<el-form-item label="审核意见" prop="applyOpinion">
<el-input type="textarea" :rows="5" v-model="form.applyOpinion" placeholder="请输入审核意见" />
</el-form-item>
<el-form-item label="审核状态" prop="status">
<el-select
v-model="form.status"
placeholder="请选择审核状态"
clearable
style="width: 100%;"
>
<el-option
v-for="dict in examineStatusOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="附件" prop="attachment">
<el-upload
class="upload-demo"
action="thinking/common/upload"
:headers="headers"
:before-upload="
(file) => $fileBeforeUpload(file, 'acceptDocumentFileList')
"
:on-preview="handlePreview"
:on-remove="handleRemove"
:before-remove="beforeRemove"
multiple
:on-exceed="handleExceed"
:on-success="submitAcceptDocumentUpload"
:file-list="acceptDocumentFileList"
>
<el-button size="small" type="primary" plain>
<i class="el-icon-upload el-icon--right"></i>
点击上传
</el-button>
<div slot="tip" class="el-upload__tip">
支持jpg/png/pdf/word/excel文件等
</div>
</el-upload>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listBuildProgressWarning, getBuildProgressWarning, delBuildProgressWarning, addBuildProgressWarning, updateBuildProgressWarning, exportBuildProgressWarning } from "@/api/build/buildProgressWarning";
import { getFileStream } from "@/api/system/upload";
import { getToken } from "@/utils/auth";
export default {
name: "BuildProgressWarning",
props: {
projectInfo: {
type: Object,
default: true
},
},
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
buildProgressWarningList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
ids:null,
data:{
projectName: null,
proCode: null,
proNo: null,
scheduleReq: null,
execEnv: null,
reportDate: null,
reportPerson: null,
telLink: null,
attachment: null,
applyPerson: null,
applyDate: null,
applyOpinion: null,
status: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
},
//
params: {
//
orderBy: "create_time",
// descasc
sortBy: "desc",
},
},
//
form: {},
//
rules: {
reportPerson: [
{
required: true,
message: "请输入填报人",
trigger: "blur",
}
],
telLink: [
{
required: true,
message: "请输入联系人",
trigger: "blur",
}
],
execEnv: [
{
required: true,
message: "请输入执行情况",
trigger: "blur",
}
],
reportDate: [
{
required: true,
message: "请选择日期",
trigger: "change",
}
],
scheduleReq: [
{
required: true,
message: "请输入进度要求",
trigger: "blur",
}
],
applyPerson: [
{
required: true,
message: "请输入审核人",
trigger: "blur",
}
],
applyDate: [
{
required: true,
message: "请选择审核日期",
trigger: "change",
}
],
applyOpinion: [
{
required: true,
message: "请输入审核意见",
trigger: "blur",
}
],
status: [
{
required: true,
message: "请选择审核状态",
trigger: "change",
}
],
},
examineStatusOptions: [],
//
headers: {
jianwei: "jwtech " + getToken(),
},
//
acceptDocumentFileList: [],
};
},
created() {
this.queryParams.data.proNo = this.$route.query.proNo
this.getDictList()
this.getList();
},
methods: {
/** 查询建设进度预警列表 */
getList() {
this.loading = true;
listBuildProgressWarning(this.queryParams).then(response => {
this.buildProgressWarningList = response.records;
this.total = response.total;
this.loading = false;
});
},
//
getDictList() {
this.getDicts("examine_status").then((response) => {
this.examineStatusOptions = response.data;
})
},
//
cancel() {
this.open = false;
this.reset();
},
//
statusFormat(row, column) {
return this.selectDictLabel(this.examineStatusOptions, row.status);
},
//
reset() {
this.form = {
id: null,
projectName: null,
proCode: null,
proNo: null,
scheduleReq: null,
execEnv: null,
reportDate: null,
reportPerson: null,
telLink: null,
attachment: null,
applyPerson: null,
applyDate: null,
applyOpinion: null,
status: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
remark: null
};
this.resetForm("form");
},
//
resetQueryForm() {
this.queryParams = {
pageNum: 1,
pageSize: 10,
data:{
id: null,
projectName: null,
proCode: null,
proNo: null,
scheduleReq: null,
execEnv: null,
reportDate: null,
reportPerson: null,
telLink: null,
attachment: null,
applyPerson: null,
applyDate: null,
applyOpinion: null,
status: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
remark: null
},
//
params: {
//
orderBy: "create_time",
// descasc
sortBy: "desc",
},
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetQueryForm();
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
getBuildProgressWarning(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改建设进度预警";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.attachment = JSON.stringify(
this.acceptDocumentFileList
);
if (this.form.id != null) {
updateBuildProgressWarning(this.form).then(response => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}
});
} else {
this.form.projectName = this.projectInfo.projectName
this.form.proCode = this.projectInfo.proCode
this.form.proNo = this.projectInfo.proNo
addBuildProgressWarning(this.form).then(response => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
if(ids){
this.$confirm("是否删除选中的数据?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return delBuildProgressWarning(ids);
}).then(() => {
this.getList();
this.msgSuccess("删除成功");
}).catch(function() {});
}else{
this.$message.warning("请选择要删除的数据!!");
}
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
let message = "是否确认导出所有的数据项?";
if(this.ids){
message = "是否确认导出选中的数据项?";
queryParams.ids = this.ids;
}
this.$confirm(message, "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return exportBuildProgressWarning(queryParams);
}).then(response => {
this.downloadFile(response, true, response.msg);
// this.download(response.msg);
}).catch(function() {});
},
//
downloadFile1(scope, index) {
// console.log(scope);
let file = JSON.parse(scope.row.attachment)[index];
this.handlePreview(file);
},
//
handlePreview(file) {
// console.log(file);
getFileStream({ fileName: file.fileName }).then((res) => {
const blob = new Blob([res], {
// type
// application/xlsx application/zip
type: "application/xlsx",
}); //excel,pdf
const href = URL.createObjectURL(blob); //URLblob
const a = document.createElement("a"); //a
a.style.display = "none";
a.href = href; //
a.download = file.name; //
a.click(); //
URL.revokeObjectURL(a.href); //URL
});
},
handleRemove(file, fileList) {
// console.log(file, fileList);
let index = this.acceptDocumentFileList.findIndex(
(item) => item.uid === file.uid
);
//
this.acceptDocumentFileList.splice(index, 1);
},
beforeRemove(file, fileList) {
return this.$confirm(`确定移除 ${file.name}`);
},
handleExceed(files, fileList) {
this.$message.warning(
`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${
files.length + fileList.length
} 个文件`
);
},
//
submitAcceptDocumentUpload(_, fileList) {
console.log("fileList", fileList);
this.acceptDocumentFileList.push({
name: fileList.name,
fileName: fileList.response.fileName,
url: fileList.response.url,
uid: fileList.uid,
});
},
}
};
</script>
<style lang="scss" scoped>
@import "@/assets/css/dialog.scss";
//::v-deep {
// .el-dialog {
// margin-top: 10vh !important;
// }
//}
</style>
Loading…
Cancel
Save