diff --git a/src/api/system/index.js b/src/api/system/index.js index 33d1d9b..310fe89 100644 --- a/src/api/system/index.js +++ b/src/api/system/index.js @@ -341,6 +341,27 @@ const system = { data: data }); }, + createQrcode: async (data) => { + return request({ + method: MethodsENUM.POST, + url: "/index/createQrcode", + data: data + }); + }, + getMyTop: async (data) => { + return request({ + method: MethodsENUM.POST, + url: "/user/getMyTop", + data: data + }); + }, + myTeamList: async (data) => { + return request({ + method: MethodsENUM.POST, + url: "/user/myTeamList", + data: data + }); + }, } export default system; diff --git a/src/components/AddCustomerServiceModal.vue b/src/components/AddCustomerServiceModal.vue index 88c0000..c2611d3 100644 --- a/src/components/AddCustomerServiceModal.vue +++ b/src/components/AddCustomerServiceModal.vue @@ -1,17 +1,19 @@