diff --git a/common/api/order.js b/common/api/order.js
index 89de5e1..b51b03b 100644
--- a/common/api/order.js
+++ b/common/api/order.js
@@ -30,11 +30,16 @@ export const getRSDStaffList = (data = {})=> {
}
-// 货物列表
+// 历史-货物列表
export const getGoodsList = (data = {})=> {
return coreRequest(url.getGoodsList, data, {}, "GET")
}
+// 热门-货物列表
+export const getHotGoodsList = (data = {})=> {
+ return coreRequest(url.getHotGoodsList, data, {}, "GET")
+}
+
// 月结账户列表
export const getMonthpayAccountList = (data = {})=> {
return coreRequest(url.getMonthpayAccountList, data, {}, "GET")
diff --git a/common/api/url.js b/common/api/url.js
index ad9f62a..53a1bc8 100644
--- a/common/api/url.js
+++ b/common/api/url.js
@@ -25,6 +25,7 @@ export default {
getCustomerUserList: `/emis/emisCustomerUser/listSimple`, // 获取网点客户列表
getPickStaffList: `/emis/emisStaff/getStaffList`, // 获取操作、收派 员用户列表
getGoodsList: `/emis/emisGoods/listSimple`, // 获取历史--货物列表
+ getHotGoodsList: `/emis/emisGoods/listHotGoods`, // 获取热门--货物列表
getMonthpayAccountList: `/emis/emisMonthpayAccount/listSimple`, // 月结账号列表
getDestPositionList: `/emis/emisDestination/listSimple`, // 目的地 列表
getCaculteDestSite: `/emis/emisDestination/getDestSite`, // 自动计算目的地
diff --git a/components/buns-goodinfo-sheet/buns-goodinfo-sheet.vue b/components/buns-goodinfo-sheet/buns-goodinfo-sheet.vue
index 96a8fb5..4e78599 100644
--- a/components/buns-goodinfo-sheet/buns-goodinfo-sheet.vue
+++ b/components/buns-goodinfo-sheet/buns-goodinfo-sheet.vue
@@ -10,7 +10,7 @@
-
+
@@ -165,6 +165,7 @@