玛尔挡水温监测系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

channel.js 310B

12345678910111213141516
  1. /*
  2. * @Author: wrh
  3. * @Date: 2025-08-20 16:54:03
  4. * @LastEditors: wrh
  5. * @LastEditTime: 2025-08-20 19:58:52
  6. */
  7. import request from '@/utils/request'
  8. // 查询部门列表
  9. export function listChannel(query) {
  10. return request({
  11. url: '/monitoring/channel/list',
  12. method: 'get',
  13. params: query
  14. })
  15. }