diff --git a/src/api/algorithm-boot/scopeConfig.ts b/src/api/algorithm-boot/scopeConfig.ts
new file mode 100644
index 0000000..8e9232a
--- /dev/null
+++ b/src/api/algorithm-boot/scopeConfig.ts
@@ -0,0 +1,42 @@
+import createAxios from '@/utils/request'
+
+/**
+ * 删除数据合理范围
+ **/
+export const pqDelete = (data: any) => {
+ return createAxios({
+ url: '/algorithm-boot/pqReasonableRange/delete',
+ method: 'post',
+ params: data
+ })
+}
+/**
+ * 按条件获取数据合理范围
+ **/
+export const getData = (data: any) => {
+ return createAxios({
+ url: '/algorithm-boot/pqReasonableRange/getData',
+ method: 'post',
+ data
+ })
+}
+/**
+ * 新增数据合理范围
+ **/
+export const save = (data: any) => {
+ return createAxios({
+ url: '/algorithm-boot/pqReasonableRange/save',
+ method: 'post',
+ data
+ })
+}
+/**
+ * 更新数据合理范围
+ **/
+export const update = (data: any) => {
+ return createAxios({
+ url: '/algorithm-boot/pqReasonableRange/update',
+ method: 'post',
+ data
+ })
+}
diff --git a/src/api/cs-system-boot/appinfo.ts b/src/api/cs-system-boot/appinfo.ts
index 77b953c..fc20db9 100644
--- a/src/api/cs-system-boot/appinfo.ts
+++ b/src/api/cs-system-boot/appinfo.ts
@@ -1,30 +1,69 @@
-import createAxios from '@/utils/request'
-
-/**
- * 查询app个人中心信息详情
- * @param id
- */
-export const queryAppInfo = (type: string) => {
- let form = new FormData()
- form.append('type', type)
- return createAxios({
- url: '/cs-system-boot/appinfo/queryAppInfoByType',
- method: 'post',
- headers: {
- 'Content-Type': 'application/x-www-form-urlencoded'
- },
- data: form
- })
-}
-
-
-/**
- * 新增app基础信息
- **/
-export const addAppInfo = (data: { type: string, content: string }) => {
- return createAxios({
- url: '/cs-system-boot/appinfo/addAppInfo',
- method: 'post',
- data: data
- })
-}
+import createAxios from '@/utils/request'
+
+/**
+ * 查询app个人中心信息详情
+ * @param id
+ */
+export const queryAppInfo = (type: string) => {
+ let form = new FormData()
+ form.append('type', type)
+ return createAxios({
+ url: '/cs-system-boot/appinfo/queryAppInfoByType',
+ method: 'post',
+ headers: {
+ 'Content-Type': 'application/x-www-form-urlencoded'
+ },
+ data: form
+ })
+}
+
+/**
+ * 新增app基础信息
+ **/
+export const addAppInfo = (data: { type: string; content: string }) => {
+ return createAxios({
+ url: '/cs-system-boot/appinfo/addAppInfo',
+ method: 'post',
+ data: data
+ })
+}
+/**
+ * 切换告警配置启用状态
+ **/
+export const toggleActive = (data: any) => {
+ return createAxios({
+ url: '/cs-system-boot/csAlarmSet/toggleActive',
+ method: 'post',
+ params: data
+ })
+}
+/**
+ * 切换告警配置启用状态
+ **/
+export const csDelete = (data: any) => {
+ return createAxios({
+ url: '/cs-system-boot/csAlarmSet/delete',
+ method: 'post',
+ params: data
+ })
+}
+/**
+ * 新增告警配置
+ **/
+export const add = (data: any) => {
+ return createAxios({
+ url: '/cs-system-boot/csAlarmSet/add',
+ method: 'post',
+ data: data
+ })
+}
+/**
+ * 修改告警配置
+ **/
+export const update = (data: any) => {
+ return createAxios({
+ url: '/cs-system-boot/csAlarmSet/update',
+ method: 'post',
+ data: data
+ })
+}
diff --git a/src/layouts/admin/components/popup/adminInfo.vue b/src/layouts/admin/components/popup/adminInfo.vue
index b65e6a8..867fb71 100644
--- a/src/layouts/admin/components/popup/adminInfo.vue
+++ b/src/layouts/admin/components/popup/adminInfo.vue
@@ -1,51 +1,51 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/template/dialog.vue b/src/template/dialog.vue
index 87e4bc9..6e69e1f 100644
--- a/src/template/dialog.vue
+++ b/src/template/dialog.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/src/views/auth/userList/popupEdit.vue b/src/views/auth/userList/popupEdit.vue
index e8930bc..3424182 100644
--- a/src/views/auth/userList/popupEdit.vue
+++ b/src/views/auth/userList/popupEdit.vue
@@ -57,7 +57,7 @@
-
+
diff --git a/src/views/govern/alarm/alarmConfig/form.vue b/src/views/govern/alarm/alarmConfig/form.vue
new file mode 100644
index 0000000..6080d82
--- /dev/null
+++ b/src/views/govern/alarm/alarmConfig/form.vue
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 确定
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/govern/alarm/alarmConfig/index.vue b/src/views/govern/alarm/alarmConfig/index.vue
new file mode 100644
index 0000000..8776ab9
--- /dev/null
+++ b/src/views/govern/alarm/alarmConfig/index.vue
@@ -0,0 +1,152 @@
+
+
+
+
diff --git a/src/views/govern/alarm/scopeConfig/form.vue b/src/views/govern/alarm/scopeConfig/form.vue
new file mode 100644
index 0000000..9eb108f
--- /dev/null
+++ b/src/views/govern/alarm/scopeConfig/form.vue
@@ -0,0 +1,270 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 不参与
+ 参与
+
+
+
+
+ 不参与
+ 参与
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 确定
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/govern/alarm/scopeConfig/index.vue b/src/views/govern/alarm/scopeConfig/index.vue
new file mode 100644
index 0000000..f2ebca5
--- /dev/null
+++ b/src/views/govern/alarm/scopeConfig/index.vue
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 新增
+
+
+
+
+
+
+
diff --git a/src/views/govern/device/control/tabs/event.vue b/src/views/govern/device/control/tabs/event.vue
index 2a5bcc2..48342ed 100644
--- a/src/views/govern/device/control/tabs/event.vue
+++ b/src/views/govern/device/control/tabs/event.vue
@@ -182,7 +182,7 @@ const tableStore: any = new TableStore({
icon: 'el-icon-Check',
render: 'basicButton',
disabled: row => {
- return (props.deviceType === '2' && row.wavePath) || row.showName === '未知'
+ return !(props.deviceType === '2' && row.wavePath) || row.showName === '未知'
},
click: row => {
getFileByEventId(row.id).then(res => {
diff --git a/src/views/govern/manage/basic/dictionary.vue b/src/views/govern/manage/basic/dictionary.vue
index ecc58c7..84ec55c 100644
--- a/src/views/govern/manage/basic/dictionary.vue
+++ b/src/views/govern/manage/basic/dictionary.vue
@@ -3,47 +3,22 @@
-
-
+
+
-
-
+
+
-
+
@@ -99,8 +74,9 @@ const tableStore = new TableStore({
? row.cellValue == '/'
? '/'
: row.cellValue == 'M'
- ? '无相别'
- : row.cellValue + '相'
+ ? '/' : row.cellValue == 'T'
+ ? '/'
+ : row.cellValue + '相'
: '/'
}
},
@@ -114,7 +90,7 @@ const tableStore = new TableStore({
title: '操作', fixed: 'right',
align: 'center',
width: '180',
-
+
render: 'buttons',
buttons: [
{
diff --git a/src/views/govern/manage/basic/popupDictionary.vue b/src/views/govern/manage/basic/popupDictionary.vue
index 27e5565..8b09367 100644
--- a/src/views/govern/manage/basic/popupDictionary.vue
+++ b/src/views/govern/manage/basic/popupDictionary.vue
@@ -1,10 +1,10 @@
-
+
基础数据
-
+
-
+
拓展数据
-
+
{
- ElMessage.success('重启成功!')
+ ElMessage.success('重置成功!')
tableStore.onTableAction('search', {})
})
}
diff --git a/src/views/govern/sensitiveLoadMange/detail.vue b/src/views/govern/sensitiveLoadMange/detail.vue
index a8645df..a48bc26 100644
--- a/src/views/govern/sensitiveLoadMange/detail.vue
+++ b/src/views/govern/sensitiveLoadMange/detail.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/src/views/govern/setting/statisticalType/index.vue b/src/views/govern/setting/statisticalType/index.vue
index e578ff1..5ac3605 100644
--- a/src/views/govern/setting/statisticalType/index.vue
+++ b/src/views/govern/setting/statisticalType/index.vue
@@ -60,7 +60,7 @@ const tableStore = new TableStore({
{
title: '类型',
field: 'type',
- width: 200,
+ width: 250,
formatter: row => {
return options.value.filter((item: any) => item.value == row.cellValue)[0]?.name
}
diff --git a/src/views/setting/dictionary/list/popupDetailEdit.vue b/src/views/setting/dictionary/list/popupDetailEdit.vue
index b27ab14..e9bb170 100644
--- a/src/views/setting/dictionary/list/popupDetailEdit.vue
+++ b/src/views/setting/dictionary/list/popupDetailEdit.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/src/views/setting/dictionary/tree/popupForm.vue b/src/views/setting/dictionary/tree/popupForm.vue
index a2a5d35..7d89975 100644
--- a/src/views/setting/dictionary/tree/popupForm.vue
+++ b/src/views/setting/dictionary/tree/popupForm.vue
@@ -1,7 +1,7 @@
-
+
-
+
-
+
diff --git a/src/views/system/subject/form/index.vue b/src/views/system/subject/form/index.vue
index 84fe293..a64cc0f 100644
--- a/src/views/system/subject/form/index.vue
+++ b/src/views/system/subject/form/index.vue
@@ -1,5 +1,5 @@
-
+
全局