12345678910111213141516 |
- import axios from '@/libs/axios.js'
- // 查询门店列表
- export const findStoreList = param => {
- return axios.request({
- url: `store/findList`,
- method: 'post',
- data: param
- })
- }
- // 查询门店摄像头流列表
- export const findVsDeviceChannels = param => {
- return axios.request({
- url: `store/findVsDeviceChannels/${param.storeId}`,
- method: 'get',
- })
- }
|