store.js 436 B

1234567891011121314
  1. import Request from '../common/request.js';
  2. let request = new Request().http
  3. // 获取门店详情
  4. export function getStoreById(data) {
  5. return request('/store/app/store/getStoreById',data,'GET');
  6. }
  7. // 获取门店详情新
  8. export function getNewStoreById(data) {
  9. return request('/store/app/store/'+data,data,'GET');
  10. }
  11. export function getIndexData(data) {
  12. return request('/store/app/index/getIndexData',data,'GET');
  13. }