Blame view

store-pc/src/api/lqMdRoom.js 197 Bytes
b5df6609   “wangming”   ```
1
2
3
4
5
6
7
8
9
  import request from '@/utils/request'
  
  export function getRoomsByStoreId(storeId) {
    return request({
      url: '/api/Extend/LqMdRoom/GetByStoreId',
      method: 'get',
      data: { storeId }
    })
  }