提交 ff643c12 authored 作者: 林国禄's avatar 林国禄

更新指标

上级 434206ff
import request from '@/utils/request'
// 查询考核主题列表
export function getTargetList() {
return request({
url: '/backstage/theme/getTargetList',
method: 'get',
})
}
// 查询考核主题列表
export function listTheme(query) {
return request({
url: '/backstage/theme/list',
method: 'get',
params: query
})
}
// 查询考核主题详细
export function getTheme(id) {
return request({
url: '/backstage/theme/' + id,
method: 'get'
})
}
// 新增考核主题
export function addTheme(data) {
return request({
url: '/backstage/theme',
method: 'post',
data: data
})
}
// 修改考核主题
export function updateTheme(data) {
return request({
url: '/backstage/theme',
method: 'put',
data: data
})
}
// 删除考核主题
export function delTheme(id) {
return request({
url: '/backstage/theme/' + id,
method: 'delete'
})
}
// 导出考核主题
export function exportTheme(query) {
return request({
url: '/backstage/theme/export',
method: 'get',
params: query
})
}
......@@ -507,12 +507,20 @@ export default {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}).catch(()=>{
if(this.form.levelValue != null){
this.form.levelValue = JSON.parse(this.form.levelValue)
}
});
} else {
addTarget(this.form).then(response => {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}).catch(()=>{
if(this.form.levelValue != null){
this.form.levelValue = JSON.parse(this.form.levelValue)
}
});
}
}
......
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="主题名称" prop="name">
<el-input
v-model="queryParams.name"
placeholder="请输入主题名称"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</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="['backstage:theme: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="['backstage:theme: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="['backstage:theme:remove']"
>删除</el-button>
</el-col>
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="warning"-->
<!-- icon="el-icon-download"-->
<!-- size="mini"-->
<!-- @click="handleExport"-->
<!-- v-hasPermi="['backstage:theme:export']"-->
<!-- >导出</el-button>-->
<!-- </el-col>-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="themeList" @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="name" />
<el-table-column label="创建时间" align="center" prop="createTime" />
<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="['backstage:theme:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['backstage:theme: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="120px">
<el-form-item label="主题名称" prop="name">
<el-input v-model="form.name" placeholder="请输入主题名称" />
</el-form-item>
<el-form-item label="行政村考核指标" prop="adminVillageLevelValue">
<div class="block">
<!-- <span class="demonstration"></span>-->
<el-cascader
style="width: 100%"
key="id"
v-model="form.adminVillageLevelValue"
:options="administrativeVillages"
:props="{multiple: true, expandTrigger: 'hover'}"
@change="handleChange"
filterable
clearable></el-cascader>
</div>
</el-form-item>
<el-form-item label="自然村考核指标" prop="naturalVillageLevelValue">
<div class="block">
<!-- <span class="demonstration"></span>-->
<el-cascader
style="width: 100%"
key="id"
v-model="form.naturalVillageLevelValue"
:options="naturalVillages"
:props="{multiple: true, expandTrigger: 'hover'}"
@change="handleChange"
filterable
clearable></el-cascader>
</div>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" :disabled="repeatSubmit">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { getTargetList,listTheme, getTheme, delTheme, addTheme, updateTheme, exportTheme } from "@/api/backstage/theme";
export default {
name: "Theme",
data() {
return {
administrativeVillages:[],
naturalVillages:[],
// 不可重复提交
repeatSubmit: false,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 考核主题表格数据
themeList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
status: null
},
// 表单参数
form: {
},
// 表单校验
rules: {
name: [
{ required: true, message: "主题名称不能为空,请输入主题名称", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询考核主题列表 */
getList() {
this.loading = true;
listTheme(this.queryParams).then(response => {
this.themeList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
name: null,
createTime: null,
updateTime: null,
status: "1"
};
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.getTargetList();
this.reset();
this.open = true;
this.title = "添加考核主题";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getTheme(id).then(response => {
this.form = response.data;
//获取指标列表
this.getTargetList();
if(this.form.adminVillageLevelValue){
this.form.adminVillageLevelValue = JSON.parse(response.data.adminVillageLevelValue)
}
if(this.form.naturalVillageLevelValue){
this.form.naturalVillageLevelValue = JSON.parse(response.data.naturalVillageLevelValue)
}
this.open = true;
this.title = "修改考核主题";
});
},
//获取指标列表
getTargetList(){
getTargetList().then(res=>{
this.administrativeVillages=res.data.administrativeVillages;
this.naturalVillages=res.data.naturalVillages;
});
},
/** 提交按钮 */
submitForm() {
this.repeatSubmit=true
setTimeout(()=>{
this.repeatSubmit = false //点击一次时隔两秒后才能再次点击
},2000)
this.$refs["form"].validate(valid => {
if (valid) {
if(this.form.adminVillageLevelValue != null && this.form.adminVillageLevelValue.length > 0){
this.form.adminVillageLevelValue = JSON.stringify(this.form.adminVillageLevelValue)
}else {
this.form.adminVillageLevelValue = null;
}
if(this.form.naturalVillageLevelValue != null && this.form.naturalVillageLevelValue.length > 0){
this.form.naturalVillageLevelValue = JSON.stringify(this.form.naturalVillageLevelValue)
}else {
this.form.naturalVillageLevelValue = null;
}
if (this.form.id != null) {
updateTheme(this.form).then(response => {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}).catch(()=>{
if(this.form.adminVillageLevelValue){
this.form.adminVillageLevelValue = JSON.parse(this.form.adminVillageLevelValue)
}
if(this.form.naturalVillageLevelValue){
this.form.naturalVillageLevelValue = JSON.parse(this.form.naturalVillageLevelValue)
}
});
} else {
addTheme(this.form).then(response => {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}).catch(()=>{
if(this.form.adminVillageLevelValue){
this.form.adminVillageLevelValue = JSON.parse(this.form.adminVillageLevelValue)
}
if(this.form.naturalVillageLevelValue){
this.form.naturalVillageLevelValue = JSON.parse(this.form.naturalVillageLevelValue)
}
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm('是否确认删除考核主题编号为"' + ids + '"的数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return delTheme(ids);
}).then(() => {
this.getList();
this.msgSuccess("删除成功");
})
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm('是否确认导出所有考核主题数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return exportTheme(queryParams);
}).then(response => {
this.download(response.msg);
})
},
handleChange(){
},
}
};
</script>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论