You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
233 B
10 lines
233 B
import request from '@/utils/request'
|
|
|
|
// 调用非机预警设备订阅事件
|
|
export function eventSubscription(data) {
|
|
return request({
|
|
url: '/nonAutomaticWarning/eventSubscription',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|