feat(property): 添加灯控开关功能

This commit is contained in:
zcxlsm 2025-08-20 17:23:13 +08:00
parent c090779319
commit 81fc3bf2ca
4 changed files with 71 additions and 79 deletions

View File

@ -59,3 +59,21 @@ export function lightInfoUpdate(data: LightInfoForm) {
export function lightInfoRemove(id: ID | IDS) { export function lightInfoRemove(id: ID | IDS) {
return requestClient.deleteWithMsg<void>(`/property/lightInfo/${id}`); return requestClient.deleteWithMsg<void>(`/property/lightInfo/${id}`);
} }
/**
*
* @param data
* @returns void
*/
export function switchSingleLight(data: LightInfoForm) {
return requestClient.postWithMsg<void>('/property/lightInfo/switch', data);
}
/**
*
* @param data
* @returns void
*/
export function switchBatchLight(data: LightInfoForm) {
return requestClient.postWithMsg<void>('/property/lightInfo/switch', data);
}

View File

@ -14,7 +14,7 @@ export interface LightInfoVO {
/** /**
* 01 * 01
*/ */
isOn: number; isOn: boolean;
/** /**
* *
@ -62,7 +62,7 @@ export interface LightInfoForm extends BaseEntity {
/** /**
* 01 * 01
*/ */
isOn?: number; isOn: boolean;
/** /**
* *

View File

@ -22,7 +22,6 @@ export const columns: VxeGridProps['columns'] = [
title: '位置描述', title: '位置描述',
field: 'locationRemark', field: 'locationRemark',
}, },
{ {
title: '楼 层', title: '楼 层',
field: 'floorName', field: 'floorName',
@ -30,7 +29,7 @@ export const columns: VxeGridProps['columns'] = [
{ {
title: '开关状态', title: '开关状态',
field: 'isOn', field: 'isOn',
slots: { default: 'isOn' }, slots: { default: 'isOn' },
}, },
{ {
field: 'action', field: 'action',

View File

@ -1,26 +1,27 @@
<script setup lang="ts"> <script setup lang="ts">
import { TableSwitch } from "#/components/table" import { TableSwitch } from "#/components/table"
import { Page, useVbenDrawer, type VbenFormProps } from '@vben/common-ui'; import { Page, useVbenDrawer, type VbenFormProps } from '@vben/common-ui'
import { Modal, Popconfirm, Space } from 'ant-design-vue'; import { Modal, Popconfirm, Space } from 'ant-design-vue'
import {
useVbenVxeGrid,
vxeCheckboxChecked,
type VxeGridProps
} from '#/adapter/vxe-table';
import { import {
lightInfoExport, useVbenVxeGrid,
lightInfoList, vxeCheckboxChecked,
lightInfoRemove, type VxeGridProps
} from '#/api/property/meter/lightInfo'; } from '#/adapter/vxe-table'
import type { LightInfoForm } from '#/api/property/meter/lightInfo/model';
import { commonDownloadExcel } from '#/utils/file/download';
import lightInfoDrawer from './lightInfo-drawer.vue'; import {
import { columns, querySchema } from './data'; lightInfoList,
lightInfoExport,
lightInfoRemove,
switchSingleLight,
} from '#/api/property/meter/lightInfo'
import type { LightInfoForm } from '#/api/property/meter/lightInfo/model'
import { commonDownloadExcel } from '#/utils/file/download'
import lightInfoDrawer from './lightInfo-drawer.vue'
import { columns, querySchema } from './data'
const formOptions: VbenFormProps = { const formOptions: VbenFormProps = {
commonConfig: { commonConfig: {
@ -31,16 +32,7 @@ const formOptions: VbenFormProps = {
}, },
schema: querySchema(), schema: querySchema(),
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4', wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
// RangePicker / }
//
// fieldMappingTime: [
// [
// 'createTime',
// ['params[beginTime]', 'params[endTime]'],
// ['YYYY-MM-DD 00:00:00', 'YYYY-MM-DD 23:59:59'],
// ],
// ],
};
const gridOptions: VxeGridProps = { const gridOptions: VxeGridProps = {
checkboxConfig: { checkboxConfig: {
@ -64,7 +56,7 @@ const gridOptions: VxeGridProps = {
pageNum: page.currentPage, pageNum: page.currentPage,
pageSize: page.pageSize, pageSize: page.pageSize,
...formValues, ...formValues,
}); })
}, },
}, },
}, },
@ -73,50 +65,50 @@ const gridOptions: VxeGridProps = {
}, },
// //
id: 'property-lightInfo-index' id: 'property-lightInfo-index'
}; }
const [BasicTable, tableApi] = useVbenVxeGrid({ const [BasicTable, tableApi] = useVbenVxeGrid({
formOptions, formOptions,
gridOptions, gridOptions,
}); })
const [LightInfoDrawer, drawerApi] = useVbenDrawer({ const [LightInfoDrawer, drawerApi] = useVbenDrawer({
connectedComponent: lightInfoDrawer, connectedComponent: lightInfoDrawer,
}); })
function handleAdd() { function handleAdd() {
drawerApi.setData({}); drawerApi.setData({})
drawerApi.open(); drawerApi.open()
} }
async function handleEdit(row: Required<LightInfoForm>) { async function handleEdit(row: Required<LightInfoForm>) {
drawerApi.setData({ id: row.id }); drawerApi.setData({ id: row.id })
drawerApi.open(); drawerApi.open()
} }
async function handleDelete(row: Required<LightInfoForm>) { async function handleDelete(row: Required<LightInfoForm>) {
await lightInfoRemove(row.id); await lightInfoRemove(row.id)
await tableApi.query(); await tableApi.query()
} }
function handleMultiDelete() { function handleMultiDelete() {
const rows = tableApi.grid.getCheckboxRecords(); const rows = tableApi.grid.getCheckboxRecords()
const ids = rows.map((row: Required<LightInfoForm>) => row.id); const ids = rows.map((row: Required<LightInfoForm>) => row.id)
Modal.confirm({ Modal.confirm({
title: '提示', title: '提示',
okType: 'danger', okType: 'danger',
content: `确认删除选中的${ids.length}条记录吗?`, content: `确认删除选中的${ids.length}条记录吗?`,
onOk: async () => { onOk: async () => {
await lightInfoRemove(ids); await lightInfoRemove(ids)
await tableApi.query(); await tableApi.query()
}, },
}); })
} }
function handleDownloadExcel() { function handleDownloadExcel() {
commonDownloadExcel(lightInfoExport, '灯控开关信息数据', tableApi.formApi.form.values, { commonDownloadExcel(lightInfoExport, '灯控开关信息数据', tableApi.formApi.form.values, {
fieldMappingTime: formOptions.fieldMappingTime, fieldMappingTime: formOptions.fieldMappingTime,
}); })
} }
</script> </script>
@ -125,55 +117,38 @@ function handleDownloadExcel() {
<BasicTable table-title="灯控开关信息列表"> <BasicTable table-title="灯控开关信息列表">
<template #toolbar-tools> <template #toolbar-tools>
<Space> <Space>
<a-button <a-button type="primary" v-access:code="['property:lightInfo:add']" @click="handleAdd">
v-access:code="['property:lightInfo:export']" {{ $t('pages.common.add') }}
@click="handleDownloadExcel"
>
{{ $t('pages.common.export') }}
</a-button> </a-button>
<a-button <a-button :disabled="!vxeCheckboxChecked(tableApi)" danger type="primary"
:disabled="!vxeCheckboxChecked(tableApi)" v-access:code="['property:lightInfo:remove']" @click="handleMultiDelete">
danger
type="primary"
v-access:code="['property:lightInfo:remove']"
@click="handleMultiDelete">
{{ $t('pages.common.delete') }} {{ $t('pages.common.delete') }}
</a-button> </a-button>
<a-button <a-button :disabled="!vxeCheckboxChecked(tableApi)" danger type="primary">
type="primary" 关灯
v-access:code="['property:lightInfo:add']" </a-button>
@click="handleAdd" <a-button :disabled="!vxeCheckboxChecked(tableApi)" success type="primary">
> 开灯
{{ $t('pages.common.add') }}
</a-button> </a-button>
</Space> </Space>
</template> </template>
<template #action="{ row }"> <template #action="{ row }">
<Space> <Space>
<ghost-button <ghost-button v-access:code="['property:lightInfo:edit']" @click.stop="handleEdit(row)">
v-access:code="['property:lightInfo:edit']"
@click.stop="handleEdit(row)"
>
{{ $t('pages.common.edit') }} {{ $t('pages.common.edit') }}
</ghost-button> </ghost-button>
<Popconfirm <Popconfirm :get-popup-container="getVxePopupContainer" placement="left" title="确认删除?"
:get-popup-container="getVxePopupContainer" @confirm="handleDelete(row)">
placement="left" <ghost-button danger v-access:code="['property:lightInfo:remove']" @click.stop="">
title="确认删除?"
@confirm="handleDelete(row)"
>
<ghost-button
danger
v-access:code="['property:lightInfo:remove']"
@click.stop=""
>
{{ $t('pages.common.delete') }} {{ $t('pages.common.delete') }}
</ghost-button> </ghost-button>
</Popconfirm> </Popconfirm>
</Space> </Space>
</template> </template>
<template #isOn="{ row }"> <template #isOn="{ row }">
<TableSwitch :checkedValue=true :unCheckedValue=false :value="row.isOn" @reload="() => tableApi.query()" /> <TableSwitch :checkedValue=true :unCheckedValue=false v-model:value="row.isOn" checked-children=""
un-checked-children="关" :api="() => switchSingleLight({'id':row.id, 'isOn':row.isOn})"
@reload="() => tableApi.query()" />
</template> </template>
</BasicTable> </BasicTable>
<LightInfoDrawer @reload="tableApi.query()" /> <LightInfoDrawer @reload="tableApi.query()" />