163 lines
5.0 KiB
Vue
163 lines
5.0 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<div class="titleBox">
|
||
|
<PageTitle title="法律法规信息">
|
||
|
<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"/>
|
||
|
</div>
|
||
|
<!-- 表格 -->
|
||
|
<div class="tabBox">
|
||
|
<MyTable
|
||
|
:tableData="pageData.tableData"
|
||
|
:tableColumn="pageData.tableColumn"
|
||
|
:tableHeight="pageData.tableHeight"
|
||
|
:key="pageData.keyCount"
|
||
|
:tableConfiger="pageData.tableConfiger"
|
||
|
:controlsWidth="pageData.controlsWidth"
|
||
|
@chooseData="chooseData">
|
||
|
<!-- 操作 -->
|
||
|
<template #controls="{ row }">
|
||
|
<el-button size="small" @click="addEdit('eidt', row)">编辑</el-button>
|
||
|
<el-button size="small" @click="addEdit('detail', row)">详情</el-button>
|
||
|
<el-button size="small" @click="delDictItem([row.id])" type="danger">删除</el-button>
|
||
|
</template>
|
||
|
</MyTable>
|
||
|
<Pages
|
||
|
@changeNo="changeNo"
|
||
|
@changeSize="changeSize"
|
||
|
:tableHeight="pageData.tableHeight"
|
||
|
:pageConfiger="{
|
||
|
...pageData.pageConfiger,
|
||
|
total: pageData.total
|
||
|
}"
|
||
|
></Pages>
|
||
|
</div>
|
||
|
<!-- 详情 -->
|
||
|
<DetailForm ref="detailDiloag" />
|
||
|
</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 DetailForm from "./components/detailForm.vue";
|
||
|
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
||
|
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
||
|
const { proxy } = getCurrentInstance();
|
||
|
const detailDiloag = ref();
|
||
|
const searchBox = ref(); //搜索框
|
||
|
|
||
|
|
||
|
const searchConfiger = ref([
|
||
|
{ label: "电子文件名称", prop: 'dzwjmc', placeholder: "请输入电子文件名称", showType: "input" },
|
||
|
{ label: "发布单位", prop: 'fbdw', placeholder: "请输入发布单位", showType: "input" },
|
||
|
{ label: "发布日期", prop: 'fbrq', placeholder: "请选择发布日期", showType: "date" },
|
||
|
]);
|
||
|
const queryFrom = ref({});
|
||
|
const pageData = reactive({
|
||
|
tableData: [
|
||
|
{id: 1, dzwjmc: 'xxxxx法规', djr: '李四', fbdw: '巴吉区筑梦路派出所', fbrq: '2025/1/20 10:00:00'},
|
||
|
{id: 2, dzwjmc: 'xxxxx法规', djr: '李四', fbdw: '巴吉区筑梦路派出所', fbrq: '2025/1/20 10:00:00'},
|
||
|
{id: 3, dzwjmc: 'xxxxx法规', djr: '李四', fbdw: '巴吉区筑梦路派出所', fbrq: '2025/1/20 10:00:00'},
|
||
|
{id: 4, dzwjmc: 'xxxxx法规', djr: '李四', fbdw: '巴吉区筑梦路派出所', fbrq: '2025/1/20 10:00:00'},
|
||
|
{id: 5, dzwjmc: 'xxxxx法规', djr: '李四', fbdw: '巴吉区筑梦路派出所', fbrq: '2025/1/20 10:00:00'},
|
||
|
],
|
||
|
keyCount: 0,
|
||
|
tableConfiger: {
|
||
|
rowHieght: 61,
|
||
|
showSelectType: "null",
|
||
|
loading: false
|
||
|
},
|
||
|
total: 0,
|
||
|
pageConfiger: {
|
||
|
pageSize: 20,
|
||
|
pageCurrent: 1
|
||
|
},
|
||
|
controlsWidth: 200,
|
||
|
tableColumn: [
|
||
|
{ label: "电子文件名称", prop: "dzwjmc" },
|
||
|
{ label: "登记人", prop: "djr" },
|
||
|
{ label: "发布单位", prop: "fbdw" },
|
||
|
{ label: "发布日期", prop: "fbrq" },
|
||
|
]
|
||
|
});
|
||
|
onMounted(() => {
|
||
|
getList()
|
||
|
tabHeightFn();
|
||
|
});
|
||
|
|
||
|
//选择类型
|
||
|
const handleType = (val) => {
|
||
|
pageData.keyCount++;
|
||
|
pageData.pageConfiger.pageCurrent = 1;
|
||
|
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 = (val) =>{
|
||
|
// pageData.tableConfiger.loading = true;
|
||
|
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
||
|
// let url = '/mosty-lzcj/tbDwMbkf/queryList';
|
||
|
// qcckPost(data,url).then(res=>{
|
||
|
// pageData.tableData = res.records || [];
|
||
|
// pageData.total = res.total;
|
||
|
// pageData.tableConfiger.loading = false;
|
||
|
// }).catch(()=>{ pageData.tableConfiger.loading = false; })
|
||
|
}
|
||
|
|
||
|
// 删除
|
||
|
const delDictItem = (ids) =>{
|
||
|
let url = '/mosty-lzcj/tbDwMbkf/delete';
|
||
|
proxy.$confirm("确定要删除", "警告", {type: "warning"}).then(() => {
|
||
|
// qcckPost(ids,url).then(()=>{
|
||
|
// proxy.$message({ type: "success", message: "删除成功" });
|
||
|
// getList(chooseType.value);
|
||
|
// })
|
||
|
}).catch(() => {});
|
||
|
}
|
||
|
|
||
|
// 详情
|
||
|
const addEdit = (type, row) => {
|
||
|
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>
|