|
@@ -1,56 +1,39 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
<el-form-item label="是否启用" prop="status">
|
|
|
<el-select v-model="queryParams.status" placeholder="请选择是否启用" clearable filterable>
|
|
|
- <el-option v-for="(item, index) in 2" :key="index" :label="item == 1 ? '启用' : '不启用'"
|
|
|
- :value="item == 1 ? 1 : 0" />
|
|
|
+ <el-option v-for="(item, index) in 2" :key="index" :label="item == 1 ? '启用' : '不启用'" :value="item == 1 ? 1 : 0" />
|
|
|
</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-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-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="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
- v-hasPermi="['business:GIVE:add']">新增</el-button>
|
|
|
+ <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-hasPermi="['business:GIVE: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="['business:GIVE:edit']">修改</el-button>
|
|
|
+ <el-button type="success" icon="el-icon-edit" :disabled="single" @click="handleUpdate" v-hasPermi="['business:GIVE: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="['business:GIVE: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="['business:GIVE:export']">导出</el-button>
|
|
|
+ <el-button type="danger" icon="el-icon-delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['business:GIVE:remove']">删除</el-button>
|
|
|
</el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
<el-table v-loading="loading" :data="GIVEList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="报送参数名称" align="center" prop="fname">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="计量单位" align="center" prop="funit">
|
|
|
-
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="分类占比" align="center" prop="normRatio">
|
|
|
-
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="权数" align="center" prop="fnumber">
|
|
|
-
|
|
|
- </el-table-column>
|
|
|
+ <el-table-column label="报送参数名称" align="center" prop="fname"></el-table-column>
|
|
|
+ <el-table-column label="计量单位" align="center" prop="funit"></el-table-column>
|
|
|
+ <el-table-column label="分类占比" align="center" prop="normRatio"></el-table-column>
|
|
|
+ <el-table-column label="权数" align="center" prop="fnumber"></el-table-column>
|
|
|
<el-table-column label="是否启用" align="center" prop="status">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-switch v-model="scope.row.status" @change="changeSwitchHandler(scope.row)" active-color="#13ce66"
|
|
|
- inactive-color="#ff4949">
|
|
|
- </el-switch>
|
|
|
+ <el-switch v-model="scope.row.status" @change="changeSwitchHandler(scope.row)" active-color="#13ce66" inactive-color="#ff4949"></el-switch>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="启用时间" width="150px" align="center" prop="startTime">
|
|
@@ -72,19 +55,16 @@
|
|
|
<!-- <el-table-column label="明细类型(1=绩效,2=采集)" align="center" prop="type"></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="['business:GIVE:edit']">修改</el-button>
|
|
|
- <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['business:GIVE:remove']">删除</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:GIVE:edit']">修改</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['business:GIVE: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" />
|
|
|
+ <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-dialog :title="title" :visible.sync="open" width="600px" :close-on-click-modal="false" append-to-body>
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
|
|
<el-form-item label="权数" prop="fnumber">
|
|
|
<el-input v-model="form.fnumber" aria-placeholder="请输入数值"></el-input>
|
|
@@ -94,26 +74,29 @@
|
|
|
<el-input v-model="form.normRatio"></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
|
- <el-form-item label="计量单位" prop='funit'>
|
|
|
-
|
|
|
- <el-select v-model="form.funit" @change="(val) => {
|
|
|
- form.funit = val;
|
|
|
- }" placeholder="请选择">
|
|
|
- <el-option v-for="dict in unitSel" :key="dict.dictCode" :label="dict.dictLabel"
|
|
|
- :value="dict.dictValue"></el-option>
|
|
|
+ <el-form-item label="计量单位" prop="funit">
|
|
|
+ <el-select
|
|
|
+ v-model="form.funit"
|
|
|
+ @change="
|
|
|
+ val => {
|
|
|
+ form.funit = val;
|
|
|
+ }
|
|
|
+ "
|
|
|
+ placeholder="请选择"
|
|
|
+ >
|
|
|
+ <el-option v-for="dict in unitSel" :key="dict.dictCode" :label="dict.dictLabel" :value="dict.dictValue"></el-option>
|
|
|
</el-select>
|
|
|
-
|
|
|
</el-form-item>
|
|
|
|
|
|
- <el-form-item label="报送参数名称" prop='fname'>
|
|
|
+ <el-form-item label="报送参数名称" prop="fname">
|
|
|
<el-input v-model="form.fname"></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
|
- <el-form-item label="采集公差上下公差占比" prop='dfRetio'>
|
|
|
+ <el-form-item label="采集公差上下公差占比" prop="dfRetio">
|
|
|
<el-input v-model="form.dfRetio"></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
|
- <el-form-item label="绩效公差上下公差占比" prop='dfRetio'>
|
|
|
+ <el-form-item label="绩效公差上下公差占比" prop="dfRetio">
|
|
|
<el-input v-model="form.msRetio"></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
@@ -124,11 +107,11 @@
|
|
|
</template>
|
|
|
</el-form-item> -->
|
|
|
|
|
|
- <el-form-item label='采集参考值' prop='collValue'>
|
|
|
+ <el-form-item label="采集参考值" prop="collValue">
|
|
|
<el-input v-model="form.collValue"></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
|
- <el-form-item label='绩效参考值' prop='meritsValue'>
|
|
|
+ <el-form-item label="绩效参考值" prop="meritsValue">
|
|
|
<el-input v-model="form.meritsValue"></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
@@ -145,11 +128,11 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { listGIVE, getGIVE, delGIVE, addGIVE, updateGIVE } from "@/api/norm/GIVE";
|
|
|
+import { listGIVE, getGIVE, delGIVE, addGIVE, updateGIVE } from '@/api/norm/GIVE';
|
|
|
import { listData } from '@/api/system/dict/data';
|
|
|
-import { formatDate } from "@/utils/index";
|
|
|
+import { formatDate } from '@/utils/index';
|
|
|
export default {
|
|
|
- name: "GIVE",
|
|
|
+ name: 'GIVE',
|
|
|
data() {
|
|
|
return {
|
|
|
// 根路径
|
|
@@ -169,7 +152,7 @@ export default {
|
|
|
// 报送数据项配置表格数据
|
|
|
GIVEList: [],
|
|
|
// 弹出层标题
|
|
|
- title: "",
|
|
|
+ title: '',
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
// 查询参数
|
|
@@ -200,56 +183,24 @@ export default {
|
|
|
form: {},
|
|
|
// 表单校验
|
|
|
rules: {
|
|
|
- id: [
|
|
|
- { required: true, message: "$comment不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- delFlag: [
|
|
|
- { required: true, message: "删除标识不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- deptId: [
|
|
|
- { required: true, message: "部门id不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- fvalue: [
|
|
|
- { required: true, message: "指标参数不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- fname: [
|
|
|
- { required: true, message: "报送参数名称不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- funit: [
|
|
|
- { required: true, message: "计量单位不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- normRatio: [
|
|
|
- { required: true, message: "分类占比不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- fnumber: [
|
|
|
- { required: true, message: "权数不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- status: [
|
|
|
- { required: true, message: "是否启用(1=启用,0不启用)不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- startTime: [
|
|
|
- { required: true, message: "启用时间不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- stopTime: [
|
|
|
- { required: true, message: "停用时间不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- remark: [
|
|
|
- { required: true, message: "备注不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- collValue: [
|
|
|
- { required: true, message: "采集参考值不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- meritsValue: [
|
|
|
- { required: true, message: "绩效参考值不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- dfRetio: [
|
|
|
- { required: true, message: "上下公差占比不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- type: [
|
|
|
- { required: true, message: "明细类型(1=绩效,2=采集)不能为空", trigger: "change" }
|
|
|
- ]
|
|
|
+ id: [{ required: true, message: '$comment不能为空', trigger: 'blur' }],
|
|
|
+ delFlag: [{ required: true, message: '删除标识不能为空', trigger: 'blur' }],
|
|
|
+ deptId: [{ required: true, message: '部门id不能为空', trigger: 'blur' }],
|
|
|
+ fvalue: [{ required: true, message: '指标参数不能为空', trigger: 'blur' }],
|
|
|
+ fname: [{ required: true, message: '报送参数名称不能为空', trigger: 'blur' }],
|
|
|
+ funit: [{ required: true, message: '计量单位不能为空', trigger: 'blur' }],
|
|
|
+ normRatio: [{ required: true, message: '分类占比不能为空', trigger: 'blur' }],
|
|
|
+ fnumber: [{ required: true, message: '权数不能为空', trigger: 'blur' }],
|
|
|
+ status: [{ required: true, message: '是否启用(1=启用,0不启用)不能为空', trigger: 'blur' }],
|
|
|
+ startTime: [{ required: true, message: '启用时间不能为空', trigger: 'blur' }],
|
|
|
+ stopTime: [{ required: true, message: '停用时间不能为空', trigger: 'blur' }],
|
|
|
+ remark: [{ required: true, message: '备注不能为空', trigger: 'blur' }],
|
|
|
+ collValue: [{ required: true, message: '采集参考值不能为空', trigger: 'blur' }],
|
|
|
+ meritsValue: [{ required: true, message: '绩效参考值不能为空', trigger: 'blur' }],
|
|
|
+ dfRetio: [{ required: true, message: '上下公差占比不能为空', trigger: 'blur' }],
|
|
|
+ type: [{ required: true, message: '明细类型(1=绩效,2=采集)不能为空', trigger: 'change' }]
|
|
|
},
|
|
|
- unitSel: null,
|
|
|
+ unitSel: null
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -261,7 +212,7 @@ export default {
|
|
|
dictType: 'norm_uint'
|
|
|
}).then(res => {
|
|
|
this.unitSel = res.rows;
|
|
|
- })
|
|
|
+ });
|
|
|
this.getList();
|
|
|
},
|
|
|
|
|
@@ -271,8 +222,8 @@ export default {
|
|
|
this.loading = true;
|
|
|
listGIVE(this.queryParams).then(response => {
|
|
|
response.rows.forEach((item, index) => {
|
|
|
- response.rows[index].status = item.status == 0 ? false : true
|
|
|
- })
|
|
|
+ response.rows[index].status = item.status == 0 ? false : true;
|
|
|
+ });
|
|
|
this.GIVEList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
@@ -293,7 +244,7 @@ export default {
|
|
|
funit: null,
|
|
|
normRatio: null,
|
|
|
fnumber: null,
|
|
|
- status: "0",
|
|
|
+ status: '0',
|
|
|
startTime: null,
|
|
|
stopTime: null,
|
|
|
remark: null,
|
|
@@ -302,7 +253,7 @@ export default {
|
|
|
dfRetio: null,
|
|
|
type: null
|
|
|
};
|
|
|
- this.resetForm("form");
|
|
|
+ this.resetForm('form');
|
|
|
},
|
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
@@ -311,36 +262,34 @@ export default {
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
- this.resetForm("queryForm");
|
|
|
+ this.resetForm('queryForm');
|
|
|
this.handleQuery();
|
|
|
},
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
- this.ids = selection.map(item => item.id)
|
|
|
- this.single = selection.length !== 1
|
|
|
- this.multiple = !selection.length
|
|
|
+ this.ids = selection.map(item => item.id);
|
|
|
+ this.single = selection.length !== 1;
|
|
|
+ this.multiple = !selection.length;
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
- this.title = "添加报送数据项配置";
|
|
|
+ this.title = '添加报送数据项配置';
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|
|
|
- const id = row.id || this.ids
|
|
|
+ const id = row.id || this.ids;
|
|
|
getGIVE(id).then(response => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
- this.title = "修改报送数据项配置";
|
|
|
+ this.title = '修改报送数据项配置';
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
-
|
|
|
-
|
|
|
- this.$refs["form"].validate(valid => {
|
|
|
+ this.$refs['form'].validate(valid => {
|
|
|
if (valid) {
|
|
|
if (!(parseInt(this.form.fnumber) == this.form.fnumber || parseFloat(this.form.fnumber) == this.form.fnumber)) {
|
|
|
this.$message.error('权数必须为整数或小数');
|
|
@@ -374,13 +323,13 @@ export default {
|
|
|
|
|
|
if (this.form.id != null) {
|
|
|
updateGIVE(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
+ this.$modal.msgSuccess('修改成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
});
|
|
|
} else {
|
|
|
addGIVE(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
+ this.$modal.msgSuccess('新增成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
});
|
|
@@ -391,24 +340,30 @@ export default {
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
- this.$modal.confirm('是否确认删除报送数据项配置编号为"' + ids + '"的数据项?').then(function () {
|
|
|
- return delGIVE(ids);
|
|
|
- }).then(() => {
|
|
|
- this.getList();
|
|
|
- this.$modal.msgSuccess("删除成功");
|
|
|
- }).catch(() => { });
|
|
|
+ this.$modal
|
|
|
+ .confirm('是否确认删除报送数据项配置编号为"' + ids + '"的数据项?')
|
|
|
+ .then(function () {
|
|
|
+ return delGIVE(ids);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess('删除成功');
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
- this.download('/norm/GIVE/export', {
|
|
|
- ...this.queryParams
|
|
|
- }, `GIVE_${new Date().getTime()}.xlsx`)
|
|
|
+ this.download(
|
|
|
+ '/norm/GIVE/export',
|
|
|
+ {
|
|
|
+ ...this.queryParams
|
|
|
+ },
|
|
|
+ `GIVE_${new Date().getTime()}.xlsx`
|
|
|
+ );
|
|
|
},
|
|
|
|
|
|
// 新增按钮弹窗--->计量单位选择处理
|
|
|
- selUnitHandler(val) {
|
|
|
-
|
|
|
- },
|
|
|
+ selUnitHandler(val) {},
|
|
|
// 是否启用开关事件处理
|
|
|
changeSwitchHandler(data) {
|
|
|
let id = data.id;
|
|
@@ -417,13 +372,13 @@ export default {
|
|
|
id,
|
|
|
startTime: formatDate(new Date()),
|
|
|
status: 1
|
|
|
- })
|
|
|
+ });
|
|
|
} else {
|
|
|
updateGIVE({
|
|
|
id,
|
|
|
stopTime: formatDate(new Date()),
|
|
|
status: 0
|
|
|
- })
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
this.getList();
|