12345678910111213141516 |
- import request from '@/utils/request'
- /**
- * 对讲频道相关接口
- * @param params
- * @returns {*|Promise|Promise<unknown>}
- */
- export function getList(params) {
- return request({
- url: '/ncs/channel_im_history/channel_im_history_list',
- method: 'POST',
- loading: true,
- data: params,
- headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
- })
- }
|