Blame view

src/router/oaRouter.js 4.28 KB
70492aa4   wuxw   通知发送
1
2
3
4
5
6
7
  export default [
      {
          path: '/pages/property/activitiesTypeManage',
          name: '/pages/property/activitiesTypeManage',
          component: () => import('@/views/oa/activitiesTypeManageList.vue')
      },
      {
ec9ec2ce   wuxw   开发完成物业公告问题
8
9
          path: '/pages/property/activitiesManage',
          name: '/pages/property/activitiesManage',
70492aa4   wuxw   通知发送
10
          component: () => import('@/views/oa/activitiesManageList.vue')
ec9ec2ce   wuxw   开发完成物业公告问题
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
      },
      {
          path: '/pages/common/noticeManage',
          name: '/pages/common/noticeManage',
          component: () => import('@/views/oa/noticeManageList.vue')
      },
      {
          path: '/views/oa/addNoticeView',
          name: '/views/oa/addNoticeView',
          component: () => import('@/views/oa/addNoticeViewList.vue')
      },
      {
          path: '/views/oa/editNoticeView',
          name: '/views/oa/editNoticeView',
          component: () => import('@/views/oa/editNoticeViewList.vue')
      },
      {
          path: '/views/oa/noticeDetail',
          name: '/views/oa/noticeDetail',
          component: () => import('@/views/oa/noticeDetailList.vue')
      },
0a06b2d1   wuxw   开发完成投诉建议
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
      {
          path: '/pages/complaint/complaintType',
          name: '/pages/complaint/complaintType',
          component: () => import('@/views/oa/complaintTypeList.vue')
      },
      {
          path: '/views/oa/addComplaintType',
          name: '/views/oa/addComplaintType',
          component: () => import('@/views/oa/addComplaintTypeList.vue')
      },
      {
          path: '/views/oa/editComplaintType',
          name: '/views/oa/editComplaintType',
          component: () => import('@/views/oa/editComplaintTypeList.vue')
      },
      {
          path: '/views/oa/addComplaint',
          name: '/views/oa/addComplaint',
          component: () => import('@/views/oa/addComplaintList.vue')
      },
      {
          path: '/pages/complaint/complaint',
          name: '/pages/complaint/complaint',
          component: () => import('@/views/oa/complaintList.vue')
      },
0bf7e6a5   wuxw   加入问卷功能代码
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
      {
          path: '/pages/property/notepadManage',
          name: '/pages/property/notepadManage',
          component: () => import('@/views/oa/notepadManageList.vue')
      },
      {
          path: '/pages/property/visitManage',
          name: '/pages/property/visitManage',
          component: () => import('@/views/oa/visitManageList.vue')
      },
      {
          path: '/pages/question/questionTitle',
          name: '/pages/question/questionTitle',
          component: () => import('@/views/oa/questionTitleList.vue')
      },
      {
          path: '/pages/property/questionAnswerManage',
          name: '/pages/property/questionAnswerManage',
          component: () => import('@/views/oa/questionAnswerManageList.vue')
      },
      {
          path: '/views/oa/addQuestionAnswer',
          name: '/views/oa/addQuestionAnswer',
          component: () => import('@/views/oa/addQuestionAnswerList.vue')
      },
      {
a99eb7a5   wuxw   开发完成办公下功能
83
84
          path: '/views/oa/editQuestionAnswer',
          name: '/views/oa/editQuestionAnswer',
0bf7e6a5   wuxw   加入问卷功能代码
85
          component: () => import('@/views/oa/editQuestionAnswerList.vue')
a99eb7a5   wuxw   开发完成办公下功能
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
      },
      {
          path: '/pages/question/ownerVoting',
          name: '/pages/question/ownerVoting',
          component: () => import('@/views/oa/ownerVotingList.vue')
      },
      {
          path: '/views/oa/addOwnerVoting',
          name: '/views/oa/addOwnerVoting',
          component: () => import('@/views/oa/addOwnerVotingList.vue')
      },
      {
          path: '/views/oa/editOwnerVoting',
          name: '/views/oa/editOwnerVoting',
          component: () => import('@/views/oa/editOwnerVotingList.vue')
      },
      {
          path: '/pages/examine/examineProjectManage',
          name: '/pages/examine/examineProjectManage',
          component: () => import('@/views/oa/examineProjectManageList.vue')
      },
      {
          path: '/pages/examine/examineStaffManage',
          name: '/pages/examine/examineStaffManage',
          component: () => import('@/views/oa/examineStaffManageList.vue')
      },
      {
          path: '/views/oa/addExamineStaff',
          name: '/views/oa/addExamineStaff',
          component: () => import('@/views/oa/addExamineStaffList.vue')
      },
      {
          path: '/views/oa/editExamineStaff',
          name: '/views/oa/editExamineStaff',
          component: () => import('@/views/oa/editExamineStaffList.vue')
      },
      {
          path: '/pages/examine/examineStaffValue',
          name: '/pages/examine/examineStaffValue',
          component: () => import('@/views/oa/examineStaffValueList.vue')
      },
70492aa4   wuxw   通知发送
127
  ]