Browse Source

公式配置

hejizheng 1 năm trước cách đây
mục cha
commit
4f478c8d7d

+ 53 - 0
src/api/norm/CONTRAST.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询对比模型公式列表
+export function listCONTRAST(query) {
+  return request({
+    url: '/contrast/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询对比模型公式所有列表
+export function listAllCONTRAST(query) {
+  return request({
+    url: '/contrast/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询对比模型公式详细
+export function getCONTRAST(id) {
+  return request({
+    url: '/contrast/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增对比模型公式
+export function addCONTRAST(data) {
+  return request({
+    url: '/contrast/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改对比模型公式
+export function updateCONTRAST(data) {
+  return request({
+    url: '/contrast/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除对比模型公式
+export function delCONTRAST(id) {
+  return request({
+    url: '/contrast/remove/' + id,
+    method: 'get'
+  })
+}

+ 53 - 0
src/api/norm/CONTRASTCONFIG.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询对比模型参数配置列表
+export function listCONTRASTCONFIG(query) {
+  return request({
+    url: '/contrastConfig/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询对比模型参数配置所有列表
+export function listAllCONTRASTCONFIG(query) {
+  return request({
+    url: '/contrastConfig/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询对比模型参数配置详细
+export function getCONTRASTCONFIG(id) {
+  return request({
+    url: '/contrastConfig/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增对比模型参数配置
+export function addCONTRASTCONFIG(data) {
+  return request({
+    url: '/contrastConfig/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改对比模型参数配置
+export function updateCONTRASTCONFIG(data) {
+  return request({
+    url: '/contrastConfig/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除对比模型参数配置
+export function delCONTRASTCONFIG(id) {
+  return request({
+    url: '/contrastConfig/remove/' + id,
+    method: 'get'
+  })
+}

+ 299 - 0
src/views/norm/contrast.vue

@@ -0,0 +1,299 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <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="['modlue:CONTRAST: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="['modlue:CONTRAST: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="['modlue:CONTRAST: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="['modlue:CONTRAST:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="CONTRASTList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="${comment}" align="center" prop="id"/>
+      <el-table-column label="${comment}" align="center" prop="createTime"/>
+      <el-table-column label="${comment}" align="center" prop="createBy"/>
+      <el-table-column label="${comment}" align="center" prop="updateTime"/>
+      <el-table-column label="${comment}" align="center" prop="updateBy"/>
+      <el-table-column label="${comment}" align="center" prop="delFlag"/>
+      <el-table-column label="${comment}" align="center" prop="deptId"/>
+      <el-table-column label="${comment}" align="center" prop="source1"/>
+      <el-table-column label="${comment}" align="center" prop="configValue1"/>
+      <el-table-column label="${comment}" align="center" prop="source2"/>
+      <el-table-column label="${comment}" align="center" prop="configValue2"/>
+      <el-table-column label="${comment}" align="center" prop="tageFlag"/>
+      <el-table-column label="${comment}" align="center" prop="result"/>
+      <el-table-column label="${comment}" align="center" prop="remark"/>
+      <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="['modlue:CONTRAST:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['modlue:CONTRAST: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>
+      <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 { listCONTRAST, getCONTRAST, delCONTRAST, addCONTRAST, updateCONTRAST } from "@/api/norm/CONTRAST";
+
+export default {
+  name: "CONTRAST",
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 对比模型公式表格数据
+      CONTRASTList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null,
+        delFlag: null,
+        deptId: null,
+        source1: null,
+        configValue1: null,
+        source2: null,
+        configValue2: null,
+        tageFlag: null,
+        result: null,
+        remark: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        delFlag: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        deptId: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        source1: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        configValue1: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        source2: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        configValue2: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        tageFlag: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        result: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        remark: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询对比模型公式列表 */
+    getList() {
+      this.loading = true;
+      listCONTRAST(this.queryParams).then(response => {
+        this.CONTRASTList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        delFlag: null,
+        deptId: null,
+        source1: null,
+        configValue1: null,
+        source2: null,
+        configValue2: null,
+        tageFlag: null,
+        result: null,
+        remark: 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
+      getCONTRAST(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) {
+            updateCONTRAST(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addCONTRAST(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 delCONTRAST(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('modlue/CONTRAST/export', {
+        ...this.queryParams
+      }, `CONTRAST_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 275 - 0
src/views/norm/contrastConfig.vue

@@ -0,0 +1,275 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <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="['modlue:CONTRASTCONFIG: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="['modlue:CONTRASTCONFIG: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="['modlue:CONTRASTCONFIG: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="['modlue:CONTRASTCONFIG:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="CONTRASTCONFIGList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="${comment}" align="center" prop="id"/>
+      <el-table-column label="${comment}" align="center" prop="createTime"/>
+      <el-table-column label="${comment}" align="center" prop="createBy"/>
+      <el-table-column label="${comment}" align="center" prop="updateTime"/>
+      <el-table-column label="${comment}" align="center" prop="updateBy"/>
+      <el-table-column label="${comment}" align="center" prop="delFlag"/>
+      <el-table-column label="${comment}" align="center" prop="deptId"/>
+      <el-table-column label="${comment}" align="center" prop="name"/>
+      <el-table-column label="${comment}" align="center" prop="code"/>
+      <el-table-column label="${comment}" align="center" prop="value"/>
+      <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="['modlue:CONTRASTCONFIG:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['modlue:CONTRASTCONFIG: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>
+      <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 { listCONTRASTCONFIG, getCONTRASTCONFIG, delCONTRASTCONFIG, addCONTRASTCONFIG, updateCONTRASTCONFIG } from "@/api/norm/CONTRASTCONFIG";
+
+export default {
+  name: "CONTRASTCONFIG",
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 对比模型参数配置表格数据
+      CONTRASTCONFIGList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null,
+        delFlag: null,
+        deptId: null,
+        name: null,
+        code: null,
+        value: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        delFlag: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        deptId: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        name: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        code: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ],
+        value: [
+          { required: true, message: "$comment不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询对比模型参数配置列表 */
+    getList() {
+      this.loading = true;
+      listCONTRASTCONFIG(this.queryParams).then(response => {
+        this.CONTRASTCONFIGList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        delFlag: null,
+        deptId: null,
+        name: null,
+        code: null,
+        value: 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
+      getCONTRASTCONFIG(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) {
+            updateCONTRASTCONFIG(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addCONTRASTCONFIG(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 delCONTRASTCONFIG(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('modlue/CONTRASTCONFIG/export', {
+        ...this.queryParams
+      }, `CONTRASTCONFIG_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 3 - 2
src/views/norm/index.vue

@@ -16,7 +16,7 @@
           filterable
         >
           <el-option
-            v-for="dict in dict.type.dictType"
+            v-for="dict in statusArr"
             :key="dict.value"
             :label="dict.label"
             :value="dict.value"
@@ -151,7 +151,7 @@
         <el-form-item label="状态(1启用,0不启用)">
           <el-radio-group v-model="form.status">
             <el-radio
-              v-for="dict in dict.type.dictType"
+              v-for="dict in statusArr"
               :key="dict.value"
               :label="dict.value"
               >{{ dict.label }}</el-radio
@@ -242,6 +242,7 @@ export default {
         ],
         remark: [{ required: true, message: "备注不能为空", trigger: "blur" }],
       },
+      statusArr:[{value : 0,label:"不启用"},{value : 1,label:"启用"}]
     };
   },
   created() {