Commit 8c09c6d0 by zhaopanyu

zpy

parent ed5a0dbb
import request from "@/utils/request";
// 首页查询
export function getListcx(id) {
return request({
url: "/system/zyyq/" + id,
method: "get",
});
}
//单条详情
export function getListdt() {
return request({
url: "/system/zyyq/list",
method: "get",
});
}
import request from '@/utils/request'
// 查询油气数智化-产品列表
export function listCb(query) {
return request({
url: '/system/cb/list',
method: 'get',
params: query
})
}
// 查询油气数智化-产品详细
export function getCb(id) {
return request({
url: '/system/cb/' + id,
method: 'get'
})
}
// 新增油气数智化-产品
export function addCb(data) {
return request({
url: '/system/cb',
method: 'post',
data: data
})
}
// 修改油气数智化-产品
export function updateCb(data) {
return request({
url: '/system/cb',
method: 'put',
data: data
})
}
// 删除油气数智化-产品
export function delCb(id) {
return request({
url: '/system/cb/' + id,
method: 'delete'
})
}
import request from '@/utils/request'
// 查询油气数智化-分类列表
export function listZb(query) {
return request({
url: '/system/zb/list',
method: 'get',
params: query
})
}
// 查询油气数智化-分类列表
export function listZbxlk(query) {
return request({
url: '/system/zb/listxlk',
method: 'get',
params: query
})
}
// 查询油气数智化-分类详细
export function getZb(id) {
return request({
url: '/system/zb/' + id,
method: 'get'
})
}
// 新增油气数智化-分类
export function addZb(data) {
return request({
url: '/system/zb',
method: 'post',
data: data
})
}
// 修改油气数智化-分类
export function updateZb(data) {
return request({
url: '/system/zb',
method: 'put',
data: data
})
}
// 删除油气数智化-分类
export function delZb(id) {
return request({
url: '/system/zb/' + id,
method: 'delete'
})
}
...@@ -8,7 +8,7 @@ import { isRelogin } from "@/utils/request"; ...@@ -8,7 +8,7 @@ import { isRelogin } from "@/utils/request";
NProgress.configure({ showSpinner: false }); NProgress.configure({ showSpinner: false });
const whiteList = ["/login", "/register", "web"]; const whiteList = ["/login", "/register", "/web"];
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
NProgress.start(); NProgress.start();
......
...@@ -44,9 +44,10 @@ export const constantRoutes = [ ...@@ -44,9 +44,10 @@ export const constantRoutes = [
{ {
path: "/web", path: "/web",
component: () => import("@/views/gasDigitization"), component: () => import("@/views/zyyq/index"),
hidden: true, hidden: true,
}, },
{ {
path: "/login", path: "/login",
component: () => import("@/views/login"), component: () => import("@/views/login"),
......
<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="mc">
<el-input
v-model="queryParams.mc"
placeholder="请输入名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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="['system:zb:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="info"
plain
icon="el-icon-sort"
size="mini"
@click="toggleExpandAll"
>展开/折叠</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table
v-if="refreshTable"
v-loading="loading"
:data="zbList"
row-key="id"
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column label="名称" align="center" prop="mc" />
<el-table-column label="排序" align="center" prop="px" />
<el-table-column label="类型" align="center" prop="cplx" />
<el-table-column label="备注" 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="['system:zb:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-plus"
@click="handleAdd(scope.row)"
v-hasPermi="['system:zb:add']"
>新增</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:zb:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<!-- 添加或修改油气数智化-分类对话框 -->
<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="fid">
<treeselect v-model="form.fid" :options="zbOptions" :normalizer="normalizer" placeholder="请选择父id" />
</el-form-item>
<el-form-item label="名称" prop="mc">
<el-input v-model="form.mc" placeholder="请输入名称" />
</el-form-item>
<el-form-item label="排序" prop="px">
<el-input v-model="form.px" placeholder="请输入排序" />
</el-form-item>
<el-form-item label="类型" prop="cplx">
<el-select v-model="form.cplx" placeholder="请选择">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</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 { listZb, getZb, delZb, addZb, updateZb } from "@/api/system/zb";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
export default {
name: "Zb",
components: {
Treeselect
},
data() {
return {
// 遮罩层
loading: true,
// 显示搜索条件
showSearch: true,
// 油气数智化-分类表格数据
zbList: [],
// 油气数智化-分类树选项
zbOptions: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 是否展开,默认全部展开
isExpandAll: true,
// 重新渲染表格状态
refreshTable: true,
// 查询参数
queryParams: {
fid: null,
mc: null,
px: null,
cplx: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
},
options: [{
value: '产品',
label: '产品'
}, {
value: '服务类',
label: '服务类'
}]
};
},
created() {
this.getList();
},
methods: {
/** 查询油气数智化-分类列表 */
getList() {
this.loading = true;
listZb(this.queryParams).then(response => {
this.zbList = this.handleTree(response.data, "id", "fid");
this.loading = false;
});
},
/** 转换油气数智化-分类数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
}
return {
id: node.id,
label: node.mc,
children: node.children
};
},
/** 查询油气数智化-分类下拉树结构 */
getTreeselect() {
listZb().then(response => {
this.zbOptions = [];
const data = { id: 0, mc: '产品/服务类', children: [] };
data.children = this.handleTree(response.data, "id", "fid");
this.zbOptions.push(data);
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
fid: null,
mc: null,
px: null,
cplx: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
remark: null,
delFlag: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
/** 新增按钮操作 */
handleAdd(row) {
this.reset();
this.getTreeselect();
if (row != null && row.id) {
this.form.fid = row.id;
} else {
this.form.fid = 0;
}
this.open = true;
this.title = "添加油气数智化-分类";
},
/** 展开/折叠操作 */
toggleExpandAll() {
this.refreshTable = false;
this.isExpandAll = !this.isExpandAll;
this.$nextTick(() => {
this.refreshTable = true;
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.getTreeselect();
if (row != null) {
this.form.fid = row.fid;
}
getZb(row.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) {
updateZb(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addZb(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
this.$modal.confirm('是否确认删除油气数智化-分类编号为"' + row.id + '"的数据项?').then(function() {
return delZb(row.id);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
}
}
};
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment