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.
duomendian/api/esp.js

19 lines
267 B

3 months ago
import request from "@/utils/request.js";
/**
* erp设置
*
*/
export function erpConfig(id,data) {
return request.get('admin/erp/config');
}
/**
* 门店-erp设置
*
*/
export function storeErpConfig(id,data) {
return request.get('store/erp/config');
}