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

更新指标

上级 4d7e4550
import request from '@/utils/request'
// 获取主题列表
export function getThemeList() {
return request({
url: '/backstage/project/getThemeList',
method: 'get',
})
}
// 查询项目列表
export function listProject(query) {
return request({
url: '/backstage/project/list',
method: 'get',
params: query
})
}
// 查询项目详细
export function getProject(id) {
return request({
url: '/backstage/project/' + id,
method: 'get'
})
}
// 新增项目
export function addProject(data) {
return request({
url: '/backstage/project',
method: 'post',
data: data
})
}
// 修改项目
export function updateProject(data) {
return request({
url: '/backstage/project',
method: 'put',
data: data
})
}
// 删除项目
export function delProject(id) {
return request({
url: '/backstage/project/' + id,
method: 'delete'
})
}
// 导出项目
export function exportProject(query) {
return request({
url: '/backstage/project/export',
method: 'get',
params: query
})
}
......@@ -513,8 +513,9 @@ export default {
this.open = false;
this.pointList = [];//刷新
this.getList();
}else {
}
}).catch(()=>{
if(this.form.levelValue){
this.form.levelValue = JSON.parse(this.form.levelValue)
}
});
......@@ -525,7 +526,9 @@ export default {
this.open = false;
this.pointList = [];//刷新
this.getList();
}else {
}
}).catch(()=>{
if(this.form.levelValue){
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:project: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:project: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:project: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:project:export']"-->
<!-- >导出</el-button>-->
<!-- </el-col>-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="projectList" @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="title" />
<el-table-column label="调查范围" align="center" prop="scope" />
<el-table-column label="提取码" align="center" prop="extractionCode" />
<el-table-column label="主题id合集,用逗号分隔 (已弃用)" align="center" prop="itemIds" />
<el-table-column label="是否发布数据 1已发布 0未发布" align="center" prop="isPublish" />
<el-table-column label="状态 1正常 0删除" align="center" prop="status" />
<el-table-column label="所选主题值" align="center" prop="itemSelectValue" />
<el-table-column label="所选区域值" align="center" prop="areaSelectValue" />
<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:project:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['backstage:project: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="name">
<el-input v-model="form.name" placeholder="请输入项目名称" />
</el-form-item>
<el-form-item label="选择主题" prop="themeSelectValue">
<el-select style="width: 100%" multiple clearable filterable v-model="form.themeSelectValue" placeholder="请选择主题">
<el-option
v-for="item in themeSelectValueOptions"
:key="item.id"
:label="item.name"
:value="item.id">
</el-option>
</el-select>
</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 { getThemeList, listProject, getProject, delProject, addProject, updateProject, exportProject } from "@/api/backstage/project";
export default {
name: "Project",
data() {
return {
themeSelectValueOptions: [],
// 不可重复提交
repeatSubmit: false,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 项目表格数据
projectList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
title: null,
scope: null,
extractionCode: null,
itemIds: null,
isPublish: null,
status: '1',
themeSelectValue: null,
areaSelectValue: null
},
// 表单参数
form: {},
// 表单校验
rules: {
name: [
{ required: true, message: "项目名称不能为空,请输入项目名称", trigger: "blur" }
],
themeSelectValue: [
{ required: true, message: "主题不能为空,请选择主题", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询项目列表 */
getList() {
this.loading = true;
listProject(this.queryParams).then(response => {
this.projectList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
name: null,
title: null,
scope: null,
extractionCode: null,
itemIds: null,
isPublish: '0',
createTime: null,
updateTime: null,
status: "1",
themeSelectValue: null,
areaSelectValue: 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
},
getThemeList(){
//获取主题列表
getThemeList().then(res=>{
this.themeSelectValueOptions = res.data;
});
},
/** 新增按钮操作 */
handleAdd() {
this.getThemeList();
this.reset();
this.open = true;
this.title = "添加项目";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getProject(id).then(response => {
this.form = response.data;
if(this.form.themeSelectValue){
this.form.themeSelectValue = JSON.parse(this.form.themeSelectValue);
}
this.getThemeList();
this.open = true;
this.title = "修改项目";
});
},
/** 提交按钮 */
submitForm() {
this.repeatSubmit=true
setTimeout(()=>{
this.repeatSubmit = false //点击一次时隔两秒后才能再次点击
},2000)
this.$refs["form"].validate(valid => {
if (valid) {
if(this.form.themeSelectValue && this.form.themeSelectValue.length > 0){
this.form.themeSelectValue = JSON.stringify(this.form.themeSelectValue);
}else {
this.form.themeSelectValue = null;
}
if (this.form.id != null) {
updateProject(this.form).then(response => {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}).catch(()=>{
if(this.form.themeSelectValue){
this.form.themeSelectValue = JSON.parse(this.form.themeSelectValue);
}
});
} else {
addProject(this.form).then(response => {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}).catch(()=>{
if(this.form.themeSelectValue){
this.form.themeSelectValue = JSON.parse(this.form.themeSelectValue);
}
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm('是否确认删除项目编号为"' + ids + '"的数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return delProject(ids);
}).then(() => {
this.getList();
this.msgSuccess("删除成功");
})
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm('是否确认导出所有项目数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return exportProject(queryParams);
}).then(response => {
this.download(response.msg);
})
}
}
};
</script>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论