251 lines
6.5 KiB
Vue
251 lines
6.5 KiB
Vue
<template>
|
|
<div class="page">
|
|
<a-page-header :ghost="false" title="电池报警">
|
|
<div class="ele-text-secondary"> 电池报警记录。 </div>
|
|
</a-page-header>
|
|
<div class="ele-body">
|
|
<a-card :bordered="false">
|
|
<!-- 表格 -->
|
|
<ele-pro-table
|
|
ref="tableRef"
|
|
row-key="id"
|
|
:columns="columns"
|
|
:height="tableHeight"
|
|
:datasource="datasource"
|
|
v-model:selection="selection"
|
|
:scroll="{ x: 800 }"
|
|
>
|
|
<template #toolbar>
|
|
<search
|
|
:selection="selection"
|
|
@search="reload"
|
|
@add="openEdit"
|
|
@remove="removeBatch"
|
|
/>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'equipmentCode'">
|
|
<a @click="openEdit(record)">{{ record.equipmentCode }}</a>
|
|
</template>
|
|
<template v-if="column.key === 'createTime'">
|
|
<a-tooltip :title="`${toDateString(record.createTime)}`">
|
|
{{ timeAgo(record.createTime) }}
|
|
</a-tooltip>
|
|
</template>
|
|
<template v-if="column.key === 'action'">
|
|
<a-space>
|
|
<a @click="openEdit(record)">修改</a>
|
|
<a-divider type="vertical" />
|
|
<a-popconfirm
|
|
title="确定要删除此记录吗?"
|
|
@confirm="remove(record)"
|
|
>
|
|
<a class="ele-text-danger">删除</a>
|
|
</a-popconfirm>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</ele-pro-table>
|
|
</a-card>
|
|
<!-- 编辑弹窗 -->
|
|
<Edit v-model:visible="showEdit" :data="current" @done="reload" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<!--suppress TypeScriptValidateTypes -->
|
|
<script lang="ts" setup>
|
|
import { timeAgo } from 'ele-admin-pro';
|
|
import { createVNode, computed, ref } from 'vue';
|
|
import { message, Modal } from 'ant-design-vue';
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
|
import type { EleProTable } from 'ele-admin-pro';
|
|
import type {
|
|
DatasourceFunction,
|
|
ColumnItem
|
|
} from 'ele-admin-pro/es/ele-pro-table/types';
|
|
import { toDateString } from 'ele-admin-pro';
|
|
import Search from './components/search.vue';
|
|
import Edit from './components/edit.vue';
|
|
import {
|
|
pageEquipmentAlarm,
|
|
removeEquipmentAlarm,
|
|
removeBatchEquipmentAlarm
|
|
} from '@/api/apps/equipment/alarm';
|
|
import type {
|
|
EquipmentAlarm,
|
|
EquipmentAlarmParam
|
|
} from '@/api/apps/equipment/alarm/model';
|
|
import { Category } from '@/api/goods/category/model';
|
|
// import { getDictionaryOptions } from '@/utils/common';
|
|
// import { useUserStore } from '@/store/modules/user';
|
|
|
|
// 表格实例
|
|
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
|
|
|
// 当前用户信息
|
|
// const brand = getDictionaryOptions('serverBrand');
|
|
|
|
// 表格列配置
|
|
const columns = ref<ColumnItem[]>([
|
|
{
|
|
key: 'index',
|
|
width: 48,
|
|
align: 'center',
|
|
fixed: 'left',
|
|
hideInSetting: true,
|
|
customRender: ({ index }) => index + (tableRef.value?.tableIndex ?? 0)
|
|
},
|
|
{
|
|
title: '设备编号',
|
|
dataIndex: 'equipmentCode',
|
|
key: 'equipmentCode',
|
|
fixed: 'left'
|
|
},
|
|
{
|
|
title: '所属商户',
|
|
dataIndex: 'merchantName',
|
|
sorter: true,
|
|
ellipsis: true
|
|
},
|
|
{
|
|
title: '报警类型',
|
|
dataIndex: 'alarmType',
|
|
key: 'alarmType',
|
|
ellipsis: true
|
|
},
|
|
{
|
|
title: '创建时间',
|
|
dataIndex: 'createTime',
|
|
key: 'createTime',
|
|
sorter: true,
|
|
ellipsis: true,
|
|
customRender: ({ text }) => toDateString(text)
|
|
},
|
|
{
|
|
title: '操作',
|
|
key: 'action',
|
|
width: 200,
|
|
align: 'center',
|
|
hideInSetting: true
|
|
}
|
|
]);
|
|
|
|
// 表格选中数据
|
|
const selection = ref<EquipmentAlarm[]>([]);
|
|
// 当前编辑数据
|
|
const current = ref<EquipmentAlarm | null>(null);
|
|
// 是否显示编辑弹窗
|
|
const showEdit = ref(false);
|
|
// 树形数据
|
|
// const data = ref<Category[]>([]);
|
|
|
|
// 表格数据源
|
|
const datasource: DatasourceFunction = ({
|
|
page,
|
|
limit,
|
|
where,
|
|
orders,
|
|
filters
|
|
}) => {
|
|
if (filters) {
|
|
where.brand = filters.brand;
|
|
}
|
|
return pageEquipmentAlarm({ ...where, ...orders, page, limit });
|
|
};
|
|
|
|
/* 搜索 */
|
|
const reload = (where?: EquipmentAlarmParam) => {
|
|
selection.value = [];
|
|
tableRef?.value?.reload({ where: where });
|
|
};
|
|
|
|
// 搜索是否展开
|
|
const searchExpand = ref(false);
|
|
|
|
// 表格固定高度
|
|
const fixedHeight = ref(false);
|
|
|
|
// 表格高度
|
|
const tableHeight = computed(() => {
|
|
return fixedHeight.value
|
|
? searchExpand.value
|
|
? 'calc(100vh - 618px)'
|
|
: 'calc(100vh - 562px)'
|
|
: void 0;
|
|
});
|
|
|
|
/* 打开编辑弹窗 */
|
|
const openEdit = (row?: EquipmentAlarm) => {
|
|
current.value = row ?? null;
|
|
showEdit.value = true;
|
|
};
|
|
|
|
/* 打开用户详情弹窗 */
|
|
// const openInfo = (row?: EquipmentAlarm) => {
|
|
// current.value = row ?? null;
|
|
// showEdit.value = true;
|
|
// };
|
|
|
|
/* 删除单个 */
|
|
const remove = (row: EquipmentAlarm) => {
|
|
const hide = message.loading('请求中..', 0);
|
|
removeEquipmentAlarm(row.id)
|
|
.then((msg) => {
|
|
hide();
|
|
message.success(msg);
|
|
reload();
|
|
})
|
|
.catch((e) => {
|
|
hide();
|
|
message.error(e.message);
|
|
});
|
|
};
|
|
|
|
/* 批量删除 */
|
|
const removeBatch = () => {
|
|
if (!selection.value.length) {
|
|
message.error('请至少选择一条数据');
|
|
return;
|
|
}
|
|
Modal.confirm({
|
|
title: '提示',
|
|
content: '确定要删除选中的记录吗?',
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
maskClosable: true,
|
|
onOk: () => {
|
|
const hide = message.loading('请求中..', 0);
|
|
removeBatchEquipmentAlarm(selection.value.map((d) => d.id))
|
|
.then((msg) => {
|
|
hide();
|
|
message.success(msg);
|
|
reload();
|
|
})
|
|
.catch((e) => {
|
|
hide();
|
|
message.error(e.message);
|
|
});
|
|
}
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'EquipmentAlarmIndex'
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
// 文字超出隐藏(两行)
|
|
// 需要设置文字容器的宽度
|
|
.twoline-hide {
|
|
width: 320px;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
white-space: normal;
|
|
}
|
|
</style>
|