194 lines
4.7 KiB
Vue
194 lines
4.7 KiB
Vue
<template>
|
|
<div>
|
|
<div class="titleBox">
|
|
<PageTitle title="布控监视管理">
|
|
<!-- <el-button>
|
|
<span style="vertical-align: middle">调级</span>
|
|
</el-button>
|
|
<el-button>
|
|
<span style="vertical-align: middle">导出</span>
|
|
</el-button>
|
|
<el-button>
|
|
<span style="vertical-align: middle">导入</span>
|
|
</el-button> -->
|
|
<el-button type="primary" @click="addEdit('add', '')">
|
|
<el-icon style="vertical-align: middle"><CirclePlus /></el-icon>
|
|
<span style="vertical-align: middle">新增</span>
|
|
</el-button>
|
|
</PageTitle>
|
|
</div>
|
|
<!-- 搜索 -->
|
|
<div ref="searchBox">
|
|
<Search
|
|
:searchArr="searchConfiger"
|
|
@submit="onSearch"
|
|
:key="pageData.keyCount"
|
|
></Search>
|
|
</div>
|
|
<!-- 表格 -->
|
|
<div class="tabBox">
|
|
<MyTable
|
|
:tableData="pageData.tableData"
|
|
:tableColumn="pageData.tableColumn"
|
|
:tableHeight="pageData.tableHeight"
|
|
:key="pageData.keyCount"
|
|
:tableConfiger="pageData.tableConfiger"
|
|
:controlsWidth="pageData.controlsWidth"
|
|
>
|
|
<!-- 操作 -->
|
|
<template #controls="{ row }">
|
|
<el-link type="primary" @click="addEdit('edit', row)">编辑</el-link>
|
|
<el-link type="danger" @click="delDictItem(row.id)">删除</el-link>
|
|
</template>
|
|
</MyTable>
|
|
<Pages
|
|
@changeNo="changeNo"
|
|
@changeSize="changeSize"
|
|
:tableHeight="pageData.tableHeight"
|
|
:pageConfiger="{
|
|
...pageData.pageConfiger,
|
|
total: pageData.total
|
|
}"
|
|
></Pages>
|
|
</div>
|
|
<!-- 编辑详情 -->
|
|
<EditAddForm
|
|
v-if="show"
|
|
ref="detailDiloag"
|
|
:dic="{ D_GS_BQ_LX, D_GS_BQ_DJ, D_GS_SSYJ, D_GS_BQ_LB }"
|
|
@updateDate="getList"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
|
import MyTable from "@/components/aboutTable/MyTable.vue";
|
|
import Pages from "@/components/aboutTable/Pages.vue";
|
|
import Search from "@/components/aboutTable/Search.vue";
|
|
import EditAddForm from "./components/editAddForm.vue";
|
|
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
|
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
|
const { proxy } = getCurrentInstance();
|
|
const { D_GS_BQ_DJ, D_GS_SSYJ, D_GS_BQ_LB, D_GS_BQ_LX } = proxy.$dict(
|
|
"D_GS_BQ_DJ",
|
|
"D_GS_SSYJ",
|
|
"D_GS_BQ_LB",
|
|
"D_GS_BQ_LX"
|
|
); //获取字典数据
|
|
const detailDiloag = ref();
|
|
const show = ref(false);
|
|
const searchBox = ref(); //搜索框
|
|
const searchConfiger = ref([
|
|
{
|
|
label: "集合名称",
|
|
prop: "jhMc",
|
|
placeholder: "请输入集合名称",
|
|
showType: "input"
|
|
},
|
|
{
|
|
label: "集合说明",
|
|
prop: "jhSm",
|
|
placeholder: "请输入集合说明",
|
|
showType: "input"
|
|
},
|
|
|
|
]);
|
|
const queryFrom = ref({});
|
|
const pageData = reactive({
|
|
tableData: [], //表格数据
|
|
keyCount: 0,
|
|
tableConfiger: {
|
|
rowHieght: 61,
|
|
showSelectType: "null",
|
|
loading: false
|
|
},
|
|
total: 0,
|
|
pageConfiger: {
|
|
pageSize: 20,
|
|
pageCurrent: 1
|
|
}, //分页
|
|
controlsWidth: 160, //操作栏宽度
|
|
tableColumn: [
|
|
{
|
|
label: "集合名称",
|
|
prop: "jhMc"
|
|
},
|
|
{
|
|
label: "集合说明",
|
|
prop: "jhSm"
|
|
},
|
|
|
|
]
|
|
});
|
|
onMounted(() => {
|
|
tabHeightFn();
|
|
getList();
|
|
});
|
|
|
|
// 搜索
|
|
const onSearch = (val) => {
|
|
queryFrom.value = { ...val };
|
|
pageData.pageConfiger.pageCurrent = 1;
|
|
getList();
|
|
};
|
|
|
|
const changeNo = (val) => {
|
|
pageData.pageConfiger.pageNum = val;
|
|
getList();
|
|
};
|
|
const changeSize = (val) => {
|
|
pageData.pageConfiger.pageSize = val;
|
|
getList();
|
|
};
|
|
|
|
const getList = () => {
|
|
pageData.tableConfiger.loading = true;
|
|
qcckGet(queryFrom.value, "/mosty-gsxt/tbGsxtGzyJh/selectPage")
|
|
.then((res) => {
|
|
pageData.tableData = res.records;
|
|
pageData.total = res.total;
|
|
pageData.tableConfiger.loading = false;
|
|
})
|
|
.catch(() => {
|
|
pageData.tableConfiger.loading = false;
|
|
});
|
|
};
|
|
|
|
// 删除
|
|
const delDictItem = (id) => {
|
|
proxy
|
|
.$confirm("确定要删除", "警告", { type: "warning" })
|
|
.then(() => {
|
|
qcckDelete({}, "/mosty-gsxt/tbGsxtBqzh/" + id).then(() => {
|
|
proxy.$message({ type: "success", message: "删除成功" });
|
|
getList();
|
|
});
|
|
})
|
|
.catch(() => {});
|
|
};
|
|
|
|
// 新增
|
|
const addEdit = (type, row) => {
|
|
show.value = true;
|
|
nextTick(() => {
|
|
detailDiloag.value.init(type, row);
|
|
});
|
|
};
|
|
|
|
// 表格高度计算
|
|
const tabHeightFn = () => {
|
|
pageData.tableHeight =
|
|
window.innerHeight - searchBox.value.offsetHeight - 250;
|
|
window.onresize = function () {
|
|
tabHeightFn();
|
|
};
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.el-loading-mask {
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
}
|
|
</style>
|