diff --git a/.env.development b/.env.development index 1a13d24b8..f4c9d6450 100644 --- a/.env.development +++ b/.env.development @@ -6,6 +6,6 @@ VITE_NOW_TYPE = 'dist' # VITE_APP_BASE_URL='http://192.168.1.10:8546' # VITE_APP_BASE_URL='https://test-multi-store.lihaink.cn' # VITE_APP_BASE_URL='https://multi-store.lihaink.cn' -VITE_APP_BASE_URL='http://192.168.1.22:8544' +VITE_APP_BASE_URL='http://127.0.0.1:8544' # VITE_APP_BASE_URL='https://ceshi-multi-store.lihaink.cn' diff --git a/src/api/article.ts b/src/api/article.ts new file mode 100644 index 000000000..6b8d8f679 --- /dev/null +++ b/src/api/article.ts @@ -0,0 +1,69 @@ +import request from '@/utils/request' + +// 文章分类列表 +export function articleCateLists(params ?: any) { + return request.get({ url: '/article/articleCate/lists', params }, { urlPrefix: 'oa' }) +} +// 文章分类列表 +export function articleCateAll(params ?: any) { + return request.get({ url: '/article/articleCate/all', params }, { urlPrefix: 'oa' }) +} + +// 添加文章分类 +export function articleCateAdd(params : any) { + return request.post({ url: '/article/articleCate/add', params }, { urlPrefix: 'oa' }) +} + +// 编辑文章分类 +export function articleCateEdit(params : any) { + return request.post({ url: '/article/articleCate/edit', params }, { urlPrefix: 'oa' }) +} + +// 删除文章分类 +export function articleCateDelete(params : any) { + return request.post({ url: '/article/articleCate/delete', params }, { urlPrefix: 'oa' }) +} + +// 文章分类详情 +export function articleCateDetail(params : any) { + return request.get({ url: '/article/articleCate/detail', params }, { urlPrefix: 'oa' }) +} + +// 文章分类状态 +export function articleCateStatus(params : any) { + return request.post({ url: '/article/articleCate/updateStatus', params }, { urlPrefix: 'oa' }) +} + +// 文章列表 +export function articleLists(params ?: any) { + return request.get({ url: '/article/article/lists', params }, { urlPrefix: 'oa' }) +} +// 文章列表 +export function articleAll(params ?: any) { + return request.get({ url: '/article/all', params }, { urlPrefix: 'oa' }) +} + +// 添加文章 +export function articleAdd(params : any) { + return request.post({ url: '/article/article/add', params }, { urlPrefix: 'oa' }) +} + +// 编辑文章 +export function articleEdit(params : any) { + return request.post({ url: '/article/article/edit', params }, { urlPrefix: 'oa' }) +} + +// 删除文章 +export function articleDelete(params : any) { + return request.post({ url: '/article/article/delete', params }, { urlPrefix: 'oa' }) +} + +// 文章详情 +export function articleDetail(params : any) { + return request.get({ url: '/article/article/detail', params }, { urlPrefix: 'oa' }) +} + +// 文章分类状态 +export function articleStatus(params : any) { + return request.post({ url: '/article/article/updateStatus', params }, { urlPrefix: 'oa' }) +} \ No newline at end of file diff --git a/src/api/oa_department_change.ts b/src/api/oa_department_change.ts new file mode 100644 index 000000000..2a0c6acf0 --- /dev/null +++ b/src/api/oa_department_change.ts @@ -0,0 +1,32 @@ +import request from "@/utils/request"; + +// 人事调动部门记录表列表 +export function apiOaDepartmentChangeLists(params : any) { + return request.get({ url: "/works/hr/oaDepartmentChange/lists", params }, { urlPrefix: 'oa' }); +} + +// 添加人事调动部门记录表 +export function apiOaDepartmentChangeAdd(params : any) { + return request.post({ url: "/works/hr/oaDepartmentChange/add", params }, { urlPrefix: 'oa' }); +} + +// 编辑人事调动部门记录表 +export function apiOaDepartmentChangeEdit(params : any) { + return request.post({ url: "/works/hr/oaDepartmentChange/edit", params }, { urlPrefix: 'oa' }); +} + +// 删除人事调动部门记录表 +export function apiOaDepartmentChangeDelete(params : any) { + return request.post({ + url: "/works/hr/oaDepartmentChange/delete", + params, + }, { urlPrefix: 'oa' }); +} + +// 人事调动部门记录表详情 +export function apiOaDepartmentChangeDetail(params : any) { + return request.get({ + url: "/works/hr/oaDepartmentChange/detail", + params, + }, { urlPrefix: 'oa' }); +} \ No newline at end of file diff --git a/src/api/oa_personal_quit.ts b/src/api/oa_personal_quit.ts new file mode 100644 index 000000000..8b31974ac --- /dev/null +++ b/src/api/oa_personal_quit.ts @@ -0,0 +1,26 @@ +import request from "@/utils/request"; + +// 人事离职记录表列表 +export function apiOaPersonalQuitLists(params : any) { + return request.get({ url: "/works/hr/oaPersonalQuit/lists", params }, { urlPrefix: 'oa' }); +} + +// 添加人事离职记录表 +export function apiOaPersonalQuitAdd(params : any) { + return request.post({ url: "/works/hr/oaPersonalQuit/add", params }, { urlPrefix: 'oa' }); +} + +// 编辑人事离职记录表 +export function apiOaPersonalQuitEdit(params : any) { + return request.post({ url: "/works/hr/oaPersonalQuit/edit", params }, { urlPrefix: 'oa' }); +} + +// 删除人事离职记录表 +export function apiOaPersonalQuitDelete(params : any) { + return request.post({ url: "/works/hr/oaPersonalQuit/delete", params }, { urlPrefix: 'oa' }); +} + +// 人事离职记录表详情 +export function apiOaPersonalQuitDetail(params : any) { + return request.get({ url: "/works/hr/oaPersonalQuit/detail", params }, { urlPrefix: 'oa' }); +} \ No newline at end of file diff --git a/src/api/oa_plan.ts b/src/api/oa_plan.ts new file mode 100644 index 000000000..1cc779549 --- /dev/null +++ b/src/api/oa_plan.ts @@ -0,0 +1,26 @@ +import request from "@/utils/request"; + +// 日程安排列表 +export function apiOaPlanLists(params : any) { + return request.get({ url: "/works/rcbg/oaPlan/lists", params }, { urlPrefix: 'oa' }); +} + +// 添加日程安排 +export function apiOaPlanAdd(params : any) { + return request.post({ url: "/works/rcbg/oaPlan/add", params }, { urlPrefix: 'oa' }); +} + +// 编辑日程安排 +export function apiOaPlanEdit(params : any) { + return request.post({ url: "/works/rcbg/oaPlan/edit", params }, { urlPrefix: 'oa' }); +} + +// 删除日程安排 +export function apiOaPlanDelete(params : any) { + return request.post({ url: "/works/rcbg/oaPlan/delete", params }, { urlPrefix: 'oa' }); +} + +// 日程安排详情 +export function apiOaPlanDetail(params : any) { + return request.get({ url: "/works/rcbg/oaPlan/detail", params }, { urlPrefix: 'oa' }); +} \ No newline at end of file diff --git a/src/api/oa_schedule.ts b/src/api/oa_schedule.ts new file mode 100644 index 000000000..043c70183 --- /dev/null +++ b/src/api/oa_schedule.ts @@ -0,0 +1,26 @@ +import request from "@/utils/request"; + +// 工作记录列表 +export function apiOaScheduleLists(params : any) { + return request.get({ url: "/works/rcbg/oaSchedule/lists", params }, { urlPrefix: 'oa' }); +} + +// 添加工作记录 +export function apiOaScheduleAdd(params : any) { + return request.post({ url: "/works/rcbg/oaSchedule/add", params }, { urlPrefix: 'oa' }); +} + +// 编辑工作记录 +export function apiOaScheduleEdit(params : any) { + return request.post({ url: "/works/rcbg/oaSchedule/edit", params }, { urlPrefix: 'oa' }); +} + +// 删除工作记录 +export function apiOaScheduleDelete(params : any) { + return request.post({ url: "/works/rcbg/oaSchedule/delete", params }, { urlPrefix: 'oa' }); +} + +// 工作记录详情 +export function apiOaScheduleDetail(params : any) { + return request.get({ url: "/works/rcbg/oaSchedule/detail", params }, { urlPrefix: 'oa' }); +} \ No newline at end of file diff --git a/src/api/oa_work.ts b/src/api/oa_work.ts new file mode 100644 index 000000000..cb6501e18 --- /dev/null +++ b/src/api/oa_work.ts @@ -0,0 +1,63 @@ +import request from "@/utils/request"; + +// 汇报工作表列表 +export function apiOaWorkLists(params : any) { + return request.get({ url: "/works/rcbg/oaWork/lists", params }, { urlPrefix: 'oa' }); +} + +// 添加汇报工作表 +export function apiOaWorkAdd(params : any) { + return request.post({ url: "/works/rcbg/oaWork/add", params }, { urlPrefix: 'oa' }); +} + +// 编辑汇报工作表 +export function apiOaWorkEdit(params : any) { + return request.post({ url: "/works/rcbg/oaWork/edit", params }, { urlPrefix: 'oa' }); +} + +// 删除汇报工作表 +export function apiOaWorkDelete(params : any) { + return request.post({ url: "/works/rcbg/oaWork/delete", params }, { urlPrefix: 'oa' }); +} + +// 汇报工作表详情 +export function apiOaWorkDetail(params : any) { + return request.get({ url: "/works/rcbg/oaWork/detail", params }, { urlPrefix: 'oa' }); +} + +// 汇报工作表列表 +export function apiOaWorkrecordLists(params : any) { + return request.get({ url: "/works/rcbg/oaWorkRecord/lists", params }, { urlPrefix: 'oa' }); +} + +// 汇报工作表详情 +export function apiOaWorkrecordDetail(params : any) { + return request.get({ url: "/works/rcbg/oaWorkRecord/detail", params }, { urlPrefix: 'oa' }); +} +// 删除汇报工作表 +export function apiOaWorkrecordDelete(params : any) { + return request.post({ url: "/works/rcbg/oaWorkRecord/delete", params }, { urlPrefix: 'oa' }); +} + +// 汇报工作表列表 +export function apiOaWorkrcommentLists(params : any) { + return request.get({ + url: "/works/rcbg/oaWorkComment/lists", + params, + }, { urlPrefix: 'oa' }); +} + +// 汇报工作表列表 +export function apiOaWorkrcommentAdd(params : any) { + return request.post({ + url: "/works/rcbg/oaWorkComment/add", + params, + }, { urlPrefix: 'oa' }); +} +// 汇报工作表列表 +export function apiOaWorkrcommentDelete(params : any) { + return request.post({ + url: "/works/rcbg/oaWorkComment/delete", + params, + }, { urlPrefix: 'oa' }); +} \ No newline at end of file diff --git a/src/api/org/organization.ts b/src/api/org/organization.ts new file mode 100644 index 000000000..919da7d01 --- /dev/null +++ b/src/api/org/organization.ts @@ -0,0 +1,32 @@ +import request from '@/utils/request' + +// 组织列表 +export function orgsLists(params?: any) { + return request.get({ url: '/dept.orgs/lists', params }) +} + +// 添加组织 +export function orgsAdd(params: any) { + return request.post({ url: '/dept.orgs/add', params }) +} + +// 编辑组织 +export function orgsEdit(params: any) { + return request.post({ url: '/dept.orgs/edit', params }) +} + +// 删除组织 +export function orgsDelete(params: any) { + return request.post({ url: '/dept.orgs/delete', params }) +} + +// 组织详情 +export function orgsDetail(params: any) { + return request.get({ url: '/dept.orgs/detail', params }) +} + + +// 所有组织 +export function getAll() { + return request.get({ url: '/dept.orgs/getAll'}) +} diff --git a/src/components/annexLink/index.vue b/src/components/annexLink/index.vue new file mode 100644 index 000000000..b8e713463 --- /dev/null +++ b/src/components/annexLink/index.vue @@ -0,0 +1,16 @@ + + \ No newline at end of file diff --git a/src/views/article/column/edit.vue b/src/views/article/column/edit.vue new file mode 100644 index 000000000..b0727abef --- /dev/null +++ b/src/views/article/column/edit.vue @@ -0,0 +1,93 @@ + + diff --git a/src/views/article/column/index.vue b/src/views/article/column/index.vue new file mode 100644 index 000000000..3f15093bb --- /dev/null +++ b/src/views/article/column/index.vue @@ -0,0 +1,108 @@ + + diff --git a/src/views/article/lists/detail.vue b/src/views/article/lists/detail.vue new file mode 100644 index 000000000..11732e386 --- /dev/null +++ b/src/views/article/lists/detail.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/src/views/article/lists/edit.vue b/src/views/article/lists/edit.vue new file mode 100644 index 000000000..27ab1ab9a --- /dev/null +++ b/src/views/article/lists/edit.vue @@ -0,0 +1,173 @@ + + + diff --git a/src/views/article/lists/index.vue b/src/views/article/lists/index.vue new file mode 100644 index 000000000..ea6ff2bb6 --- /dev/null +++ b/src/views/article/lists/index.vue @@ -0,0 +1,154 @@ + + diff --git a/src/views/decoration/component/add-nav.vue b/src/views/decoration/component/add-nav.vue new file mode 100644 index 000000000..485b90e97 --- /dev/null +++ b/src/views/decoration/component/add-nav.vue @@ -0,0 +1,88 @@ + + + + diff --git a/src/views/decoration/component/decoration-img.vue b/src/views/decoration/component/decoration-img.vue new file mode 100644 index 000000000..03a01067d --- /dev/null +++ b/src/views/decoration/component/decoration-img.vue @@ -0,0 +1,59 @@ + + + + + diff --git a/src/views/decoration/component/pages/attr-setting.vue b/src/views/decoration/component/pages/attr-setting.vue new file mode 100644 index 000000000..196aa799b --- /dev/null +++ b/src/views/decoration/component/pages/attr-setting.vue @@ -0,0 +1,33 @@ + + diff --git a/src/views/decoration/component/pages/menu.vue b/src/views/decoration/component/pages/menu.vue new file mode 100644 index 000000000..1027e41b6 --- /dev/null +++ b/src/views/decoration/component/pages/menu.vue @@ -0,0 +1,44 @@ + + + + diff --git a/src/views/decoration/component/pages/preview-pc.vue b/src/views/decoration/component/pages/preview-pc.vue new file mode 100644 index 000000000..99e552c96 --- /dev/null +++ b/src/views/decoration/component/pages/preview-pc.vue @@ -0,0 +1,67 @@ + + + + diff --git a/src/views/decoration/component/pages/preview.vue b/src/views/decoration/component/pages/preview.vue new file mode 100644 index 000000000..34a4f61f1 --- /dev/null +++ b/src/views/decoration/component/pages/preview.vue @@ -0,0 +1,67 @@ + + + + diff --git a/src/views/decoration/component/widgets/banner/attr.vue b/src/views/decoration/component/widgets/banner/attr.vue new file mode 100644 index 000000000..c146bd0d3 --- /dev/null +++ b/src/views/decoration/component/widgets/banner/attr.vue @@ -0,0 +1,100 @@ + + + + diff --git a/src/views/decoration/component/widgets/banner/content.vue b/src/views/decoration/component/widgets/banner/content.vue new file mode 100644 index 000000000..6ac6053e1 --- /dev/null +++ b/src/views/decoration/component/widgets/banner/content.vue @@ -0,0 +1,42 @@ + + + + diff --git a/src/views/decoration/component/widgets/banner/index.ts b/src/views/decoration/component/widgets/banner/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/banner/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/banner/options.ts b/src/views/decoration/component/widgets/banner/options.ts new file mode 100644 index 000000000..e33d92119 --- /dev/null +++ b/src/views/decoration/component/widgets/banner/options.ts @@ -0,0 +1,15 @@ +export default () => ({ + title: '首页轮播图', + name: 'banner', + content: { + enabled: 1, + data: [ + { + image: '', + name: '', + link: {} + } + ] + }, + styles: {} +}) diff --git a/src/views/decoration/component/widgets/customer-service/attr.vue b/src/views/decoration/component/widgets/customer-service/attr.vue new file mode 100644 index 000000000..7dd0f1a85 --- /dev/null +++ b/src/views/decoration/component/widgets/customer-service/attr.vue @@ -0,0 +1,38 @@ + + + + diff --git a/src/views/decoration/component/widgets/customer-service/content.vue b/src/views/decoration/component/widgets/customer-service/content.vue new file mode 100644 index 000000000..99d4f7e26 --- /dev/null +++ b/src/views/decoration/component/widgets/customer-service/content.vue @@ -0,0 +1,39 @@ + + + + diff --git a/src/views/decoration/component/widgets/customer-service/index.ts b/src/views/decoration/component/widgets/customer-service/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/customer-service/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/customer-service/options.ts b/src/views/decoration/component/widgets/customer-service/options.ts new file mode 100644 index 000000000..3a5efda8b --- /dev/null +++ b/src/views/decoration/component/widgets/customer-service/options.ts @@ -0,0 +1,11 @@ +export default () => ({ + title: '客服设置', + name: 'customer-service', + content: { + title: '添加客服二维码', + time: '', + mobile: '', + qrcode: '' + }, + styles: {} +}) diff --git a/src/views/decoration/component/widgets/index.ts b/src/views/decoration/component/widgets/index.ts new file mode 100644 index 000000000..1a93c8231 --- /dev/null +++ b/src/views/decoration/component/widgets/index.ts @@ -0,0 +1,13 @@ +const widgets: Record = import.meta.glob('./**/index.ts', { eager: true }) +interface Widget { + attr: any + content: any + options: any +} +const exportWidgets: Record = {} +Object.keys(widgets).forEach((key) => { + const widgetName = key.replace(/^\.\/([\w-]+).*/gi, '$1') + exportWidgets[widgetName] = widgets[key]?.default +}) + +export default exportWidgets diff --git a/src/views/decoration/component/widgets/my-service/attr.vue b/src/views/decoration/component/widgets/my-service/attr.vue new file mode 100644 index 000000000..a29d89433 --- /dev/null +++ b/src/views/decoration/component/widgets/my-service/attr.vue @@ -0,0 +1,38 @@ + + + + diff --git a/src/views/decoration/component/widgets/my-service/content.vue b/src/views/decoration/component/widgets/my-service/content.vue new file mode 100644 index 000000000..903409063 --- /dev/null +++ b/src/views/decoration/component/widgets/my-service/content.vue @@ -0,0 +1,59 @@ + + + + diff --git a/src/views/decoration/component/widgets/my-service/index.ts b/src/views/decoration/component/widgets/my-service/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/my-service/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/my-service/options.ts b/src/views/decoration/component/widgets/my-service/options.ts new file mode 100644 index 000000000..f54952b0e --- /dev/null +++ b/src/views/decoration/component/widgets/my-service/options.ts @@ -0,0 +1,16 @@ +export default () => ({ + title: '我的服务', + name: 'my-service', + content: { + style: 1, + title: '我的服务', + data: [ + { + image: '', + name: '导航名称', + link: {} + } + ] + }, + styles: {} +}) diff --git a/src/views/decoration/component/widgets/nav/attr.vue b/src/views/decoration/component/widgets/nav/attr.vue new file mode 100644 index 000000000..3128196dc --- /dev/null +++ b/src/views/decoration/component/widgets/nav/attr.vue @@ -0,0 +1,36 @@ + + + + diff --git a/src/views/decoration/component/widgets/nav/content.vue b/src/views/decoration/component/widgets/nav/content.vue new file mode 100644 index 000000000..39ca47762 --- /dev/null +++ b/src/views/decoration/component/widgets/nav/content.vue @@ -0,0 +1,32 @@ + + + + diff --git a/src/views/decoration/component/widgets/nav/index.ts b/src/views/decoration/component/widgets/nav/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/nav/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/nav/options.ts b/src/views/decoration/component/widgets/nav/options.ts new file mode 100644 index 000000000..1eb3cfa24 --- /dev/null +++ b/src/views/decoration/component/widgets/nav/options.ts @@ -0,0 +1,15 @@ +export default () => ({ + title: '导航菜单', + name: 'nav', + content: { + enabled: 1, + data: [ + { + image: '', + name: '导航名称', + link: {} + } + ] + }, + styles: {} +}) diff --git a/src/views/decoration/component/widgets/news/attr.vue b/src/views/decoration/component/widgets/news/attr.vue new file mode 100644 index 000000000..6645dc41f --- /dev/null +++ b/src/views/decoration/component/widgets/news/attr.vue @@ -0,0 +1,20 @@ + + + + diff --git a/src/views/decoration/component/widgets/news/content.vue b/src/views/decoration/component/widgets/news/content.vue new file mode 100644 index 000000000..0dda52ef2 --- /dev/null +++ b/src/views/decoration/component/widgets/news/content.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/src/views/decoration/component/widgets/news/index.ts b/src/views/decoration/component/widgets/news/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/news/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/news/options.ts b/src/views/decoration/component/widgets/news/options.ts new file mode 100644 index 000000000..dde2c1f5b --- /dev/null +++ b/src/views/decoration/component/widgets/news/options.ts @@ -0,0 +1,7 @@ +export default () => ({ + title: '资讯', + name: 'news', + disabled: 1, + content: {}, + styles: {} +}) diff --git a/src/views/decoration/component/widgets/search/attr.vue b/src/views/decoration/component/widgets/search/attr.vue new file mode 100644 index 000000000..93f927860 --- /dev/null +++ b/src/views/decoration/component/widgets/search/attr.vue @@ -0,0 +1,20 @@ + + + + diff --git a/src/views/decoration/component/widgets/search/content.vue b/src/views/decoration/component/widgets/search/content.vue new file mode 100644 index 000000000..db2a07a54 --- /dev/null +++ b/src/views/decoration/component/widgets/search/content.vue @@ -0,0 +1,23 @@ + + + + diff --git a/src/views/decoration/component/widgets/search/index.ts b/src/views/decoration/component/widgets/search/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/search/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/search/options.ts b/src/views/decoration/component/widgets/search/options.ts new file mode 100644 index 000000000..e02e29835 --- /dev/null +++ b/src/views/decoration/component/widgets/search/options.ts @@ -0,0 +1,7 @@ +export default () => ({ + title: '搜索', + name: 'search', + disabled: 1, + content: {}, + styles: {} +}) diff --git a/src/views/decoration/component/widgets/user-banner/attr.vue b/src/views/decoration/component/widgets/user-banner/attr.vue new file mode 100644 index 000000000..660fcd6c8 --- /dev/null +++ b/src/views/decoration/component/widgets/user-banner/attr.vue @@ -0,0 +1,88 @@ + + + + diff --git a/src/views/decoration/component/widgets/user-banner/content.vue b/src/views/decoration/component/widgets/user-banner/content.vue new file mode 100644 index 000000000..0a11a01c0 --- /dev/null +++ b/src/views/decoration/component/widgets/user-banner/content.vue @@ -0,0 +1,32 @@ + + + + diff --git a/src/views/decoration/component/widgets/user-banner/index.ts b/src/views/decoration/component/widgets/user-banner/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/user-banner/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/user-banner/options.ts b/src/views/decoration/component/widgets/user-banner/options.ts new file mode 100644 index 000000000..4adc70e7c --- /dev/null +++ b/src/views/decoration/component/widgets/user-banner/options.ts @@ -0,0 +1,15 @@ +export default () => ({ + title: '个人中心广告图', + name: 'user-banner', + content: { + enabled: 1, + data: [ + { + image: '', + name: '', + link: {} + } + ] + }, + styles: {} +}) diff --git a/src/views/decoration/component/widgets/user-info/attr.vue b/src/views/decoration/component/widgets/user-info/attr.vue new file mode 100644 index 000000000..93f927860 --- /dev/null +++ b/src/views/decoration/component/widgets/user-info/attr.vue @@ -0,0 +1,20 @@ + + + + diff --git a/src/views/decoration/component/widgets/user-info/content.vue b/src/views/decoration/component/widgets/user-info/content.vue new file mode 100644 index 000000000..b64e7e747 --- /dev/null +++ b/src/views/decoration/component/widgets/user-info/content.vue @@ -0,0 +1,16 @@ + + + + diff --git a/src/views/decoration/component/widgets/user-info/images/default_avatar.png b/src/views/decoration/component/widgets/user-info/images/default_avatar.png new file mode 100644 index 000000000..de31d02ad Binary files /dev/null and b/src/views/decoration/component/widgets/user-info/images/default_avatar.png differ diff --git a/src/views/decoration/component/widgets/user-info/images/my_topbg.png b/src/views/decoration/component/widgets/user-info/images/my_topbg.png new file mode 100644 index 000000000..898443832 Binary files /dev/null and b/src/views/decoration/component/widgets/user-info/images/my_topbg.png differ diff --git a/src/views/decoration/component/widgets/user-info/index.ts b/src/views/decoration/component/widgets/user-info/index.ts new file mode 100644 index 000000000..c776bce31 --- /dev/null +++ b/src/views/decoration/component/widgets/user-info/index.ts @@ -0,0 +1,8 @@ +import attr from './attr.vue' +import content from './content.vue' +import options from './options' +export default { + attr, + content, + options +} diff --git a/src/views/decoration/component/widgets/user-info/options.ts b/src/views/decoration/component/widgets/user-info/options.ts new file mode 100644 index 000000000..b3468292c --- /dev/null +++ b/src/views/decoration/component/widgets/user-info/options.ts @@ -0,0 +1,7 @@ +export default () => ({ + title: '用户信息', + name: 'user-info', + disabled: 1, + content: {}, + styles: {} +}) diff --git a/src/views/decoration/image/pc_index.png b/src/views/decoration/image/pc_index.png new file mode 100644 index 000000000..be3e5f94b Binary files /dev/null and b/src/views/decoration/image/pc_index.png differ diff --git a/src/views/decoration/pages/index.vue b/src/views/decoration/pages/index.vue new file mode 100644 index 000000000..a07e462cd --- /dev/null +++ b/src/views/decoration/pages/index.vue @@ -0,0 +1,103 @@ + + + diff --git a/src/views/decoration/pc.vue b/src/views/decoration/pc.vue new file mode 100644 index 000000000..d762878ba --- /dev/null +++ b/src/views/decoration/pc.vue @@ -0,0 +1,90 @@ + + + diff --git a/src/views/decoration/tabbar.vue b/src/views/decoration/tabbar.vue new file mode 100644 index 000000000..48a4f102b --- /dev/null +++ b/src/views/decoration/tabbar.vue @@ -0,0 +1,217 @@ + + + diff --git a/src/views/oa_CopyMe/index.vue b/src/views/oa_CopyMe/index.vue new file mode 100644 index 000000000..06fc07771 --- /dev/null +++ b/src/views/oa_CopyMe/index.vue @@ -0,0 +1,80 @@ + + + + diff --git a/src/views/oa_Deal/index.vue b/src/views/oa_Deal/index.vue new file mode 100644 index 000000000..039542029 --- /dev/null +++ b/src/views/oa_Deal/index.vue @@ -0,0 +1,95 @@ + + + + diff --git a/src/views/oa_Initiate/detail.vue b/src/views/oa_Initiate/detail.vue new file mode 100644 index 000000000..273512e28 --- /dev/null +++ b/src/views/oa_Initiate/detail.vue @@ -0,0 +1,318 @@ + + + + diff --git a/src/views/oa_Initiate/edit.vue b/src/views/oa_Initiate/edit.vue new file mode 100644 index 000000000..d54bb285f --- /dev/null +++ b/src/views/oa_Initiate/edit.vue @@ -0,0 +1,132 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/cg.vue b/src/views/oa_Initiate/form/cw/cg.vue new file mode 100644 index 000000000..c6a737241 --- /dev/null +++ b/src/views/oa_Initiate/form/cw/cg.vue @@ -0,0 +1,111 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/cga.js b/src/views/oa_Initiate/form/cw/cga.js new file mode 100644 index 000000000..4a865f74b --- /dev/null +++ b/src/views/oa_Initiate/form/cw/cga.js @@ -0,0 +1,9 @@ +const cga = { + wpmc: "物品名称", + kssj: "期望交互日期", + chsl: "采购数量", + chje: "采购金额", + jlsy: "采购事由", + bz: "备注", +} +export default cga \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/fk.vue b/src/views/oa_Initiate/form/cw/fk.vue new file mode 100644 index 000000000..2146300a6 --- /dev/null +++ b/src/views/oa_Initiate/form/cw/fk.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/fka.js b/src/views/oa_Initiate/form/cw/fka.js new file mode 100644 index 000000000..4c40383f3 --- /dev/null +++ b/src/views/oa_Initiate/form/cw/fka.js @@ -0,0 +1,11 @@ +const fka = { + wjmc: "付款金额", + jjlx: "付款方式", + lwrq: "付款日期", + jyr: "收款人全称", + yhzh: "银行账号", + yhzh: "开户行", + bz: "付款事由", + bz1: "备注", +} +export default fka \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/hdjf.vue b/src/views/oa_Initiate/form/cw/hdjf.vue new file mode 100644 index 000000000..85eb9a726 --- /dev/null +++ b/src/views/oa_Initiate/form/cw/hdjf.vue @@ -0,0 +1,118 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/hdjfa.js b/src/views/oa_Initiate/form/cw/hdjfa.js new file mode 100644 index 000000000..156cf565a --- /dev/null +++ b/src/views/oa_Initiate/form/cw/hdjfa.js @@ -0,0 +1,10 @@ +const hdjfa = { + jlje: "活动名称", + jlje: "活动预算", + hdsm: "活动说明", + kssj: "开始时间", + jssj: "结束时间", + bz: "备注", + +} +export default hdjfa \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/jk.vue b/src/views/oa_Initiate/form/cw/jk.vue new file mode 100644 index 000000000..cc5b1c2a4 --- /dev/null +++ b/src/views/oa_Initiate/form/cw/jk.vue @@ -0,0 +1,112 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/jka.js b/src/views/oa_Initiate/form/cw/jka.js new file mode 100644 index 000000000..b742c8465 --- /dev/null +++ b/src/views/oa_Initiate/form/cw/jka.js @@ -0,0 +1,12 @@ +const jka = { + wjmc: "借款金额", + jjlx: "借款类型", + lwrq: "申请日期", + jyr: "借款人", + yhzh: "银行账号", + khh: "开户行", + bz: "借款事由", + bz1: "备注", + +} +export default jka \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/jl.vue b/src/views/oa_Initiate/form/cw/jl.vue new file mode 100644 index 000000000..3c4c0da3b --- /dev/null +++ b/src/views/oa_Initiate/form/cw/jl.vue @@ -0,0 +1,86 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/cw/jla.js b/src/views/oa_Initiate/form/cw/jla.js new file mode 100644 index 000000000..3c938d43a --- /dev/null +++ b/src/views/oa_Initiate/form/cw/jla.js @@ -0,0 +1,7 @@ +const jla = { + jlje: "奖励金额", + kssj: "奖励日期", + jlsy: "奖励事由", + bz: "备注", +} +export default jla \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/cc.vue b/src/views/oa_Initiate/form/jq/cc.vue new file mode 100644 index 000000000..d49c68981 --- /dev/null +++ b/src/views/oa_Initiate/form/jq/cc.vue @@ -0,0 +1,103 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/cca.js b/src/views/oa_Initiate/form/jq/cca.js new file mode 100644 index 000000000..76ca4b260 --- /dev/null +++ b/src/views/oa_Initiate/form/jq/cca.js @@ -0,0 +1,7 @@ +const cca = { + kssj: "开始时间", + jssj: "结束时间", + qjts: "出差天数", + ccsy: "出差事由", +} +export default cca \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/jb.vue b/src/views/oa_Initiate/form/jq/jb.vue new file mode 100644 index 000000000..a66168f20 --- /dev/null +++ b/src/views/oa_Initiate/form/jq/jb.vue @@ -0,0 +1,105 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/jba.js b/src/views/oa_Initiate/form/jq/jba.js new file mode 100644 index 000000000..0bf20d7d6 --- /dev/null +++ b/src/views/oa_Initiate/form/jq/jba.js @@ -0,0 +1,7 @@ +const jba = { + kssj: "开始时间", + jssj: "结束时间", + qjts: "加班天数", + jbsy: "加班事由", +} +export default jba \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/qj.vue b/src/views/oa_Initiate/form/jq/qj.vue new file mode 100644 index 000000000..70ef152b3 --- /dev/null +++ b/src/views/oa_Initiate/form/jq/qj.vue @@ -0,0 +1,115 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/qja.js b/src/views/oa_Initiate/form/jq/qja.js new file mode 100644 index 000000000..2d213b653 --- /dev/null +++ b/src/views/oa_Initiate/form/jq/qja.js @@ -0,0 +1,8 @@ +const qja = { + qjlx: "请假类型", + kssj: "开始时间", + jssj: "结束时间", + qjts: "请假天数", + qjsy: "请假事由", +} +export default qja \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/wc.vue b/src/views/oa_Initiate/form/jq/wc.vue new file mode 100644 index 000000000..5231cd57e --- /dev/null +++ b/src/views/oa_Initiate/form/jq/wc.vue @@ -0,0 +1,115 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/jq/wca.js b/src/views/oa_Initiate/form/jq/wca.js new file mode 100644 index 000000000..2957e2f8e --- /dev/null +++ b/src/views/oa_Initiate/form/jq/wca.js @@ -0,0 +1,8 @@ +const wca = { + wcdd: "外出地点", + kssj: "开始时间", + jssj: "结束时间", + qjts: "外出天数", + wcsy: "外出事由", +} +export default wca \ No newline at end of file diff --git a/src/views/oa_Initiate/form/qt/tysp.vue b/src/views/oa_Initiate/form/qt/tysp.vue new file mode 100644 index 000000000..b59513796 --- /dev/null +++ b/src/views/oa_Initiate/form/qt/tysp.vue @@ -0,0 +1,76 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/qt/tyspa.js b/src/views/oa_Initiate/form/qt/tyspa.js new file mode 100644 index 000000000..d3fbdad2e --- /dev/null +++ b/src/views/oa_Initiate/form/qt/tyspa.js @@ -0,0 +1,7 @@ +const tyspa = { + jyr: "审批内容", + jjlx: "紧急程度", + bz1: "详细描述", + +} +export default tyspa \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/lz.vue b/src/views/oa_Initiate/form/rs/lz.vue new file mode 100644 index 000000000..b89a73d62 --- /dev/null +++ b/src/views/oa_Initiate/form/rs/lz.vue @@ -0,0 +1,140 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/lza.js b/src/views/oa_Initiate/form/rs/lza.js new file mode 100644 index 000000000..7d4f56b2f --- /dev/null +++ b/src/views/oa_Initiate/form/rs/lza.js @@ -0,0 +1,11 @@ +const lza = { + jyr: "员工姓名", + lwrq: "入职时间", + rzbm: "所在部门", + drzw: "担任职务", + lwrq1: "申请离职日期", + lwrq2: "预计离职日期", + bz1: "离职原因", + +} +export default lza \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/rz.vue b/src/views/oa_Initiate/form/rs/rz.vue new file mode 100644 index 000000000..69e8aa9ed --- /dev/null +++ b/src/views/oa_Initiate/form/rs/rz.vue @@ -0,0 +1,133 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/rza.js b/src/views/oa_Initiate/form/rs/rza.js new file mode 100644 index 000000000..8861c8bce --- /dev/null +++ b/src/views/oa_Initiate/form/rs/rza.js @@ -0,0 +1,11 @@ +const rza = { + jyr: "员工姓名", + lwrq: "入职时间", + wjmc: "手机号码", + sex: "性别", + rzbm: "入职部门", + drzw: "担任职务", + bz1: "备注", + +} +export default rza \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/zg.vue b/src/views/oa_Initiate/form/rs/zg.vue new file mode 100644 index 000000000..d21d68b31 --- /dev/null +++ b/src/views/oa_Initiate/form/rs/zg.vue @@ -0,0 +1,156 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/zga.js b/src/views/oa_Initiate/form/rs/zga.js new file mode 100644 index 000000000..055336bd8 --- /dev/null +++ b/src/views/oa_Initiate/form/rs/zga.js @@ -0,0 +1,13 @@ +const zga = { + jyr: "员工姓名", + lwrq: "入职时间", + rzbm: "当前所在部门", + drzw: "担任职务", + rzbm1: "转岗后所在部门", + drzw1: "转刚后职务", + lwrq1: "申请转岗日期", + lwrq2: "预计转刚日期", + bz1: "转岗原因", + +} +export default zga \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/zpxq.vue b/src/views/oa_Initiate/form/rs/zpxq.vue new file mode 100644 index 000000000..0afe6d115 --- /dev/null +++ b/src/views/oa_Initiate/form/rs/zpxq.vue @@ -0,0 +1,113 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/zpxqa.js b/src/views/oa_Initiate/form/rs/zpxqa.js new file mode 100644 index 000000000..b23aa2418 --- /dev/null +++ b/src/views/oa_Initiate/form/rs/zpxqa.js @@ -0,0 +1,10 @@ +const zpxqa = { + rzbm: "招聘部门", + lwrq1: "期望到岗日期", + drzw: "招聘岗位", + bz1: "招聘人数", + gwzz: "岗位职责", + rzyq: "任职要求", + +} +export default zpxqa \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/zz.vue b/src/views/oa_Initiate/form/rs/zz.vue new file mode 100644 index 000000000..589a2883c --- /dev/null +++ b/src/views/oa_Initiate/form/rs/zz.vue @@ -0,0 +1,124 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/rs/zza.js b/src/views/oa_Initiate/form/rs/zza.js new file mode 100644 index 000000000..84cac2f6c --- /dev/null +++ b/src/views/oa_Initiate/form/rs/zza.js @@ -0,0 +1,8 @@ +const zza = { + jyr: "员工姓名", + lwrq: "转正日期", + rzbm: "所在部门", + drzw: "担任职务", + bz1: "试用期评价", +} +export default zza \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/gwlz.vue b/src/views/oa_Initiate/form/xz/gwlz.vue new file mode 100644 index 000000000..7e523454f --- /dev/null +++ b/src/views/oa_Initiate/form/xz/gwlz.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/gwlza.js b/src/views/oa_Initiate/form/xz/gwlza.js new file mode 100644 index 000000000..6c45bddcc --- /dev/null +++ b/src/views/oa_Initiate/form/xz/gwlza.js @@ -0,0 +1,9 @@ +const gwlza = { + wjmc: "文件名称", + jjcd: "紧急程度", + lwdw: "来文单位", + lwrq: "来文日期", + wjzy: "文件摘要", + bz: "备注", +} +export default gwlza \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/hysyd.vue b/src/views/oa_Initiate/form/xz/hysyd.vue new file mode 100644 index 000000000..40df003c6 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/hysyd.vue @@ -0,0 +1,99 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/hysyda.js b/src/views/oa_Initiate/form/xz/hysyda.js new file mode 100644 index 000000000..d7767cda9 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/hysyda.js @@ -0,0 +1,7 @@ +const hysyda = { + item: "会议室选择", + kssj: "开始时间", + jssj: "结束时间", + bz: "备注", +} +export default hysyda \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/wpwx.vue b/src/views/oa_Initiate/form/xz/wpwx.vue new file mode 100644 index 000000000..1fa3fb1d1 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/wpwx.vue @@ -0,0 +1,124 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/wpwxa.js b/src/views/oa_Initiate/form/xz/wpwxa.js new file mode 100644 index 000000000..27af992b7 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/wpwxa.js @@ -0,0 +1,8 @@ +const wpwxa = { + gzsbmc: "故障设备名称", + jjcd: "紧急程度", + yjwxfy: "预计维修费用", + bxrq: "报修日期", + gzms: "故障描述", +} +export default wpwxa \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/yc.vue b/src/views/oa_Initiate/form/xz/yc.vue new file mode 100644 index 000000000..3e912bb23 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/yc.vue @@ -0,0 +1,129 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/yca.js b/src/views/oa_Initiate/form/xz/yca.js new file mode 100644 index 000000000..da6d4d918 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/yca.js @@ -0,0 +1,9 @@ +const yca = { + kssj: "开始时间", + jssj: "结束时间", + qjts: "用车天数", + mdd: "用车目的地", + clxz: "车辆选择", + ccsy: "用车事由", +} +export default yca \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/ycgh.vue b/src/views/oa_Initiate/form/xz/ycgh.vue new file mode 100644 index 000000000..2104daed0 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/ycgh.vue @@ -0,0 +1,93 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/ycgha.js b/src/views/oa_Initiate/form/xz/ycgha.js new file mode 100644 index 000000000..91c7f1d0d --- /dev/null +++ b/src/views/oa_Initiate/form/xz/ycgha.js @@ -0,0 +1,8 @@ +const ycgha = { + clxz: "车辆选择", + kssj: "归还时间", + qjts: "用车公里数", + qjts1: "用车后公里数", + bz: "备注", +} +export default ycgha \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/yz.vue b/src/views/oa_Initiate/form/xz/yz.vue new file mode 100644 index 000000000..da2846dcc --- /dev/null +++ b/src/views/oa_Initiate/form/xz/yz.vue @@ -0,0 +1,114 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/yza.js b/src/views/oa_Initiate/form/xz/yza.js new file mode 100644 index 000000000..981d48ee7 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/yza.js @@ -0,0 +1,8 @@ +const yza = { + kssj: "用印日期", + jjcd: "印章类型", + ycmdd: "文件名称", + wjlx: "文件类型", + jbsy: "用印事由", +} +export default yza \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/zzjy.vue b/src/views/oa_Initiate/form/xz/zzjy.vue new file mode 100644 index 000000000..54aa4ab9e --- /dev/null +++ b/src/views/oa_Initiate/form/xz/zzjy.vue @@ -0,0 +1,212 @@ + + + \ No newline at end of file diff --git a/src/views/oa_Initiate/form/xz/zzjya.js b/src/views/oa_Initiate/form/xz/zzjya.js new file mode 100644 index 000000000..3ba94a493 --- /dev/null +++ b/src/views/oa_Initiate/form/xz/zzjya.js @@ -0,0 +1,12 @@ +const zzjya = { + jyr: "借用人", + jyrsj: "借用人手机", + jybm: "借用部门", + jylx: "借用类型", + sjdayt: "所借档案用途", + kssj: "借用日期", + jssj: "拟归还日期", + jydamx: "借用档案明细", + bz: "备注", +} +export default zzjya \ No newline at end of file diff --git a/src/views/oa_Initiate/index.vue b/src/views/oa_Initiate/index.vue new file mode 100644 index 000000000..1a65b3560 --- /dev/null +++ b/src/views/oa_Initiate/index.vue @@ -0,0 +1,197 @@ + + + + + \ No newline at end of file diff --git a/src/views/oa_admin/edit.vue b/src/views/oa_admin/edit.vue new file mode 100644 index 000000000..0e46fc324 --- /dev/null +++ b/src/views/oa_admin/edit.vue @@ -0,0 +1,328 @@ + + + diff --git a/src/views/oa_admin/index.vue b/src/views/oa_admin/index.vue new file mode 100644 index 000000000..ac3a90f9f --- /dev/null +++ b/src/views/oa_admin/index.vue @@ -0,0 +1,208 @@ + + + + diff --git a/src/views/oa_apply/detail.vue b/src/views/oa_apply/detail.vue new file mode 100644 index 000000000..c5e613e9e --- /dev/null +++ b/src/views/oa_apply/detail.vue @@ -0,0 +1,246 @@ + + + + diff --git a/src/views/oa_apply/edit.vue b/src/views/oa_apply/edit.vue new file mode 100644 index 000000000..158febc2c --- /dev/null +++ b/src/views/oa_apply/edit.vue @@ -0,0 +1,168 @@ + + + \ No newline at end of file diff --git a/src/views/oa_apply/index.vue b/src/views/oa_apply/index.vue new file mode 100644 index 000000000..4fcc4e0e4 --- /dev/null +++ b/src/views/oa_apply/index.vue @@ -0,0 +1,147 @@ + + + + diff --git a/src/views/oa_arrival/detail.vue b/src/views/oa_arrival/detail.vue new file mode 100644 index 000000000..80c753786 --- /dev/null +++ b/src/views/oa_arrival/detail.vue @@ -0,0 +1,145 @@ + + + + diff --git a/src/views/oa_arrival/edit.vue b/src/views/oa_arrival/edit.vue new file mode 100644 index 000000000..6f6b37c6d --- /dev/null +++ b/src/views/oa_arrival/edit.vue @@ -0,0 +1,243 @@ + + + + \ No newline at end of file diff --git a/src/views/oa_arrival/index.vue b/src/views/oa_arrival/index.vue new file mode 100644 index 000000000..dd92150a2 --- /dev/null +++ b/src/views/oa_arrival/index.vue @@ -0,0 +1,119 @@ + + + diff --git a/src/views/oa_car_cate/edit.vue b/src/views/oa_car_cate/edit.vue new file mode 100644 index 000000000..8875155b4 --- /dev/null +++ b/src/views/oa_car_cate/edit.vue @@ -0,0 +1,126 @@ + + + diff --git a/src/views/oa_car_cate/index.vue b/src/views/oa_car_cate/index.vue new file mode 100644 index 000000000..3980ac8fa --- /dev/null +++ b/src/views/oa_car_cate/index.vue @@ -0,0 +1,123 @@ + + + + diff --git a/src/views/oa_copy_to_me/detail.vue b/src/views/oa_copy_to_me/detail.vue new file mode 100644 index 000000000..3c2e3daae --- /dev/null +++ b/src/views/oa_copy_to_me/detail.vue @@ -0,0 +1,217 @@ + + + + diff --git a/src/views/oa_copy_to_me/index.vue b/src/views/oa_copy_to_me/index.vue new file mode 100644 index 000000000..e09a8b601 --- /dev/null +++ b/src/views/oa_copy_to_me/index.vue @@ -0,0 +1,114 @@ + + + + diff --git a/src/views/oa_department_change/edit.vue b/src/views/oa_department_change/edit.vue new file mode 100644 index 000000000..3c81a49d1 --- /dev/null +++ b/src/views/oa_department_change/edit.vue @@ -0,0 +1,185 @@ + + + diff --git a/src/views/oa_department_change/index.vue b/src/views/oa_department_change/index.vue new file mode 100644 index 000000000..d6f195314 --- /dev/null +++ b/src/views/oa_department_change/index.vue @@ -0,0 +1,129 @@ + + + + diff --git a/src/views/oa_examine/detail.vue b/src/views/oa_examine/detail.vue new file mode 100644 index 000000000..be2d9877f --- /dev/null +++ b/src/views/oa_examine/detail.vue @@ -0,0 +1,190 @@ + + + + diff --git a/src/views/oa_examine/edit.vue b/src/views/oa_examine/edit.vue new file mode 100644 index 000000000..4469a01eb --- /dev/null +++ b/src/views/oa_examine/edit.vue @@ -0,0 +1,302 @@ + + + + \ No newline at end of file diff --git a/src/views/oa_examine/index.vue b/src/views/oa_examine/index.vue new file mode 100644 index 000000000..afd4ae554 --- /dev/null +++ b/src/views/oa_examine/index.vue @@ -0,0 +1,134 @@ + + + \ No newline at end of file diff --git a/src/views/oa_examine_temp/edit.vue b/src/views/oa_examine_temp/edit.vue new file mode 100644 index 000000000..a1faeb569 --- /dev/null +++ b/src/views/oa_examine_temp/edit.vue @@ -0,0 +1,186 @@ + + + \ No newline at end of file diff --git a/src/views/oa_examine_temp/index.vue b/src/views/oa_examine_temp/index.vue new file mode 100644 index 000000000..b8e37867d --- /dev/null +++ b/src/views/oa_examine_temp/index.vue @@ -0,0 +1,130 @@ + + + diff --git a/src/views/oa_flow/edit.vue b/src/views/oa_flow/edit.vue new file mode 100644 index 000000000..3cf96157b --- /dev/null +++ b/src/views/oa_flow/edit.vue @@ -0,0 +1,312 @@ + + + diff --git a/src/views/oa_flow/index.vue b/src/views/oa_flow/index.vue new file mode 100644 index 000000000..c2dfd5571 --- /dev/null +++ b/src/views/oa_flow/index.vue @@ -0,0 +1,137 @@ + + + diff --git a/src/views/oa_flow_type/edit.vue b/src/views/oa_flow_type/edit.vue new file mode 100644 index 000000000..092401656 --- /dev/null +++ b/src/views/oa_flow_type/edit.vue @@ -0,0 +1,255 @@ + + + \ No newline at end of file diff --git a/src/views/oa_flow_type/index.vue b/src/views/oa_flow_type/index.vue new file mode 100644 index 000000000..1bec9c7fa --- /dev/null +++ b/src/views/oa_flow_type/index.vue @@ -0,0 +1,147 @@ + + + diff --git a/src/views/oa_invoice_apply/detail.vue b/src/views/oa_invoice_apply/detail.vue new file mode 100644 index 000000000..63eac4591 --- /dev/null +++ b/src/views/oa_invoice_apply/detail.vue @@ -0,0 +1,240 @@ + + + + diff --git a/src/views/oa_invoice_apply/edit.vue b/src/views/oa_invoice_apply/edit.vue new file mode 100644 index 000000000..90600ed32 --- /dev/null +++ b/src/views/oa_invoice_apply/edit.vue @@ -0,0 +1,194 @@ + + + \ No newline at end of file diff --git a/src/views/oa_invoice_apply/index.vue b/src/views/oa_invoice_apply/index.vue new file mode 100644 index 000000000..a65aea58c --- /dev/null +++ b/src/views/oa_invoice_apply/index.vue @@ -0,0 +1,151 @@ + + + + diff --git a/src/views/oa_invoice_copy/detail.vue b/src/views/oa_invoice_copy/detail.vue new file mode 100644 index 000000000..d0e0a56e0 --- /dev/null +++ b/src/views/oa_invoice_copy/detail.vue @@ -0,0 +1,239 @@ + + + + diff --git a/src/views/oa_invoice_copy/index.vue b/src/views/oa_invoice_copy/index.vue new file mode 100644 index 000000000..1f115249c --- /dev/null +++ b/src/views/oa_invoice_copy/index.vue @@ -0,0 +1,109 @@ + + + diff --git a/src/views/oa_invoice_deal/detail.vue b/src/views/oa_invoice_deal/detail.vue new file mode 100644 index 000000000..982a060c4 --- /dev/null +++ b/src/views/oa_invoice_deal/detail.vue @@ -0,0 +1,240 @@ + + + + diff --git a/src/views/oa_invoice_deal/index.vue b/src/views/oa_invoice_deal/index.vue new file mode 100644 index 000000000..2614cec84 --- /dev/null +++ b/src/views/oa_invoice_deal/index.vue @@ -0,0 +1,105 @@ + + + diff --git a/src/views/oa_invoice_invoice/detail.vue b/src/views/oa_invoice_invoice/detail.vue new file mode 100644 index 000000000..a4c63092c --- /dev/null +++ b/src/views/oa_invoice_invoice/detail.vue @@ -0,0 +1,253 @@ + + + + diff --git a/src/views/oa_invoice_invoice/index.vue b/src/views/oa_invoice_invoice/index.vue new file mode 100644 index 000000000..e3b316167 --- /dev/null +++ b/src/views/oa_invoice_invoice/index.vue @@ -0,0 +1,169 @@ + + + diff --git a/src/views/oa_meeting_cate/edit.vue b/src/views/oa_meeting_cate/edit.vue new file mode 100644 index 000000000..903f4fa5c --- /dev/null +++ b/src/views/oa_meeting_cate/edit.vue @@ -0,0 +1,111 @@ + + + diff --git a/src/views/oa_meeting_cate/index.vue b/src/views/oa_meeting_cate/index.vue new file mode 100644 index 000000000..d330fd519 --- /dev/null +++ b/src/views/oa_meeting_cate/index.vue @@ -0,0 +1,124 @@ + + + + + + diff --git a/src/views/oa_message/edit.vue b/src/views/oa_message/edit.vue new file mode 100644 index 000000000..93ccdd387 --- /dev/null +++ b/src/views/oa_message/edit.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/views/oa_message/index.vue b/src/views/oa_message/index.vue new file mode 100644 index 000000000..dd744b1da --- /dev/null +++ b/src/views/oa_message/index.vue @@ -0,0 +1,111 @@ + + + + diff --git a/src/views/oa_myDeal/detail.vue b/src/views/oa_myDeal/detail.vue new file mode 100644 index 000000000..3c2e3daae --- /dev/null +++ b/src/views/oa_myDeal/detail.vue @@ -0,0 +1,217 @@ + + + + diff --git a/src/views/oa_myDeal/index.vue b/src/views/oa_myDeal/index.vue new file mode 100644 index 000000000..e744c4102 --- /dev/null +++ b/src/views/oa_myDeal/index.vue @@ -0,0 +1,114 @@ + + + + diff --git a/src/views/oa_personal_quit/edit.vue b/src/views/oa_personal_quit/edit.vue new file mode 100644 index 000000000..19e791825 --- /dev/null +++ b/src/views/oa_personal_quit/edit.vue @@ -0,0 +1,248 @@ + + + diff --git a/src/views/oa_personal_quit/index.vue b/src/views/oa_personal_quit/index.vue new file mode 100644 index 000000000..d17b4202d --- /dev/null +++ b/src/views/oa_personal_quit/index.vue @@ -0,0 +1,124 @@ + + + + diff --git a/src/views/oa_plan/detail.vue b/src/views/oa_plan/detail.vue new file mode 100644 index 000000000..69a155529 --- /dev/null +++ b/src/views/oa_plan/detail.vue @@ -0,0 +1,83 @@ + + + + diff --git a/src/views/oa_plan/edit.vue b/src/views/oa_plan/edit.vue new file mode 100644 index 000000000..9857f607b --- /dev/null +++ b/src/views/oa_plan/edit.vue @@ -0,0 +1,177 @@ + + + diff --git a/src/views/oa_plan/index.vue b/src/views/oa_plan/index.vue new file mode 100644 index 000000000..f871b1eec --- /dev/null +++ b/src/views/oa_plan/index.vue @@ -0,0 +1,141 @@ + + + + diff --git a/src/views/oa_plan_calendar/index.vue b/src/views/oa_plan_calendar/index.vue new file mode 100644 index 000000000..bd8304cd5 --- /dev/null +++ b/src/views/oa_plan_calendar/index.vue @@ -0,0 +1,114 @@ + + + + + + diff --git a/src/views/oa_schedule/detail.vue b/src/views/oa_schedule/detail.vue new file mode 100644 index 000000000..c9b979f15 --- /dev/null +++ b/src/views/oa_schedule/detail.vue @@ -0,0 +1,89 @@ + + + + diff --git a/src/views/oa_schedule/edit.vue b/src/views/oa_schedule/edit.vue new file mode 100644 index 000000000..6842fa907 --- /dev/null +++ b/src/views/oa_schedule/edit.vue @@ -0,0 +1,183 @@ + + + diff --git a/src/views/oa_schedule/index.vue b/src/views/oa_schedule/index.vue new file mode 100644 index 000000000..69bae20f8 --- /dev/null +++ b/src/views/oa_schedule/index.vue @@ -0,0 +1,139 @@ + + + + diff --git a/src/views/oa_schedule_calendar/index.vue b/src/views/oa_schedule_calendar/index.vue new file mode 100644 index 000000000..cb13a9e78 --- /dev/null +++ b/src/views/oa_schedule_calendar/index.vue @@ -0,0 +1,116 @@ + + + + + + diff --git a/src/views/oa_seal_cate/edit.vue b/src/views/oa_seal_cate/edit.vue new file mode 100644 index 000000000..fdc01fa91 --- /dev/null +++ b/src/views/oa_seal_cate/edit.vue @@ -0,0 +1,111 @@ + + + diff --git a/src/views/oa_seal_cate/index.vue b/src/views/oa_seal_cate/index.vue new file mode 100644 index 000000000..2b76985bb --- /dev/null +++ b/src/views/oa_seal_cate/index.vue @@ -0,0 +1,123 @@ + + + + diff --git a/src/views/oa_self_examine/detail.vue b/src/views/oa_self_examine/detail.vue new file mode 100644 index 000000000..40c0ee450 --- /dev/null +++ b/src/views/oa_self_examine/detail.vue @@ -0,0 +1,160 @@ + + + + diff --git a/src/views/oa_self_examine/edit.vue b/src/views/oa_self_examine/edit.vue new file mode 100644 index 000000000..32cee9da4 --- /dev/null +++ b/src/views/oa_self_examine/edit.vue @@ -0,0 +1,223 @@ + + + + \ No newline at end of file diff --git a/src/views/oa_self_examine/index.vue b/src/views/oa_self_examine/index.vue new file mode 100644 index 000000000..5435bceaa --- /dev/null +++ b/src/views/oa_self_examine/index.vue @@ -0,0 +1,138 @@ + + + diff --git a/src/views/oa_transfe/detail.vue b/src/views/oa_transfe/detail.vue new file mode 100644 index 000000000..3c2e3daae --- /dev/null +++ b/src/views/oa_transfe/detail.vue @@ -0,0 +1,217 @@ + + + + diff --git a/src/views/oa_transfe/index.vue b/src/views/oa_transfe/index.vue new file mode 100644 index 000000000..c8ca1592d --- /dev/null +++ b/src/views/oa_transfe/index.vue @@ -0,0 +1,128 @@ + + + diff --git a/src/views/oa_work/components/reciveReport.vue b/src/views/oa_work/components/reciveReport.vue new file mode 100644 index 000000000..d28d40c3d --- /dev/null +++ b/src/views/oa_work/components/reciveReport.vue @@ -0,0 +1,103 @@ + + \ No newline at end of file diff --git a/src/views/oa_work/components/sendReport.vue b/src/views/oa_work/components/sendReport.vue new file mode 100644 index 000000000..5accf879a --- /dev/null +++ b/src/views/oa_work/components/sendReport.vue @@ -0,0 +1,145 @@ + + \ No newline at end of file diff --git a/src/views/oa_work/detail.vue b/src/views/oa_work/detail.vue new file mode 100644 index 000000000..17b68b4cd --- /dev/null +++ b/src/views/oa_work/detail.vue @@ -0,0 +1,87 @@ + + + + diff --git a/src/views/oa_work/edit.vue b/src/views/oa_work/edit.vue new file mode 100644 index 000000000..e80ce1b4c --- /dev/null +++ b/src/views/oa_work/edit.vue @@ -0,0 +1,181 @@ + + + diff --git a/src/views/oa_work/index.vue b/src/views/oa_work/index.vue new file mode 100644 index 000000000..641e7303e --- /dev/null +++ b/src/views/oa_work/index.vue @@ -0,0 +1,26 @@ + + + + diff --git a/src/views/oa_work/report.vue b/src/views/oa_work/report.vue new file mode 100644 index 000000000..41703efdf --- /dev/null +++ b/src/views/oa_work/report.vue @@ -0,0 +1,193 @@ + + + + + \ No newline at end of file diff --git a/src/views/organization/organization/edit.vue b/src/views/organization/organization/edit.vue new file mode 100644 index 000000000..74dd52289 --- /dev/null +++ b/src/views/organization/organization/edit.vue @@ -0,0 +1,87 @@ + + diff --git a/src/views/organization/organization/index.vue b/src/views/organization/organization/index.vue new file mode 100644 index 000000000..c536aca66 --- /dev/null +++ b/src/views/organization/organization/index.vue @@ -0,0 +1,99 @@ + + \ No newline at end of file