diff --git a/src/api/ebiz/performance/performance.js b/src/api/ebiz/performance/performance.js new file mode 100644 index 000000000..710079bd9 --- /dev/null +++ b/src/api/ebiz/performance/performance.js @@ -0,0 +1,2 @@ +import request from '@/assets/js/utils/request' +import getUrl from '@/assets/js/utils/get-url' \ No newline at end of file diff --git a/src/assets/images/u1188.png b/src/assets/images/u1188.png new file mode 100644 index 000000000..99f9ad404 Binary files /dev/null and b/src/assets/images/u1188.png differ diff --git a/src/assets/images/u1203.png b/src/assets/images/u1203.png new file mode 100644 index 000000000..b971b3706 Binary files /dev/null and b/src/assets/images/u1203.png differ diff --git a/src/assets/images/u79.png b/src/assets/images/u79.png new file mode 100644 index 000000000..ab1d70d3c Binary files /dev/null and b/src/assets/images/u79.png differ diff --git a/src/router/ebiz/attendance.js b/src/router/ebiz/attendance.js new file mode 100644 index 000000000..574610812 --- /dev/null +++ b/src/router/ebiz/attendance.js @@ -0,0 +1,23 @@ +const attendance = () => import('@/views/ebiz/attendance/Attendance') +const monthly = () => import('@/views/ebiz/attendance/Monthly') + +export default [ + { + path: '/attendance/Attendance', + name: 'Attendance', + component: attendance, + meta: { + title: '考勤统计', + index: 1 + } + }, + { + path: '/attendance/Monthly', + name: 'Monthly', + component: monthly, + meta: { + title: '考勤统计', + index: 2 + } + } + ] \ No newline at end of file diff --git a/src/router/ebiz/index.js b/src/router/ebiz/index.js index 1ee3f9ffc..8911e1e4b 100644 --- a/src/router/ebiz/index.js +++ b/src/router/ebiz/index.js @@ -16,6 +16,8 @@ import manpower from './manpower' import cardList from './cardList' import claims from './claims' import productStore from './product-store' +import performance from './performance' +import attendance from './attendance' export default [ ...proposal, ...sale, @@ -33,5 +35,7 @@ export default [ ...nbs, ...manpower, ...claims, - ...productStore + ...productStore, + ...performance, + ...attendance ] //根据需要进行删减 diff --git a/src/router/ebiz/performance.js b/src/router/ebiz/performance.js new file mode 100644 index 000000000..1a47ffbc7 --- /dev/null +++ b/src/router/ebiz/performance.js @@ -0,0 +1,22 @@ +const performance = () => import('@/views/ebiz/performance/Performance') + +export default [ + { + path: '/performance/Performance', + name: 'Performance', + component: performance, + meta: { + title: '业绩查询', + index: 1 + } + }, + // { + // path: '/poster/posterPreview', + // name: 'posterPreview', + // component: posterPreview, + // meta: { + // title: '海报预览', + // index: 2 + // } + // } + ] \ No newline at end of file diff --git a/src/views/ebiz/attendance/Attendance.vue b/src/views/ebiz/attendance/Attendance.vue new file mode 100644 index 000000000..41139de87 --- /dev/null +++ b/src/views/ebiz/attendance/Attendance.vue @@ -0,0 +1,114 @@ + + + \ No newline at end of file diff --git a/src/views/ebiz/attendance/Monthly.vue b/src/views/ebiz/attendance/Monthly.vue new file mode 100644 index 000000000..b899a2970 --- /dev/null +++ b/src/views/ebiz/attendance/Monthly.vue @@ -0,0 +1,45 @@ + + + \ No newline at end of file diff --git a/src/views/ebiz/performance/Performance.vue b/src/views/ebiz/performance/Performance.vue new file mode 100644 index 000000000..26f056bac --- /dev/null +++ b/src/views/ebiz/performance/Performance.vue @@ -0,0 +1,142 @@ + + + \ No newline at end of file