diff --git a/src/api/event-boot/transient.ts b/src/api/event-boot/transient.ts
new file mode 100644
index 00000000..0fa54e99
--- /dev/null
+++ b/src/api/event-boot/transient.ts
@@ -0,0 +1,20 @@
+import request from '@/utils/request'
+
+export function downloadWaveFile(data: any) {
+ return request({
+ url: '/event-boot/transient/downloadWaveFile',
+ method: 'post',
+ data: data.lineId,
+ responseType: 'blob'
+ })
+}
+
+// 事件分析 shushiboxi 获取数据
+export function getMonitorEventAnalyseWave(data:any) {
+ return request({
+ url: "/event-boot/transient/getTransientAnalyseWave",
+ method: "post",
+ data
+ });
+}
+
diff --git a/src/views/auth/audit/index.vue b/src/views/auth/audit/index.vue
index f9a7b5d8..24b64a78 100644
--- a/src/views/auth/audit/index.vue
+++ b/src/views/auth/audit/index.vue
@@ -23,7 +23,7 @@ const tableStore = new TableStore({
method: 'POST',
url: '/user-boot/user/checkUserList',
column: [
- // { width: '60', type: 'checkbox' },
+ { width: '60', type: 'checkbox' },
{ title: '名称', field: 'name' },
{ title: '登录名', field: 'loginName' },
{ title: '角色', field: 'roleName' },
diff --git a/src/views/pms/voltageSags/monitoringPoint/online/eventStatistics/index.vue b/src/views/pms/voltageSags/monitoringPoint/online/eventStatistics/index.vue
index f99bb014..70f2e1d2 100644
--- a/src/views/pms/voltageSags/monitoringPoint/online/eventStatistics/index.vue
+++ b/src/views/pms/voltageSags/monitoringPoint/online/eventStatistics/index.vue
@@ -1,22 +1,22 @@