diff --git a/dist-muyu.zip b/dist-muyu.zip new file mode 100644 index 0000000..6ae494b Binary files /dev/null and b/dist-muyu.zip differ diff --git a/src/api/cai/anchorImCountDay.js b/src/api/cai/anchorImCountDay.js new file mode 100644 index 0000000..9937728 --- /dev/null +++ b/src/api/cai/anchorImCountDay.js @@ -0,0 +1,21 @@ +import request from '@/utils/request' + +// 查询每日发言统计列表 +export function listAnchorImCountDay(query) { + return request({ + url: '/cai/anchorImCountDay/list', + method: 'get', + params: query + }) +} + +// 查询每日发言统计列表 +export function listAnchorImCountDayUserTotal(query) { + return request({ + url: '/cai/anchorImCountDay/imCountAll/list', + method: 'get', + params: query + }) +} + + diff --git a/src/router/index.js b/src/router/index.js index 16c5756..ea87eab 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -165,6 +165,20 @@ export const dynamicRoutes = [ } ] }, + { + path: '/tool/user-im-count', + component: Layout, + permissions: ['cai:anchorImCountDay:query'], + hidden: true, + children: [ + { + path: 'index', + component: () => import('@/views/cai/anchorImCountDay/totalIm'), + name: 'AnchorImCountDay', + meta: { title: '主播发言总统计', activeMenu: '/cai/anchorImCountDay' } + } + ] + }, { path: '/tool/union-user', component: Layout, @@ -178,7 +192,7 @@ export const dynamicRoutes = [ meta: { title: '工会成员信息', activeMenu: '/cai/unionUser' } } ] - } + }, ] // 防止连续点击多次路由报错 diff --git a/src/views/cai/anchorImCountDay/index.vue b/src/views/cai/anchorImCountDay/index.vue new file mode 100644 index 0000000..f3fdfd8 --- /dev/null +++ b/src/views/cai/anchorImCountDay/index.vue @@ -0,0 +1,227 @@ + + + diff --git a/src/views/cai/anchorImCountDay/totalIm.vue b/src/views/cai/anchorImCountDay/totalIm.vue new file mode 100644 index 0000000..9aa5794 --- /dev/null +++ b/src/views/cai/anchorImCountDay/totalIm.vue @@ -0,0 +1,204 @@ + + +