store.js 377 B

12345678910111213141516
  1. import axios from '@/libs/axios.js'
  2. // 查询门店列表
  3. export const findStoreList = param => {
  4. return axios.request({
  5. url: `store/findList`,
  6. method: 'post',
  7. data: param
  8. })
  9. }
  10. // 查询门店摄像头流列表
  11. export const findVsDeviceChannels = param => {
  12. return axios.request({
  13. url: `store/findVsDeviceChannels/${param.storeId}`,
  14. method: 'get',
  15. })
  16. }