import { Http } from '../utils/http-p'; class CityModel extends Http { getCityList(){ return this.request({ url:'/shopping/switcharea.do?m=getProvinceCityShop' }) } selectShop(ccCode,shopId){ return this.request({ url:'/shopping/switcharea.do?m=selectShop', data: { cccode: ccCode, areaid: shopId } }) } searchShop(value){ return this.request({ url:'/shopping/getDistributorAddressList.do', data: { search: value } }) } } export {CityModel};