diff --git a/canteen/common/api.js b/canteen/common/api.js index 2c4b17f..b92a7c9 100644 --- a/canteen/common/api.js +++ b/canteen/common/api.js @@ -1,8 +1,8 @@ // appId: 正式 null | 测试 null export const DEV = "dev"; // dev 测试 | prod 正式 export const VERSION = '1.0.0'; // 版本号 -// export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址 -export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址 +export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址 +// export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址 export const PRODURL = ''; // 正式服请求地址 export const API_CANTEEN_LOGIN = '/api/canteen/login'; // 登录 diff --git a/canteen/pages/purchase/detail.vue b/canteen/pages/purchase/detail.vue index fe0a5fa..4def20d 100644 --- a/canteen/pages/purchase/detail.vue +++ b/canteen/pages/purchase/detail.vue @@ -145,13 +145,13 @@ key: 'supplier_name' },{ key: 'pre_tax_price', - label: '税前价格' + label: '含税价' },{ key: 'total_tax_amount', - label: '含税合计' + label: '含税价合计' },{ key: 'after_tax_price', - label: '税后价格' + label: '不含税价' },{ key: 'total_non_tax_amount', label: '不含税合计' @@ -294,8 +294,8 @@ quality_level: item.material.quality_level, m_sn: item.material.m_sn, supplier_name: order.supplier.supplier_name, - pre_tax_price: item.total_tax_amount, - after_tax_price: item.total_non_tax_amount, + pre_tax_price: item.tax_price, + after_tax_price: item.non_tax_price, purchase_limit: item.p_order_item.purchase_limit, purchase_number: item.purchase_number, unit: item?.material?.unit?.unit_name || '', diff --git a/supplier/common/api.js b/supplier/common/api.js index 6878b15..c35580b 100644 --- a/supplier/common/api.js +++ b/supplier/common/api.js @@ -1,8 +1,8 @@ // appId: 正式 null | 测试 null export const DEV = "dev"; // dev 测试 | prod 正式 export const VERSION = '1.0.0'; // 版本号 -export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址 -// export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址 +// export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址 +export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址 export const PRODURL = ''; // 正式服请求地址 export const API_SUPPLIER_INDEX = '/api/supplier/index'; // 落地页