1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- export default {
- //登录
- common: {
- login: {
- url: "/web/lgin/userLgin",
- auth: false,
- method: "POST",
- },
- applogin: {
- url: "/app/wechat/login",
- auth: false,
- method: "POST",
- }
- },
- home: {
- getUserData: {
- url: "/web/lgin/getUserRoleInfo",
- auth: true,
- method: "GET",
- },
- },
- //首页
- homePage: {
- //配送企业排名
- splerCosm: {
- url: "/web/weChat/forms/amtSplerCosm",
- auth: true,
- method: "POST",
- },
- //关键指标统计
- totalCosm: {
- url: "/web/weChat/forms/totalCosm",
- auth: true,
- method: "POST",
- },
- //耗材类型消耗金额占比
- amtCosm: {
- url: "/web/weChat/forms/amtCosm",
- auth: true,
- method: "POST",
- },
- //耗材消耗数量排名
- cntCosm: {
- url: "/web/weChat/forms/cntCosm",
- auth: true,
- method: "POST",
- },
- //各科室消耗排名
- deptCosm: {
- url: "/web/weChat/forms/deptCosm",
- auth: true,
- method: "POST",
- },
- //消耗数据统计
- statCosm: {
- url: "/web/weChat/forms/statCosm",
- auth: true,
- method: "POST",
- },
- //个人中心
- information: {
- url: "/app/wechat/select/information",
- auth: true,
- method: "POST",
- },
- //个人中心保存
- informationData: {
- url: "/app/wechat/save/information",
- auth: true,
- method: "POST",
- },
- }
- }
|