diff --git a/common/api/order.js b/common/api/order.js index e4c11f5..a6831b2 100644 --- a/common/api/order.js +++ b/common/api/order.js @@ -101,7 +101,6 @@ export const getOrderDetail = (data = {})=> { return coreRequest(url.getOrderDetail, data, {}, "GET") } - // 取消订单 export const cancelOrder = (data = {})=> { return coreRequest(url.cancelOrder, data, {}) @@ -157,4 +156,13 @@ export const registerProblemInfo = (data = {})=> { export const queryScanWaybillList = (data = {})=> { return coreRequest(url.queryScanWaybillList, data, {}, "GET") } - \ No newline at end of file + +// 下载进仓单PDF +export const exportWarehouseInTpl = (data = {})=> { + return coreRequest(url.exportWarehouseInTpl, data, {}) +} + +// 进仓单列表 +export const getWarehouseInList = (data = {})=> { + return coreRequest(url.getWarehouseInList, data, {}, "GET") +} diff --git a/common/api/url.js b/common/api/url.js index 0b09450..0297e74 100644 --- a/common/api/url.js +++ b/common/api/url.js @@ -31,6 +31,8 @@ export default { getCaculteDestSite: `/oms2c/emisDestination/getDestSite`, // 自动计算目的地 -- DONE getCaculteSendSite: `/oms2c/emisDestination/getSendSite`, // 自动计算寄件网点 -- DONE getLisWarehouse: `/oms2c/emisWaybill/listWmsWarehouse`, // 仓库列表 -- DONE + exportWarehouseInTpl: `/oms2c/emisWaybill/exportWarehouseInTpl`, // 下载进仓单PDF-- DONE + getWarehouseInList: `/oms2c/emisWarehouseIn/listSimple`, // 进仓单列表-- DONE getListBindSalesmen: `/oms2c/emisWaybill/listBindSalesmen`, // 绑定业务员列表 -- DONE queryNewSalesmen: `/oms2c/emisWaybill/queryNewSalesmen`, // 查询所有业务员-根据手机号等条件 -- DONE bindSalesmen: `/oms2c/emisWaybill/bindSalesmen`, // 绑定业务员 -- DONE diff --git a/components/buns-privacy-dialog/buns-privacy-dialog.vue b/components/buns-privacy-dialog/buns-privacy-dialog.vue index dbb2407..538fcde 100644 --- a/components/buns-privacy-dialog/buns-privacy-dialog.vue +++ b/components/buns-privacy-dialog/buns-privacy-dialog.vue @@ -14,7 +14,7 @@ - 已阅读同意本条款,下次不再提示 + 已阅读同意本条款 diff --git a/pages/user/certification.vue b/pages/user/certification.vue index 6fcd481..02188c3 100644 --- a/pages/user/certification.vue +++ b/pages/user/certification.vue @@ -1,65 +1,61 @@