diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/mobile.js b/src/router/modules/mobile.js new file mode 100644 index 0000000..8f0f58e --- /dev/null +++ b/src/router/modules/mobile.js @@ -0,0 +1,22 @@ +/* Layout */ +import Layout from '@/layout/Layout' +export const mobileRouters = [{ + path: '/mobile', + component: Layout, + redirect: '/mobileList', + name: 'Mobile', + alwaysShow: true, + meta: { + title: '通信录管理', + icon: 'icon-config', // 图标 + permission: '/mobileList' + }, + children: [ + { + path: '/mobileList', + name: 'MobileList', + component: () => import('@/views/mobile/mobileList'), + meta: { title: '通信录查询', icon: '', permission: '/mobile/list' } + } + ] +}] diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/mobile.js b/src/router/modules/mobile.js new file mode 100644 index 0000000..8f0f58e --- /dev/null +++ b/src/router/modules/mobile.js @@ -0,0 +1,22 @@ +/* Layout */ +import Layout from '@/layout/Layout' +export const mobileRouters = [{ + path: '/mobile', + component: Layout, + redirect: '/mobileList', + name: 'Mobile', + alwaysShow: true, + meta: { + title: '通信录管理', + icon: 'icon-config', // 图标 + permission: '/mobileList' + }, + children: [ + { + path: '/mobileList', + name: 'MobileList', + component: () => import('@/views/mobile/mobileList'), + meta: { title: '通信录查询', icon: '', permission: '/mobile/list' } + } + ] +}] diff --git a/src/router/modules/statistic.js b/src/router/modules/statistic.js index cab7b7a..7891949 100644 --- a/src/router/modules/statistic.js +++ b/src/router/modules/statistic.js @@ -104,7 +104,7 @@ path: '/deptEffectiveStatistics', name: 'DeptEffectiveStatistics', component: () => import('@/views/statistic/deptStatistic/deptStatistic'), - meta: { title: '部门效能监察', icon: '', permission: '/deptStatistics' } + meta: { title: '部门效能监察', icon: '', permission: '/sdeptStatistics' } }, { path: '/seatStatisticsAll', diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/mobile.js b/src/router/modules/mobile.js new file mode 100644 index 0000000..8f0f58e --- /dev/null +++ b/src/router/modules/mobile.js @@ -0,0 +1,22 @@ +/* Layout */ +import Layout from '@/layout/Layout' +export const mobileRouters = [{ + path: '/mobile', + component: Layout, + redirect: '/mobileList', + name: 'Mobile', + alwaysShow: true, + meta: { + title: '通信录管理', + icon: 'icon-config', // 图标 + permission: '/mobileList' + }, + children: [ + { + path: '/mobileList', + name: 'MobileList', + component: () => import('@/views/mobile/mobileList'), + meta: { title: '通信录查询', icon: '', permission: '/mobile/list' } + } + ] +}] diff --git a/src/router/modules/statistic.js b/src/router/modules/statistic.js index cab7b7a..7891949 100644 --- a/src/router/modules/statistic.js +++ b/src/router/modules/statistic.js @@ -104,7 +104,7 @@ path: '/deptEffectiveStatistics', name: 'DeptEffectiveStatistics', component: () => import('@/views/statistic/deptStatistic/deptStatistic'), - meta: { title: '部门效能监察', icon: '', permission: '/deptStatistics' } + meta: { title: '部门效能监察', icon: '', permission: '/sdeptStatistics' } }, { path: '/seatStatisticsAll', diff --git a/src/views/caseManage/caseCommon/caseFormProcess.vue b/src/views/caseManage/caseCommon/caseFormProcess.vue index 5504a0b..977c608 100644 --- a/src/views/caseManage/caseCommon/caseFormProcess.vue +++ b/src/views/caseManage/caseCommon/caseFormProcess.vue @@ -31,7 +31,8 @@ - + + @@ -78,6 +79,11 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/mobile.js b/src/router/modules/mobile.js new file mode 100644 index 0000000..8f0f58e --- /dev/null +++ b/src/router/modules/mobile.js @@ -0,0 +1,22 @@ +/* Layout */ +import Layout from '@/layout/Layout' +export const mobileRouters = [{ + path: '/mobile', + component: Layout, + redirect: '/mobileList', + name: 'Mobile', + alwaysShow: true, + meta: { + title: '通信录管理', + icon: 'icon-config', // 图标 + permission: '/mobileList' + }, + children: [ + { + path: '/mobileList', + name: 'MobileList', + component: () => import('@/views/mobile/mobileList'), + meta: { title: '通信录查询', icon: '', permission: '/mobile/list' } + } + ] +}] diff --git a/src/router/modules/statistic.js b/src/router/modules/statistic.js index cab7b7a..7891949 100644 --- a/src/router/modules/statistic.js +++ b/src/router/modules/statistic.js @@ -104,7 +104,7 @@ path: '/deptEffectiveStatistics', name: 'DeptEffectiveStatistics', component: () => import('@/views/statistic/deptStatistic/deptStatistic'), - meta: { title: '部门效能监察', icon: '', permission: '/deptStatistics' } + meta: { title: '部门效能监察', icon: '', permission: '/sdeptStatistics' } }, { path: '/seatStatisticsAll', diff --git a/src/views/caseManage/caseCommon/caseFormProcess.vue b/src/views/caseManage/caseCommon/caseFormProcess.vue index 5504a0b..977c608 100644 --- a/src/views/caseManage/caseCommon/caseFormProcess.vue +++ b/src/views/caseManage/caseCommon/caseFormProcess.vue @@ -31,7 +31,8 @@ - + + @@ -78,6 +79,11 @@ + + + + + diff --git a/src/views/caseManage/caseCommon/caseFormRead.vue b/src/views/caseManage/caseCommon/caseFormRead.vue index d9d4add..524ee94 100644 --- a/src/views/caseManage/caseCommon/caseFormRead.vue +++ b/src/views/caseManage/caseCommon/caseFormRead.vue @@ -31,7 +31,8 @@ - + + @@ -77,6 +78,11 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/mobile.js b/src/router/modules/mobile.js new file mode 100644 index 0000000..8f0f58e --- /dev/null +++ b/src/router/modules/mobile.js @@ -0,0 +1,22 @@ +/* Layout */ +import Layout from '@/layout/Layout' +export const mobileRouters = [{ + path: '/mobile', + component: Layout, + redirect: '/mobileList', + name: 'Mobile', + alwaysShow: true, + meta: { + title: '通信录管理', + icon: 'icon-config', // 图标 + permission: '/mobileList' + }, + children: [ + { + path: '/mobileList', + name: 'MobileList', + component: () => import('@/views/mobile/mobileList'), + meta: { title: '通信录查询', icon: '', permission: '/mobile/list' } + } + ] +}] diff --git a/src/router/modules/statistic.js b/src/router/modules/statistic.js index cab7b7a..7891949 100644 --- a/src/router/modules/statistic.js +++ b/src/router/modules/statistic.js @@ -104,7 +104,7 @@ path: '/deptEffectiveStatistics', name: 'DeptEffectiveStatistics', component: () => import('@/views/statistic/deptStatistic/deptStatistic'), - meta: { title: '部门效能监察', icon: '', permission: '/deptStatistics' } + meta: { title: '部门效能监察', icon: '', permission: '/sdeptStatistics' } }, { path: '/seatStatisticsAll', diff --git a/src/views/caseManage/caseCommon/caseFormProcess.vue b/src/views/caseManage/caseCommon/caseFormProcess.vue index 5504a0b..977c608 100644 --- a/src/views/caseManage/caseCommon/caseFormProcess.vue +++ b/src/views/caseManage/caseCommon/caseFormProcess.vue @@ -31,7 +31,8 @@ - + + @@ -78,6 +79,11 @@ + + + + + diff --git a/src/views/caseManage/caseCommon/caseFormRead.vue b/src/views/caseManage/caseCommon/caseFormRead.vue index d9d4add..524ee94 100644 --- a/src/views/caseManage/caseCommon/caseFormRead.vue +++ b/src/views/caseManage/caseCommon/caseFormRead.vue @@ -31,7 +31,8 @@ - + + @@ -77,6 +78,11 @@ + + + + + diff --git a/src/views/caseManage/caseCommon/caseListTable.vue b/src/views/caseManage/caseCommon/caseListTable.vue index f1df0ba..9cded63 100644 --- a/src/views/caseManage/caseCommon/caseListTable.vue +++ b/src/views/caseManage/caseCommon/caseListTable.vue @@ -3,7 +3,8 @@ diff --git a/src/views/mobile/mobileList.vue b/src/views/mobile/mobileList.vue new file mode 100644 index 0000000..f833628 --- /dev/null +++ b/src/views/mobile/mobileList.vue @@ -0,0 +1,208 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/mobile.js b/src/router/modules/mobile.js new file mode 100644 index 0000000..8f0f58e --- /dev/null +++ b/src/router/modules/mobile.js @@ -0,0 +1,22 @@ +/* Layout */ +import Layout from '@/layout/Layout' +export const mobileRouters = [{ + path: '/mobile', + component: Layout, + redirect: '/mobileList', + name: 'Mobile', + alwaysShow: true, + meta: { + title: '通信录管理', + icon: 'icon-config', // 图标 + permission: '/mobileList' + }, + children: [ + { + path: '/mobileList', + name: 'MobileList', + component: () => import('@/views/mobile/mobileList'), + meta: { title: '通信录查询', icon: '', permission: '/mobile/list' } + } + ] +}] diff --git a/src/router/modules/statistic.js b/src/router/modules/statistic.js index cab7b7a..7891949 100644 --- a/src/router/modules/statistic.js +++ b/src/router/modules/statistic.js @@ -104,7 +104,7 @@ path: '/deptEffectiveStatistics', name: 'DeptEffectiveStatistics', component: () => import('@/views/statistic/deptStatistic/deptStatistic'), - meta: { title: '部门效能监察', icon: '', permission: '/deptStatistics' } + meta: { title: '部门效能监察', icon: '', permission: '/sdeptStatistics' } }, { path: '/seatStatisticsAll', diff --git a/src/views/caseManage/caseCommon/caseFormProcess.vue b/src/views/caseManage/caseCommon/caseFormProcess.vue index 5504a0b..977c608 100644 --- a/src/views/caseManage/caseCommon/caseFormProcess.vue +++ b/src/views/caseManage/caseCommon/caseFormProcess.vue @@ -31,7 +31,8 @@ - + + @@ -78,6 +79,11 @@ + + + + + diff --git a/src/views/caseManage/caseCommon/caseFormRead.vue b/src/views/caseManage/caseCommon/caseFormRead.vue index d9d4add..524ee94 100644 --- a/src/views/caseManage/caseCommon/caseFormRead.vue +++ b/src/views/caseManage/caseCommon/caseFormRead.vue @@ -31,7 +31,8 @@ - + + @@ -77,6 +78,11 @@ + + + + + diff --git a/src/views/caseManage/caseCommon/caseListTable.vue b/src/views/caseManage/caseCommon/caseListTable.vue index f1df0ba..9cded63 100644 --- a/src/views/caseManage/caseCommon/caseListTable.vue +++ b/src/views/caseManage/caseCommon/caseListTable.vue @@ -3,7 +3,8 @@ diff --git a/src/views/caseManage/caseManage.vue b/src/views/caseManage/caseManage.vue index ce59f13..a986eaa 100644 --- a/src/views/caseManage/caseManage.vue +++ b/src/views/caseManage/caseManage.vue @@ -8,8 +8,8 @@ diff --git a/src/views/caseManage/createCase.vue b/src/views/caseManage/createCase.vue index 03d3b49..768520d 100644 --- a/src/views/caseManage/createCase.vue +++ b/src/views/caseManage/createCase.vue @@ -46,11 +46,11 @@ - - - - - + + + + + @@ -103,18 +103,21 @@ - + - +
是否典型案例
是否要情
+
+ 是否需要回访 +
@@ -222,6 +225,7 @@ caseLevel: '', // 案卷紧急程度 isTypical: '0', // 是否典型案例 isImportant: '0', // 是否要情 + isReturnVisit: '0', // 是否需要回访 title: '', // 事件标题 description: '', // 事件内容 limitedTime: '', // 事件办理期限 @@ -329,6 +333,7 @@ caseLevel: this.form.caseLevel, // 案卷紧急程度 isTypical: this.form.isTypical, // 是否典型案例 isImportant: this.form.isImportant, // 是否要情 + isReturnVisit: this.form.isReturnVisit, // 是否需要回访 title: this.form.title, // 事件标题 description: this.form.description, // 事件内容 limitedTime: this.form.limitedTime, // 事件办理期限 @@ -488,6 +493,7 @@ // } getCaseDetailType(this.form.type.caseTypeCode).then(response => { this.caseDetailTypeList = response.data + this.form.type.caseDetailTypeCode = this.caseDetailTypeList[0].typeDetailCode }) }, // 区列表 diff --git a/src/views/caseManage/waitForHandle.vue b/src/views/caseManage/waitForHandle.vue index b28f02c..8b1ed28 100644 --- a/src/views/caseManage/waitForHandle.vue +++ b/src/views/caseManage/waitForHandle.vue @@ -7,8 +7,8 @@ diff --git a/src/views/mobile/mobileList.vue b/src/views/mobile/mobileList.vue new file mode 100644 index 0000000..f833628 --- /dev/null +++ b/src/views/mobile/mobileList.vue @@ -0,0 +1,208 @@ + + + + + diff --git a/src/views/monitorManage/waitForMonitor.vue b/src/views/monitorManage/waitForMonitor.vue index e7a8100..a391585 100644 --- a/src/views/monitorManage/waitForMonitor.vue +++ b/src/views/monitorManage/waitForMonitor.vue @@ -12,7 +12,7 @@ diff --git a/src/router/index.js b/src/router/index.js index 573a555..0cb0172 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import { monitorRouters } from './modules/statistic' import { qualityCheckRouters } from './modules/qualityCheck' import { soundsRouters } from './modules/sounds' +import { mobileRouters } from './modules/mobile' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) @@ -82,5 +83,6 @@ ...qualityCheckRouters, ...monitorRouters, ...systemRouters, + ...mobileRouters, { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/mobile.js b/src/router/modules/mobile.js new file mode 100644 index 0000000..8f0f58e --- /dev/null +++ b/src/router/modules/mobile.js @@ -0,0 +1,22 @@ +/* Layout */ +import Layout from '@/layout/Layout' +export const mobileRouters = [{ + path: '/mobile', + component: Layout, + redirect: '/mobileList', + name: 'Mobile', + alwaysShow: true, + meta: { + title: '通信录管理', + icon: 'icon-config', // 图标 + permission: '/mobileList' + }, + children: [ + { + path: '/mobileList', + name: 'MobileList', + component: () => import('@/views/mobile/mobileList'), + meta: { title: '通信录查询', icon: '', permission: '/mobile/list' } + } + ] +}] diff --git a/src/router/modules/statistic.js b/src/router/modules/statistic.js index cab7b7a..7891949 100644 --- a/src/router/modules/statistic.js +++ b/src/router/modules/statistic.js @@ -104,7 +104,7 @@ path: '/deptEffectiveStatistics', name: 'DeptEffectiveStatistics', component: () => import('@/views/statistic/deptStatistic/deptStatistic'), - meta: { title: '部门效能监察', icon: '', permission: '/deptStatistics' } + meta: { title: '部门效能监察', icon: '', permission: '/sdeptStatistics' } }, { path: '/seatStatisticsAll', diff --git a/src/views/caseManage/caseCommon/caseFormProcess.vue b/src/views/caseManage/caseCommon/caseFormProcess.vue index 5504a0b..977c608 100644 --- a/src/views/caseManage/caseCommon/caseFormProcess.vue +++ b/src/views/caseManage/caseCommon/caseFormProcess.vue @@ -31,7 +31,8 @@ - + + @@ -78,6 +79,11 @@ + + + + + diff --git a/src/views/caseManage/caseCommon/caseFormRead.vue b/src/views/caseManage/caseCommon/caseFormRead.vue index d9d4add..524ee94 100644 --- a/src/views/caseManage/caseCommon/caseFormRead.vue +++ b/src/views/caseManage/caseCommon/caseFormRead.vue @@ -31,7 +31,8 @@ - + + @@ -77,6 +78,11 @@ + + + + + diff --git a/src/views/caseManage/caseCommon/caseListTable.vue b/src/views/caseManage/caseCommon/caseListTable.vue index f1df0ba..9cded63 100644 --- a/src/views/caseManage/caseCommon/caseListTable.vue +++ b/src/views/caseManage/caseCommon/caseListTable.vue @@ -3,7 +3,8 @@ diff --git a/src/views/caseManage/caseManage.vue b/src/views/caseManage/caseManage.vue index ce59f13..a986eaa 100644 --- a/src/views/caseManage/caseManage.vue +++ b/src/views/caseManage/caseManage.vue @@ -8,8 +8,8 @@ diff --git a/src/views/caseManage/createCase.vue b/src/views/caseManage/createCase.vue index 03d3b49..768520d 100644 --- a/src/views/caseManage/createCase.vue +++ b/src/views/caseManage/createCase.vue @@ -46,11 +46,11 @@ - - - - - + + + + + @@ -103,18 +103,21 @@ - + - +
是否典型案例
是否要情
+
+ 是否需要回访 +
@@ -222,6 +225,7 @@ caseLevel: '', // 案卷紧急程度 isTypical: '0', // 是否典型案例 isImportant: '0', // 是否要情 + isReturnVisit: '0', // 是否需要回访 title: '', // 事件标题 description: '', // 事件内容 limitedTime: '', // 事件办理期限 @@ -329,6 +333,7 @@ caseLevel: this.form.caseLevel, // 案卷紧急程度 isTypical: this.form.isTypical, // 是否典型案例 isImportant: this.form.isImportant, // 是否要情 + isReturnVisit: this.form.isReturnVisit, // 是否需要回访 title: this.form.title, // 事件标题 description: this.form.description, // 事件内容 limitedTime: this.form.limitedTime, // 事件办理期限 @@ -488,6 +493,7 @@ // } getCaseDetailType(this.form.type.caseTypeCode).then(response => { this.caseDetailTypeList = response.data + this.form.type.caseDetailTypeCode = this.caseDetailTypeList[0].typeDetailCode }) }, // 区列表 diff --git a/src/views/caseManage/waitForHandle.vue b/src/views/caseManage/waitForHandle.vue index b28f02c..8b1ed28 100644 --- a/src/views/caseManage/waitForHandle.vue +++ b/src/views/caseManage/waitForHandle.vue @@ -7,8 +7,8 @@ diff --git a/src/views/mobile/mobileList.vue b/src/views/mobile/mobileList.vue new file mode 100644 index 0000000..f833628 --- /dev/null +++ b/src/views/mobile/mobileList.vue @@ -0,0 +1,208 @@ + + + + + diff --git a/src/views/monitorManage/waitForMonitor.vue b/src/views/monitorManage/waitForMonitor.vue index e7a8100..a391585 100644 --- a/src/views/monitorManage/waitForMonitor.vue +++ b/src/views/monitorManage/waitForMonitor.vue @@ -12,7 +12,7 @@ diff --git a/src/views/superviseManage/waitForSupervise.vue b/src/views/superviseManage/waitForSupervise.vue index 435da5c..bb46ac8 100644 --- a/src/views/superviseManage/waitForSupervise.vue +++ b/src/views/superviseManage/waitForSupervise.vue @@ -12,9 +12,9 @@