123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- <template>
- <div class="page page-full">
- <div class="">
- <el-form :model="tableData.param" ref="queryRef" inline>
- <el-form-item class="mb-0">
- <el-button type="primary" class="ml10" @click="onOpenAdd" v-auth="'add'">
- <el-icon>
- <ele-FolderAdd />
- </el-icon>
- 新增告警
- </el-button>
- <el-button type="primary" class="ml10" @click="onOpenLevel" v-auth="'level'">
- <el-icon>
- <ele-Setting />
- </el-icon>
- 级别设置
- </el-button>
- </el-form-item>
- </el-form>
- </div>
- <el-divider />
- <el-row class="page-full-part">
- <el-col :span="6" v-for="(item, index) in tableData.data" :key="index">
- <div class="card">
- <div class="ant-card">
- <div class="ant-card-body">
- <div class="pro-table-card-item">
- <div class="card-item-avatar" v-col="'image'">
- <img width="88" height="88" src="/src/assets/img/alarm.svg" />
- </div>
- <div class="card-item-body">
- <div class="card-item-header">
- <div class="" v-col="'name'">
- <div class="ellipsis card-item-header-name" style="width: 100%; height: 45px">{{ item.name }}</div>
- </div>
- </div>
- <div class="card-item-content" v-col="'alarm'">
- <div>
- <label>触发:</label>
- <div class="">
- <div>级别:</div>
- </div>
- </div>
- <div>
- <label>{{ item.triggerTypeName }}</label>
- <div class="">
- <div>{{ item.alarmLevel.name }}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="card-state success" v-if="item.status == 1" v-col="'liststatus'">
- <div class="card-state-content">
- <span class="ant-badge ant-badge-status ant-badge-not-a-wrapper">
- <span class="ant-badge-status-dot ant-badge-status-success"></span>
- <span class="ant-badge-status-text">已启用</span>
- </span>
- </div>
- </div>
- <div class="card-state error" v-if="item.status == 0" v-col="'liststatus'">
- <div class="card-state-content">
- <span class="ant-badge ant-badge-status ant-badge-not-a-wrapper"><span class="ant-badge-status-dot ant-badge-status-error"></span><span class="ant-badge-status-text">未启用</span></span>
- </div>
- </div>
- </div>
- </div>
- <div class="card-tools">
- <el-button type="primary" text bg @click="onOpenEdit(item)" v-auth="'edit'">
- <el-icon>
- <ele-Edit />
- </el-icon>
- 修改
- </el-button>
- <el-button type="warning" text bg @click="onActionStatus(item)" v-if="item.status == 0" v-auth="'status'">
- <el-icon>
- <ele-Check />
- </el-icon>
- 启用
- </el-button>
- <el-button type="info" text bg @click="onActionStatus(item)" v-if="item.status == 1" v-auth="'status'">
- <el-icon>
- <ele-Close />
- </el-icon>
- 禁用
- </el-button>
- <el-button type="info" text bg @click="onRowDel(item)" v-auth="'del'">
- <el-icon>
- <ele-Delete />
- </el-icon>
- 删除
- </el-button>
- </div>
- </div>
- </el-col>
- </el-row>
- <pagination v-show="tableData.total > 0" :total="tableData.total" v-model:page="tableData.param.pageNum" v-model:limit="tableData.param.pageSize" @pagination="dataList" />
- <EditDic ref="editDicRef" @dataList="dataList" />
- <LevelDic ref="levelDicRef" @dataList="dataList" />
- </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 LevelDic from './component/level.vue';
- import alarm from '/@/api/alarm';
- // 定义接口来定义对象的类型
- interface TableDataRow {
- id: number;
- name: string;
- key: string;
- createBy: string;
- }
- interface TableDataState {
- ids: number[];
- tableData: {
- data: Array<TableDataRow>;
- total: number;
- loading: boolean;
- param: {
- pageNum: number;
- pageSize: number;
- name: string;
- level: number;
- triggerType: number;
- };
- };
- }
- export default defineComponent({
- name: 'setlist',
- components: { EditDic, LevelDic },
- setup() {
- const addDicRef = ref();
- const levelDicRef = ref();
- const editDicRef = ref();
- const detailRef = ref();
- const queryRef = ref();
- const state = reactive<TableDataState>({
- tableData: {
- data: [],
- total: 0,
- loading: false,
- param: {
- pageNum: 1,
- pageSize: 20,
- name: '',
- level: '',
- triggerType: '',
- },
- },
- });
- // 初始化表格数据
- const initTableData = () => {
- dataList();
- };
- const dataList = () => {
- state.tableData.loading = true;
- alarm.common
- .getList(state.tableData.param)
- .then((res: any) => {
- state.tableData.data = res.list;
- state.tableData.total = res.Total;
- })
- .finally(() => (state.tableData.loading = false));
- };
- // 打开新增菜单弹窗
- const onOpenAdd = () => {
- editDicRef.value.openDialog();
- };
- const onOpenLevel = () => {
- levelDicRef.value.openDialog();
- };
- // 打开修改模型弹窗
- const onOpenEdit = (row: TableDataRow) => {
- editDicRef.value.openDialog({ ...row });
- };
- //打开数据记录
- const onOpenRecord = (row: TableDataRow) => {
- detailRef.value.openDialog(row);
- };
- const onRowDel = (row?: TableDataRow) => {
- let msg = '你确定要删除所选数据?';
- let ids: number[] = [];
- if (row) {
- msg = `此操作将永久删除告警:“${row.name}”,是否继续?`;
- ids = row.id;
- } else {
- ids = state.ids;
- }
- if (ids.length === 0) {
- ElMessage.error('请选择要删除的数据。');
- return;
- }
- ElMessageBox.confirm(msg, '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(() => {
- alarm.common.delete(ids).then(() => {
- ElMessage.success('删除成功');
- dataList();
- });
- })
- };
- // 页面加载时
- onMounted(() => {
- initTableData();
- });
- /** 重置按钮操作 */
- const resetQuery = (formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- dataList();
- };
- const onActionStatus = (item: TableDataRow[]) => {
- if (item.status == 0) {
- alarm.common.deploy({ id: item.id }).then(() => {
- dataList();
- });
- } else {
- alarm.common.undeploy({ id: item.id }).then(() => {
- dataList();
- });
- }
- }
- return {
- onActionStatus,
- addDicRef,
- editDicRef,
- detailRef,
- queryRef,
- levelDicRef,
- onOpenRecord,
- onOpenLevel,
- onOpenAdd,
- onOpenEdit,
- onRowDel,
- dataList,
- resetQuery,
- ...toRefs(state),
- };
- },
- });
- </script>
- <style>
- .el-button.is-text:not(.is-disabled).is-has-bg {
- background-color: var(--next-border-color-light);
- }
- .card {
- margin: 0 10px 20px;
- }
- .ant-card {
- box-sizing: border-box;
- font-size: 14px;
- font-variant: tabular-nums;
- border: 1px solid var(--next-border-color-light);
- line-height: 1.5;
- list-style: none;
- font-feature-settings: 'tnum';
- position: relative;
- border-radius: 2px;
- transition: all 0.3s;
- overflow: hidden;
- }
- .ant-card-body {
- padding: 12px;
- zoom: 1;
- overflow: hidden;
- }
- .pro-table-card-item {
- display: flex;
- justify-content: stretch;
- .card-item-avatar{
- display: flex;
- align-items: center;
- }
- }
- .pro-table-card-item .card-item-avatar {
- margin-right: 16px;
- }
- .pro-table-card-item .card-item-body {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- width: 0;
- }
- .pro-table-card-item .card-item-body .card-item-header {
- display: flex;
- margin-bottom: 12px;
- margin-top: 10px;
- }
- .pro-table-card-item .card-item-body .card-item-content {
- display: flex;
- flex-wrap: wrap;
- font-weight: bolder;
- line-height: 25px;
- }
- .ellipsis {
- display: -webkit-box;
- overflow: hidden;
- text-align: left;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- .card-item-body .card-item-header .card-item-header-name {
- font-weight: 700;
- font-size: 16px;
- }
- .card-state {
- position: absolute;
- top: 0px;
- right: -12px;
- display: flex;
- justify-content: center;
- width: 100px;
- padding: 2px 0;
- background-color: rgba(89, 149, 245, 0.15);
- transform: skewX(45deg);
- }
- .card-state.success {
- background-color: #f6ffed;
- color: #000;
- }
- .iot-card .card-warp .card-content .card-state.error {
- background-color: rgba(229, 0, 18, .1);
- }
- .card-state .card-state-content {
- transform: skewX(-45deg);
- }
- .ant-badge-status-success {
- background-color: #52c41a;
- }
- .ant-badge-status-error {
- background-color: #ff4d4f;
- }
- .ant-badge-status-dot {
- position: relative;
- top: -1px;
- display: inline-block;
- width: 6px;
- height: 6px;
- vertical-align: middle;
- border-radius: 50%;
- }
- .card-tools {
- display: flex;
- margin-top: 8px;
- justify-content: space-between;
- overflow: hidden;
- gap: 8px;
- .el-button {
- flex: 1;
- margin-left: 0;
- }
- }
- /* /* .card-tools .card-button:not(:last-child) {
- margin-right: 8px;
- } */
- .card-tools .card-button {
- display: flex;
- flex-grow: 1;
- }
- .card-tools .card-button>span,
- .card-tools .card-button button {
- width: 100%;
- border-radius: 0;
- }
- */ .ant-btn-link {
- color: #1d39c4;
- border-color: transparent;
- background: transparent;
- box-shadow: none;
- }
- .ant-badge-status-text {
- margin-left: 8px;
- font-size: 14px;
- }
- .ant-btn {
- line-height: 1.5715;
- position: relative;
- display: inline-block;
- font-weight: 400;
- white-space: nowrap;
- text-align: center;
- background-image: none;
- box-shadow: 0 2px 0 rgb(0 0 0 / 2%);
- cursor: pointer;
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- touch-action: manipulation;
- height: 32px;
- padding: 4px 15px;
- font-size: 14px;
- border-radius: 2px;
- color: rgba(0, 0, 0, 0.85);
- border: 1px solid #d9d9d9;
- background: #fff;
- }
- .ant-btn>.anticon {
- line-height: 1;
- }
- .ant-btn>span {
- display: inline-block;
- }
- .cardflex {
- display: flex;
- justify-content: space-between;
- }
- .statusname {
- font-size: 30px;
- margin-top: 10px;
- margin-bottom: 15px;
- }
- .comtest {
- margin-top: 20px;
- height: 30px;
- line-height: 30px;
- }
- </style>
|