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.
|
|
// appId: 正式 null | 测试 null
export const DEV = "dev"; // dev 测试 | prod 正式
export const VERSION = '1.0.0'; // 版本号
export const DEVURL = 'http://192.168.3.29'; // 测试服请求地址
export const PRODURL = ''; // 正式服请求地址
/* 供应商相关接口 */export const API_SUPPLIER_INDEX = '/api/supplier/index'; // 落地页
export const API_SUPPLIER_LOGIN = '/api/supplier/login'; // 登录
export const API_SUPPLIER_MATERIALLIST = '/api/supplier/materialList'; // 物资列表
export const API_SUPPLIER_QUOTATIONAPPLY = '/api/supplier/quotationApply'; // 申请报价
export const API_SUPPLIER_QUOTATIONORDERLIST = '/api/supplier/quotationOrderList'; // 申请报价-订单列表
export const API_SUPPLIER_PURCHASEORDERLIST = '/api/supplier/purchaseOrderList'; // 供货订单列表
|