|
@@ -0,0 +1,442 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form-item label="计划名称" prop="planName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.planName"
|
|
|
+ placeholder="请输入计划名称"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划开始时间" prop="planStartTime">
|
|
|
+ <el-date-picker clearable size="small"
|
|
|
+ v-model="queryParams.planStartTime"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择计划开始时间">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划结束时间" prop="planEndTime">
|
|
|
+ <el-date-picker clearable size="small"
|
|
|
+ v-model="queryParams.planEndTime"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择计划结束时间">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划简介" prop="planIntroduction">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.planIntroduction"
|
|
|
+ placeholder="请输入计划简介"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="文件路径" prop="filePath">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.filePath"
|
|
|
+ placeholder="请输入文件路径"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="文件名称" prop="fileName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.fileName"
|
|
|
+ placeholder="请输入文件名称"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="创建人" prop="createName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.createName"
|
|
|
+ placeholder="请输入创建人"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="创建人id" prop="createId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.createId"
|
|
|
+ placeholder="请输入创建人id"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="需响应计划数" prop="planNumber">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.planNumber"
|
|
|
+ placeholder="请输入需响应计划数"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="已响应计划数" prop="responseNumber">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.responseNumber"
|
|
|
+ placeholder="请输入已响应计划数"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="单位id" prop="unitId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.unitId"
|
|
|
+ placeholder="请输入单位id"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划状态(0进行中,1已完成,2已审批,3已驳回)" prop="state">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.state"
|
|
|
+ placeholder="请输入计划状态(0进行中,1已完成,2已审批,3已驳回)"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" 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"
|
|
|
+ plain
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleAdd"
|
|
|
+ v-hasPermi="['thought:thoughtPlan:add']"
|
|
|
+ >新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ plain
|
|
|
+ icon="el-icon-edit"
|
|
|
+ size="mini"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate"
|
|
|
+ v-hasPermi="['thought:thoughtPlan:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ plain
|
|
|
+ icon="el-icon-delete"
|
|
|
+ size="mini"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['thought:thoughtPlan:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ :loading="exportLoading"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['thought:thoughtPlan:export']"
|
|
|
+ >导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-table v-loading="loading" :data="thoughtPlanList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="主键id" align="center" prop="id" />
|
|
|
+ <el-table-column label="计划名称" align="center" prop="planName" />
|
|
|
+ <el-table-column label="计划开始时间" align="center" prop="planStartTime" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.planStartTime, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="计划结束时间" align="center" prop="planEndTime" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.planEndTime, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="计划简介" align="center" prop="planIntroduction" />
|
|
|
+ <el-table-column label="文件路径" align="center" prop="filePath" />
|
|
|
+ <el-table-column label="文件名称" align="center" prop="fileName" />
|
|
|
+ <el-table-column label="创建人" align="center" prop="createName" />
|
|
|
+ <el-table-column label="创建人id" align="center" prop="createId" />
|
|
|
+ <el-table-column label="备注" align="center" prop="remark" />
|
|
|
+ <el-table-column label="需响应计划数" align="center" prop="planNumber" />
|
|
|
+ <el-table-column label="已响应计划数" align="center" prop="responseNumber" />
|
|
|
+ <el-table-column label="单位id" align="center" prop="unitId" />
|
|
|
+ <el-table-column label="计划状态(0进行中,1已完成,2已审批,3已驳回)" align="center" prop="state" />
|
|
|
+ <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="['thought:thoughtPlan:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['thought:thoughtPlan: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="500px" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="计划名称" prop="planName">
|
|
|
+ <el-input v-model="form.planName" placeholder="请输入计划名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划开始时间" prop="planStartTime">
|
|
|
+ <el-date-picker clearable size="small"
|
|
|
+ v-model="form.planStartTime"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择计划开始时间">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划结束时间" prop="planEndTime">
|
|
|
+ <el-date-picker clearable size="small"
|
|
|
+ v-model="form.planEndTime"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择计划结束时间">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划简介" prop="planIntroduction">
|
|
|
+ <el-input v-model="form.planIntroduction" placeholder="请输入计划简介" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="文件路径" prop="filePath">
|
|
|
+ <el-input v-model="form.filePath" placeholder="请输入文件路径" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="文件名称" prop="fileName">
|
|
|
+ <el-input v-model="form.fileName" placeholder="请输入文件名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="创建人" prop="createName">
|
|
|
+ <el-input v-model="form.createName" placeholder="请输入创建人" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="创建人id" prop="createId">
|
|
|
+ <el-input v-model="form.createId" placeholder="请输入创建人id" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
+ <el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="需响应计划数" prop="planNumber">
|
|
|
+ <el-input v-model="form.planNumber" placeholder="请输入需响应计划数" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="已响应计划数" prop="responseNumber">
|
|
|
+ <el-input v-model="form.responseNumber" placeholder="请输入已响应计划数" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="单位id" prop="unitId">
|
|
|
+ <el-input v-model="form.unitId" placeholder="请输入单位id" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="计划状态(0进行中,1已完成,2已审批,3已驳回)" prop="state">
|
|
|
+ <el-input v-model="form.state" placeholder="请输入计划状态(0进行中,1已完成,2已审批,3已驳回)" />
|
|
|
+ </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 { listThoughtPlan, getThoughtPlan, delThoughtPlan, addThoughtPlan, updateThoughtPlan, exportThoughtPlan } from "@/api/thought/thoughtPlan";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "ThoughtPlan",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 导出遮罩层
|
|
|
+ exportLoading: false,
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // 月教育计划表格数据
|
|
|
+ thoughtPlanList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ planName: null,
|
|
|
+ planStartTime: null,
|
|
|
+ planEndTime: null,
|
|
|
+ planIntroduction: null,
|
|
|
+ filePath: null,
|
|
|
+ fileName: null,
|
|
|
+ createName: null,
|
|
|
+ createId: null,
|
|
|
+ planNumber: null,
|
|
|
+ responseNumber: null,
|
|
|
+ unitId: null,
|
|
|
+ state: null
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 查询月教育计划列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listThoughtPlan(this.queryParams).then(response => {
|
|
|
+ this.thoughtPlanList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: null,
|
|
|
+ planName: null,
|
|
|
+ planStartTime: null,
|
|
|
+ planEndTime: null,
|
|
|
+ planIntroduction: null,
|
|
|
+ filePath: null,
|
|
|
+ fileName: null,
|
|
|
+ createTime: null,
|
|
|
+ updateTime: null,
|
|
|
+ createName: null,
|
|
|
+ createId: null,
|
|
|
+ remark: null,
|
|
|
+ planNumber: null,
|
|
|
+ responseNumber: null,
|
|
|
+ unitId: null,
|
|
|
+ state: 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
|
|
|
+ getThoughtPlan(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) {
|
|
|
+ updateThoughtPlan(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ addThoughtPlan(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 delThoughtPlan(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ }).catch(() => {});
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ const queryParams = this.queryParams;
|
|
|
+ this.$modal.confirm('是否确认导出所有月教育计划数据项?').then(() => {
|
|
|
+ this.exportLoading = true;
|
|
|
+ return exportThoughtPlan(queryParams);
|
|
|
+ }).then(response => {
|
|
|
+ this.$download.name(response.msg);
|
|
|
+ this.exportLoading = false;
|
|
|
+ }).catch(() => {});
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|