|
@@ -0,0 +1,318 @@
|
|
|
+<template>
|
|
|
+ <div class="system-dic-container">
|
|
|
+ <el-card shadow="hover">
|
|
|
+ <div class="system-user-search mb15">
|
|
|
+ <el-form :model="tableData.param" ref="queryRef" :inline="true" label-width="68px">
|
|
|
+ <el-form-item label="所属组织" prop="organizationId">
|
|
|
+ <el-tree-select
|
|
|
+ v-model="tableData.param.organizationId"
|
|
|
+ :data="orgList"
|
|
|
+ :props="{
|
|
|
+ label: 'name',
|
|
|
+ children: 'children'
|
|
|
+ }"
|
|
|
+ placeholder="请选择"
|
|
|
+ node-key="id"
|
|
|
+ :clearable="true"
|
|
|
+ check-strictly
|
|
|
+ style="width: 100%;"
|
|
|
+ :render-after-expand="true"
|
|
|
+ size="default"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="小区名称" prop="plotId">
|
|
|
+ <el-select v-model="tableData.param.plotId" @change="onPlotChange" placeholder="选择小区名称" filterable clearable size="default">
|
|
|
+ <el-option
|
|
|
+ v-for="item in plotList"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="楼宇名称" prop="floorId">
|
|
|
+ <el-select v-model="tableData.param.floorId" @change="onFloorChange" placeholder="选择楼宇名称" filterable clearable size="default">
|
|
|
+ <el-option
|
|
|
+ v-for="item in floorList"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="单元名称" prop="unitId">
|
|
|
+ <el-select v-model="tableData.param.unitId" placeholder="选择单元名称" filterable clearable size="default">
|
|
|
+ <el-option
|
|
|
+ v-for="item in unitList"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="住户名称" prop="name">
|
|
|
+ <el-input v-model="tableData.param.name" placeholder="请输入住户名称" clearable size="default" style="width: 240px" @keyup.enter="queryList" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button size="default" type="primary" class="ml10" @click="queryList">
|
|
|
+ <el-icon>
|
|
|
+ <ele-Search />
|
|
|
+ </el-icon>
|
|
|
+ 查询
|
|
|
+ </el-button>
|
|
|
+ <el-button size="default" @click="resetQuery(queryRef)">
|
|
|
+ <el-icon>
|
|
|
+ <ele-Refresh />
|
|
|
+ </el-icon>
|
|
|
+ 重置
|
|
|
+ </el-button>
|
|
|
+ <el-button size="default" type="success" class="ml10" @click="onOpenDialog()">
|
|
|
+ <el-icon>
|
|
|
+ <ele-FolderAdd />
|
|
|
+ </el-icon>
|
|
|
+ 新增
|
|
|
+ </el-button>
|
|
|
+ <!-- <el-button size="default" type="danger" class="ml10" @click="onRowDel(null)">
|
|
|
+ <el-icon>
|
|
|
+ <ele-Delete />
|
|
|
+ </el-icon>
|
|
|
+ 删除
|
|
|
+ </el-button> -->
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <el-table :data="tableData.data" v-loading="tableData.loading" style="width: 100%" >
|
|
|
+ <!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
|
+ <el-table-column label="ID" align="center" prop="id" width="60" />
|
|
|
+ <el-table-column label="组织名称" prop="" min-width="100">
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ row.organizationInfo.name }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="小区名称" prop="" min-width="100">
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ row.plotInfo.name }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="楼宇名称" prop="" min-width="100">
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ row.floorInfo.name }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="单元名称" prop="name" min-width="100">
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ row.unitInfo.name }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="单元号" prop="number" min-width="100">
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ row.unitInfo.number }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="住户姓名" prop="name" min-width="100" />
|
|
|
+ <el-table-column label="楼层" prop="floorLevel" min-width="100" />
|
|
|
+ <el-table-column label="房间号" prop="roomNumber" min-width="100" />
|
|
|
+ <el-table-column label="电话号码" prop="phone" min-width="100" />
|
|
|
+ <el-table-column label="建筑面积" prop="buildingArea" min-width="100" />
|
|
|
+ <el-table-column label="实供面积" prop="forRealArea" min-width="100" />
|
|
|
+ <el-table-column label="更新时间" prop="createdAt" width="180"/>
|
|
|
+ <el-table-column prop="status" label="启用状态" width="120" align="center">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-switch v-model="scope.row.status" inline-prompt :active-value="1" :inactive-value="0" active-text="启" inactive-text="禁" @change="handleStatusChange(scope.row)">
|
|
|
+ </el-switch>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" width="200" align="center" fixed="right">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button size="small" text type="warning" @click="onOpenDialog(scope.row)">修改</el-button>
|
|
|
+ <el-button size="small" text type="danger" @click="onRowDel(scope.row)">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <pagination v-show="tableData.total>0" :total="tableData.total" v-model:page="tableData.param.pageNum" v-model:limit="tableData.param.pageSize" @pagination="queryList" />
|
|
|
+ </el-card>
|
|
|
+ <EditDic ref="editDicRef" @queryList="queryList" />
|
|
|
+ <Detail ref="detailRef" />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts">
|
|
|
+import { toRefs, reactive, onMounted, ref, defineComponent } from 'vue';
|
|
|
+import { ElMessageBox, ElMessage, FormInstance } from 'element-plus';
|
|
|
+import EditDic from './component/edit.vue';
|
|
|
+import Detail from './component/detail.vue';
|
|
|
+import api from '/@/api/heatingDistrict';
|
|
|
+import systemApi from '/@/api/system';
|
|
|
+
|
|
|
+export default defineComponent({
|
|
|
+ name: 'loop',
|
|
|
+ components: { EditDic,Detail },
|
|
|
+ setup() {
|
|
|
+ const addDicRef = ref();
|
|
|
+ const editDicRef = ref();
|
|
|
+ const detailRef=ref();
|
|
|
+ const queryRef = ref();
|
|
|
+ const state = reactive({
|
|
|
+ ids: [],
|
|
|
+ tableData: {
|
|
|
+ data: [],
|
|
|
+ total: 0,
|
|
|
+ loading: false,
|
|
|
+ param: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ name: '',
|
|
|
+ plotId: '',
|
|
|
+ floorId: '',
|
|
|
+ unitId: '',
|
|
|
+ organizationId: '',
|
|
|
+ status: -1
|
|
|
+ },
|
|
|
+ },
|
|
|
+ });
|
|
|
+ // 组织
|
|
|
+ const orgList = ref([])
|
|
|
+ // 小区
|
|
|
+ const plotList = ref([])
|
|
|
+ // 楼宇
|
|
|
+ const floorList = ref([])
|
|
|
+ // 单元
|
|
|
+ const unitList = ref([])
|
|
|
+ // 初始化表格数据
|
|
|
+ const initTableData = () => {
|
|
|
+ queryList();
|
|
|
+ };
|
|
|
+ // 获取组织
|
|
|
+ const getOrgList = () => {
|
|
|
+ systemApi.org.getList({ name: '', status: -1 }).then((res: any) => {
|
|
|
+ orgList.value = res;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ // 获取区域
|
|
|
+ const getPlotList = () => {
|
|
|
+ api.regionalManage.allList({})
|
|
|
+ .then((res: any) => {
|
|
|
+ plotList.value = res.Info || []
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // 获取楼宇
|
|
|
+ const getFloorList = () => {
|
|
|
+ api.floor.allList({})
|
|
|
+ .then((res: any) => {
|
|
|
+ floorList.value = res.Info || []
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // 获取单元
|
|
|
+ const getUnitList = () => {
|
|
|
+ api.unit.getListByFloorId({ floorId: state.tableData.param.floorId })
|
|
|
+ .then((res: any) => {
|
|
|
+ (unitList.value as any) = res ? [res] : []
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const queryList = () => {
|
|
|
+ state.tableData.loading = true
|
|
|
+ api.resident.getList(state.tableData.param).then((res: any) => {
|
|
|
+ console.log(res);
|
|
|
+ state.tableData.data = res.Data || [];
|
|
|
+ state.tableData.total = res.Total;
|
|
|
+ state.tableData.loading = false
|
|
|
+ });
|
|
|
+ };
|
|
|
+ const onPlotChange = () => {
|
|
|
+ floorList.value = []
|
|
|
+ unitList.value = []
|
|
|
+ state.tableData.param.floorId = ''
|
|
|
+ state.tableData.param.unitId = ''
|
|
|
+ if (state.tableData.param.plotId) {
|
|
|
+ getFloorList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ const onFloorChange = () => {
|
|
|
+ unitList.value = []
|
|
|
+ state.tableData.param.unitId = ''
|
|
|
+ if (state.tableData.param.floorId) {
|
|
|
+ getUnitList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //查看详情
|
|
|
+ const onOpenDetail=(row: any)=>{
|
|
|
+ detailRef.value.openDialog(row);
|
|
|
+ }
|
|
|
+ // 打开新增修改弹窗
|
|
|
+ const onOpenDialog = (row: any) => {
|
|
|
+ editDicRef.value.orgList = orgList.value
|
|
|
+ editDicRef.value.plotList = plotList.value
|
|
|
+ editDicRef.value.openDialog(row);
|
|
|
+ };
|
|
|
+
|
|
|
+ // 状态修改
|
|
|
+ const handleStatusChange = (row: any) => {
|
|
|
+ let text = row.status === 1 ? '启用' : '停用';
|
|
|
+ ElMessageBox.confirm('确认要"' + text + '":"' + row.name + '"住户吗?', '警告', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(function () {
|
|
|
+ return api.resident.setStatus(row.id, row.status);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ ElMessage.success(text + '成功');
|
|
|
+ })
|
|
|
+ .catch(function () {
|
|
|
+ row.status = row.status === 0 ? 1 : 0;
|
|
|
+ });
|
|
|
+ };
|
|
|
+ // 删除产品
|
|
|
+ const onRowDel = (row: any) => {
|
|
|
+ let msg = `此操作将永久删除住户:“${row.name}”,是否继续?`;
|
|
|
+ ElMessageBox.confirm(msg, '提示', {
|
|
|
+ confirmButtonText: '确认',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ api.resident.del(row.id).then(() => {
|
|
|
+ ElMessage.success('删除成功');
|
|
|
+ queryList();
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
+ };
|
|
|
+ // 页面加载时
|
|
|
+ onMounted(() => {
|
|
|
+ initTableData();
|
|
|
+ getOrgList();
|
|
|
+ getPlotList()
|
|
|
+ // getFloorList()
|
|
|
+ // getUnitList()
|
|
|
+ });
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ const resetQuery = (formEl: FormInstance | undefined) => {
|
|
|
+ if (!formEl) return;
|
|
|
+ formEl.resetFields();
|
|
|
+ queryList();
|
|
|
+ };
|
|
|
+
|
|
|
+ return {
|
|
|
+ addDicRef,
|
|
|
+ editDicRef,
|
|
|
+ detailRef,
|
|
|
+ queryRef,
|
|
|
+ onOpenDetail,
|
|
|
+ onOpenDialog,
|
|
|
+ onRowDel,
|
|
|
+ queryList,
|
|
|
+ resetQuery,
|
|
|
+ orgList,
|
|
|
+ plotList,
|
|
|
+ floorList,
|
|
|
+ unitList,
|
|
|
+ onPlotChange,
|
|
|
+ onFloorChange,
|
|
|
+ handleStatusChange,
|
|
|
+ ...toRefs(state),
|
|
|
+ };
|
|
|
+ },
|
|
|
+});
|
|
|
+</script>
|