forked from integrated_whb/integrated_whb_vue
154 lines
4.7 KiB
Vue
154 lines
4.7 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<el-card>
|
||
|
<el-form
|
||
|
:model="searchForm"
|
||
|
label-width="130px"
|
||
|
@submit.prevent="fnResetPagination"
|
||
|
>
|
||
|
<el-row>
|
||
|
<el-col :span="6">
|
||
|
<el-form-item label="受限空间编号/名称" prop="KEYWORDS">
|
||
|
<el-input v-model="searchForm.KEYWORDS" />
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="6">
|
||
|
<el-form-item label-width="10px">
|
||
|
<el-button type="primary" native-type="submit">搜索</el-button>
|
||
|
<el-button native-type="reset" @click="fnResetPagination">
|
||
|
重置
|
||
|
</el-button>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<el-form-item label-width="10px" class="end">
|
||
|
<el-button @click="data.importDialogVisible = true">
|
||
|
导入
|
||
|
</el-button>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</el-form>
|
||
|
</el-card>
|
||
|
<layout-card>
|
||
|
<layout-table
|
||
|
:data="list"
|
||
|
@get-data="fnGetData"
|
||
|
v-model:pagination="pagination"
|
||
|
>
|
||
|
<el-table-column label="序号" width="60">
|
||
|
<template #default="{ $index }">
|
||
|
{{ serialNumber(pagination, $index) }}
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column prop="NUMBER" label="受限空间编号" />
|
||
|
<el-table-column prop="NAME" label="受限空间名称" />
|
||
|
<el-table-column prop="LIMITSPACETYPENAME" label="受限空间类型" />
|
||
|
<el-table-column prop="RISKGRADENAME" label="风险等级" />
|
||
|
<el-table-column prop="INFORMANTNAME" label="填报人" />
|
||
|
<el-table-column prop="PRINCIPALNAME" label="主要负责人" />
|
||
|
<el-table-column prop="COMPILETIME" label="填报时间" />
|
||
|
<el-table-column label="操作" width="100">
|
||
|
<template v-slot="{ row }">
|
||
|
<el-button
|
||
|
v-if="buttonJurisdiction.edit"
|
||
|
type="primary"
|
||
|
text
|
||
|
link
|
||
|
@click="fnAddOrEdit(row, 'edit')"
|
||
|
>
|
||
|
修改
|
||
|
</el-button>
|
||
|
<el-button
|
||
|
v-if="buttonJurisdiction.del"
|
||
|
type="primary"
|
||
|
text
|
||
|
link
|
||
|
@click="fnDelete(row.LIMITSPACE_ID)"
|
||
|
>
|
||
|
删除
|
||
|
</el-button>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<template #button>
|
||
|
<el-button
|
||
|
v-if="buttonJurisdiction.add"
|
||
|
type="primary"
|
||
|
@click="fnAddOrEdit({}, 'add')"
|
||
|
>
|
||
|
新增
|
||
|
</el-button>
|
||
|
</template>
|
||
|
</layout-table>
|
||
|
</layout-card>
|
||
|
<import-file
|
||
|
v-model:visible="data.importDialogVisible"
|
||
|
@get-data="fnResetPagination"
|
||
|
/>
|
||
|
<add
|
||
|
v-model:visible="data.addOrEditDialog.visible"
|
||
|
v-model:form="data.addOrEditDialog.form"
|
||
|
:type="data.addOrEditDialog.type"
|
||
|
@get-data="fnResetPagination"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { nextTick, reactive } from "vue";
|
||
|
import LayoutTable from "@/components/table/index";
|
||
|
import { serialNumber } from "@/assets/js/utils";
|
||
|
import LayoutCard from "@/components/card/index.vue";
|
||
|
import { getLedgerList, setLedgerDelete } from "@/request/confined_space.js";
|
||
|
import { ElMessage, ElMessageBox } from "element-plus";
|
||
|
import { debounce } from "throttle-debounce";
|
||
|
import useButtonJurisdiction from "@/assets/js/useButtonJurisdiction.js";
|
||
|
import { cloneDeep } from "lodash-es";
|
||
|
import useListData from "@/assets/js/useListData.js";
|
||
|
import ImportFile from "./components/import_file.vue";
|
||
|
import Add from "./components/add.vue";
|
||
|
|
||
|
const { list, pagination, searchForm, fnGetData, fnResetPagination } =
|
||
|
useListData(getLedgerList);
|
||
|
const data = reactive({
|
||
|
importDialogVisible: false,
|
||
|
addOrEditDialog: {
|
||
|
visible: false,
|
||
|
type: "",
|
||
|
form: {
|
||
|
NUMBER: "",
|
||
|
NAME: "",
|
||
|
LIMITSPACETYPE: "",
|
||
|
POSITIONSCOPE: "",
|
||
|
PRIMARYHAZARD: "",
|
||
|
RISKGRADE: "",
|
||
|
MAXPERSON: "",
|
||
|
HASINSTRUCTOR: "1",
|
||
|
INFORMANT: "",
|
||
|
PRINCIPAL: "",
|
||
|
COMPILETIME: "",
|
||
|
DESCR: "",
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
const buttonJurisdiction = await useButtonJurisdiction("limitspace");
|
||
|
const fnAddOrEdit = async (row, type) => {
|
||
|
data.addOrEditDialog.visible = true;
|
||
|
await nextTick();
|
||
|
data.addOrEditDialog.type = type;
|
||
|
if (type === "edit") data.addOrEditDialog.form = cloneDeep(row);
|
||
|
};
|
||
|
const fnDelete = debounce(
|
||
|
1000,
|
||
|
async (LIMITSPACE_ID) => {
|
||
|
await ElMessageBox.confirm("确定要删除吗?", { type: "warning" });
|
||
|
await setLedgerDelete({ LIMITSPACE_ID });
|
||
|
ElMessage.success("删除成功");
|
||
|
fnResetPagination();
|
||
|
},
|
||
|
{ atBegin: true }
|
||
|
);
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss"></style>
|