You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
309 B
9 lines
309 B
import axios from '@/utils/request'
|
|
|
|
import config from '@/common/config'
|
|
|
|
let base=config.getSysBasePath();
|
|
|
|
//普通查询 条件之间and关系
|
|
export const selectshopLocationBySysDeptIdApi = params => { return axios.post(`${base}/mdp/mallm/shop/shopLocation/selectshopLocationBySysDeptId`, params); };
|
|
|