Browse Source

模版管理

linbl 10 months ago
parent
commit
76bd89cc23
2 changed files with 415 additions and 0 deletions
  1. 68 0
      src/api/report/TEMPLATE.js
  2. 347 0
      src/views/report/TEMPLATE/index.vue

+ 68 - 0
src/api/report/TEMPLATE.js

@@ -0,0 +1,68 @@
+import request from '@/utils/request'
+
+// 查询模板管理列表
+export function listTEMPLATE(query) {
+  return request({
+    url: '/report/TEMPLATE/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询模板管理所有列表
+export function listAllTEMPLATE(query) {
+  return request({
+    url: '/report/TEMPLATE/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询模板管理详细
+export function getTEMPLATE(id) {
+  return request({
+    url: '/report/TEMPLATE/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增模板管理
+export function addTEMPLATE(data) {
+  return request({
+    url: '/report/TEMPLATE/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改模板管理
+export function updateTEMPLATE(data) {
+  return request({
+    url: '/report/TEMPLATE/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除模板管理
+export function delTEMPLATE(id) {
+  return request({
+    url: '/report/TEMPLATE/remove/' + id,
+    method: 'get'
+  })
+}
+
+export function changeTemplateStatus(id, status) {
+  return request({
+    url: '/report/TEMPLATE/changeTemplateStatus',
+    method: 'post',
+    data: { id, status}
+  })
+}
+
+export function queryStatusNum() {
+  return request({
+    url: '/report/TEMPLATE/queryStatusNum',
+    method: 'get'
+  })
+}

+ 347 - 0
src/views/report/TEMPLATE/index.vue

@@ -0,0 +1,347 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="模版名称" prop="title">
+        <el-input
+          v-model="queryParams.title"
+          placeholder="请输入模版名称"
+          clearable
+          style="width: 240px"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="是否启用" prop="status">
+        <el-select v-model="queryParams.status" placeholder="请选择" clearable filterable>
+          <el-option
+            v-for="dict in dict.type.template_disable"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </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="['report:TEMPLATE: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="['report:TEMPLATE: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="['report:TEMPLATE:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['report:TEMPLATE:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="TEMPLATEList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+
+      <el-table-column label="模版名称" align="center" prop="title">
+      </el-table-column>
+      <el-table-column label="模版路径" align="center" prop="filename">
+      </el-table-column>
+      <el-table-column label="是否启用" align="center" prop="status">
+        <template slot-scope="scope">
+          <el-switch
+            v-model="scope.row.status"
+            active-value="1"
+            inactive-value="0"
+            @change="handleStatusChange(scope.row)"
+          ></el-switch>
+        </template>
+      </el-table-column>
+      <el-table-column label="创建时间" align="center" prop="createTime">
+      </el-table-column>
+      <el-table-column label="修改时间" align="center" prop="updateTime">
+      </el-table-column>
+      <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="['report:TEMPLATE:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['report:TEMPLATE: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="600px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="模版名称" prop="title">
+          <el-input v-model="form.title" placeholder="请输入模版名称"/>
+        </el-form-item>
+        <el-form-item label="模版路径" prop="filename">
+          <el-input v-model="form.filename" placeholder="请输入模版路径"/>
+        </el-form-item>
+        <el-form-item label="是否启用">
+          <el-radio-group v-model="form.status">
+            <el-radio
+              v-for="dict in dict.type.template_disable"
+              :key="dict.value"
+              :label="dict.value"
+            >{{dict.label}}</el-radio>
+          </el-radio-group>
+        </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 {getTEMPLATE, listTEMPLATE, addTEMPLATE, updateTEMPLATE, delTEMPLATE, changeTemplateStatus, queryStatusNum} from "@/api/report/TEMPLATE";
+
+  export default {
+  name: "TEMPLATE",
+  dicts: ['template_disable'],
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 模板管理表格数据
+      TEMPLATEList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        title: null,
+        filename: null,
+        status: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        title: [
+          { required: true, message: "模版名称不能为空", trigger: "blur" }
+        ],
+        filename: [
+          { required: true, message: "模版路径不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询模板管理列表 */
+    getList() {
+      this.loading = true;
+      listTEMPLATE(this.queryParams).then(response => {
+        this.TEMPLATEList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        title: null,
+        filename: null,
+        status: "0",
+      };
+      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
+      getTEMPLATE(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改模板管理";
+      });
+    },
+    // 模版状态修改
+    handleStatusChange(row) {
+      queryStatusNum().then(response => {
+        let statusOnNum = response;
+        if(statusOnNum > 0 && row.status === "1") {
+          this.$modal.confirm("当前已有模版为启用状态,请先停用其他模版!").then(() => {
+            row.status = "0";
+          }).catch(function() {
+            row.status = "0";
+          });
+        } else {
+          let text = row.status === "0" ? "停用" : "启用";
+          this.$modal.confirm('确认要"' + text + '""' + row.title + '"吗?').then(function() {
+            return changeTemplateStatus(row.id, row.status);
+          }).then(() => {
+            this.$modal.msgSuccess(text + "成功");
+          }).catch(function() {
+            row.status = row.status === "0" ? "1" : "0";
+          });
+        }
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            queryStatusNum().then(response => {
+              let statusOnNum = response;
+              if(statusOnNum > 0 && this.form.status === "1") {
+                this.$modal.confirm("当前已有模版为启用状态,请先停用其他模版!").then(() => {
+                  this.form.status = "0";
+                }).catch(function() {
+                  this.form.status = "0";
+                });
+              } else {
+                updateTEMPLATE(this.form).then(response => {
+                  this.$modal.msgSuccess("修改成功");
+                  this.open = false;
+                  this.getList();
+                });
+              }
+            });
+          } else {
+            queryStatusNum().then(response => {
+              let statusOnNum = response;
+              if(statusOnNum > 0 && this.form.status === "1") {
+                this.$modal.confirm("当前已有模版为启用状态,请先停用其他模版!").then(() => {
+                  this.form.status = "0";
+                }).catch(function() {
+                  this.form.status = "0";
+                });
+              } else {
+                addTEMPLATE(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 delTEMPLATE(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('report/TEMPLATE/export', {
+        ...this.queryParams
+      }, `TEMPLATE_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>