Commit 5de8cb9b authored by daywrite's avatar daywrite

修复菜单接入域name

parent f96bb256
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
"icon": "fa-home", "icon": "fa-home",
"isRouteShow": 1, "isRouteShow": 1,
"title": "费用报销", "title": "费用报销",
"appName": 'reimbursement', "appName": 'reimbursementManagement',
"url": "/reimbursement" "url": "/reimbursement"
}, { }, {
"icon": "fa-home", "icon": "fa-home",
...@@ -41,25 +41,25 @@ ...@@ -41,25 +41,25 @@
"icon": "fa-home", "icon": "fa-home",
"isRouteShow": 1, "isRouteShow": 1,
"title": "文档管理", "title": "文档管理",
"appName": 'document', "appName": 'documentManagement',
"url": "/document" "url": "/document"
}, { }, {
"icon": "fa-home", "icon": "fa-home",
"isRouteShow": 1, "isRouteShow": 1,
"title": "工单管理", "title": "工单管理",
"appName": 'case', "appName": 'caseManagement',
"url": "/case" "url": "/case"
}, { }, {
"icon": "fa-home", "icon": "fa-home",
"isRouteShow": 1, "isRouteShow": 1,
"title": "供应商管理", "title": "供应商管理",
"appName": 'supplier', "appName": 'suppliers',
"url": "/supplier" "url": "/supplier"
}, { }, {
"icon": "fa-home", "icon": "fa-home",
"isRouteShow": 1, "isRouteShow": 1,
"title": "员工管理", "title": "员工管理",
"appName": 'account', "appName": 'accounts',
"url": "/account" "url": "/account"
}], }],
homePage: { homePage: {
......
.account-app { .accounts-app {
.color-649FD7 { .color-649FD7 {
color: #649FD7 color: #649FD7
} }
......
.case-app { .caseManagement-app {
.mb10 { .mb10 {
margin-bottom: 10px; margin-bottom: 10px;
} }
......
.document-app { .documentManagement-app {
.el-button--cancel { .el-button--cancel {
color:white; color:white;
background-color: #EB7567; background-color: #EB7567;
......
.reimbursement-app { .reimbursementManagement-app {
.el-button--cancel { .el-button--cancel {
color:white; color:white;
background-color: #EB7567; background-color: #EB7567;
......
.supplier-app { .suppliers-app {
.color-dc3545 { .color-dc3545 {
color: #dc3545; color: #dc3545;
} }
......
...@@ -30,22 +30,22 @@ let RouterInit = () => { ...@@ -30,22 +30,22 @@ let RouterInit = () => {
portal.createApp(appName, {}, app => { portal.createApp(appName, {}, app => {
app.mapRoute(routes) app.mapRoute(routes)
}) })
portal.createApp('reimbursement', {}, app => { portal.createApp('reimbursementManagement', {}, app => {
app.mapRoute(reimRoutes) app.mapRoute(reimRoutes)
}) })
portal.createApp('task', {}, app => { portal.createApp('task', {}, app => {
app.mapRoute(taskRoutes) app.mapRoute(taskRoutes)
}) })
portal.createApp('document', {}, app => { portal.createApp('documentManagement', {}, app => {
app.mapRoute(documentRoutes) app.mapRoute(documentRoutes)
}) })
portal.createApp('case', {}, app => { portal.createApp('caseManagement', {}, app => {
app.mapRoute(caseRoutes) app.mapRoute(caseRoutes)
}) })
portal.createApp('supplier', {}, app => { portal.createApp('suppliers', {}, app => {
app.mapRoute(supplierRoute) app.mapRoute(supplierRoute)
}) })
portal.createApp('account', {}, app => { portal.createApp('accounts', {}, app => {
app.mapRoute(accountRoute) app.mapRoute(accountRoute)
}) })
// portal.createApp('client', {}, app => { // portal.createApp('client', {}, app => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment