changeAdr.js 521 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
import {requestPOST,requestGET} from "@/utils/request.js";


console.log(process.env,'-----------------config------')
 // wx
 export default {
    query_operating_area_area_list(data) {
        return requestPOST(`${process.env.OLSHOP_URL}/operatingArea/query_operating_area_area_list?operatingAreaGroupId=${data}`);
    },
    query_Location_operating_area_area_list(data) {
        return requestGET(`${process.env.OLSHOP_URL}/operatingArea/query_Location_operating_area_area_list?location=${data.location}`);
    },
 }