添加填报人

This commit is contained in:
zhujiyan
2024-06-05 15:08:24 +08:00
parent fa4ce4693e
commit a66734a9f9
26 changed files with 235 additions and 44 deletions

View File

@@ -26,7 +26,7 @@ import TableHeader from '@/components/table/header/index.vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { useDictData } from '@/stores/dictData'
import { ValueType } from 'exceljs'
import {handleWarningAlarmFlag} from '@/api/process-boot/electricitymanagement.ts'
import { handleWarningAlarmFlag } from '@/api/process-boot/electricitymanagement'
// Steady_Statis
const dictData = useDictData()
//字典获取超标指标
@@ -101,8 +101,8 @@ const tableStore = new TableStore({
title: '请确认发起告警单!'
},
click: row => {
handleWarningAlarmFlag(row).then((res)=>{
console.log(res);
handleWarningAlarmFlag(row).then(res => {
console.log(res)
ElMessage.success('发起告警单成功!')
tableStore.index()
})
@@ -125,8 +125,8 @@ const tableStore = new TableStore({
},
click: row => {
handleWarningAlarmFlag(row).then((res)=>{
console.log(res);
handleWarningAlarmFlag(row).then(res => {
console.log(res)
ElMessage.success('发起预警单成功!')
tableStore.index()
})