Commit 4d424452 by 牛晓林

merge

parents ba0ba029 d801bd8c
...@@ -43,4 +43,8 @@ yarn-error.log ...@@ -43,4 +43,8 @@ yarn-error.log
# System Files # System Files
.DS_Store .DS_Store
Thumbs.db Thumbs.db
/src/proxy.config.json <<<<<<< HEAD
\ No newline at end of file /src/proxy.config.json
=======
/src/proxy.config.json
>>>>>>> d801bd8c63a68261cf527d8eaba6cc0d6dc71f07
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -42,16 +42,9 @@ ...@@ -42,16 +42,9 @@
"@angular/platform-browser": "~7.2.0", "@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0", "@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0", "@angular/router": "~7.2.0",
"core-js": "^2.5.4",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26",
"@antv/data-set": "^0.10.2", "@antv/data-set": "^0.10.2",
"@antv/g2": "^3.5.1", "@antv/g2": "^3.5.1",
"@antv/g2-plugin-slider": "^2.1.1", "@antv/g2-plugin-slider": "^2.1.1",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"ajv": "^6.9.2",
"@delon/abc": "^7.2.0", "@delon/abc": "^7.2.0",
"@delon/acl": "^7.2.0", "@delon/acl": "^7.2.0",
"@delon/auth": "^7.2.0", "@delon/auth": "^7.2.0",
...@@ -61,13 +54,21 @@ ...@@ -61,13 +54,21 @@
"@delon/mock": "^7.2.0", "@delon/mock": "^7.2.0",
"@delon/theme": "^7.2.0", "@delon/theme": "^7.2.0",
"@delon/util": "^7.2.0", "@delon/util": "^7.2.0",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"@zxing/ngx-scanner": "^1.3.0",
"ajv": "^6.9.2",
"core-js": "^2.5.4",
"file-saver": "^2.0.0", "file-saver": "^2.0.0",
"ng-zorro-antd": "^7.2.0", "ng-zorro-antd": "^7.2.0",
"ngx-countdown": "^3.2.0", "ngx-countdown": "^3.2.0",
"ngx-tinymce": "^7.0.0", "ngx-tinymce": "^7.0.0",
"ngx-ueditor": "^2.1.3", "ngx-ueditor": "^2.1.3",
"qrious": "^4.0.2",
"rxjs": "~6.3.3",
"screenfull": "^4.2.0", "screenfull": "^4.2.0",
"qrious": "^4.0.2" "tslib": "^1.9.0",
"zone.js": "~0.8.26"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~0.13.0", "@angular-devkit/build-angular": "~0.13.0",
......
<!--The content below is only a placeholder and can be replaced.--> <!--The content below is only a placeholder and can be replaced.-->
<router-outlet></router-outlet> <router-outlet></router-outlet>
...@@ -2,7 +2,7 @@ import { NgModule, LOCALE_ID, APP_INITIALIZER } from '@angular/core'; ...@@ -2,7 +2,7 @@ import { NgModule, LOCALE_ID, APP_INITIALIZER } from '@angular/core';
import { HttpClient, HttpClientModule } from '@angular/common/http'; import { HttpClient, HttpClientModule } from '@angular/common/http';
import { BrowserModule } from '@angular/platform-browser'; import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { ZXingScannerModule } from '@zxing/ngx-scanner';
// #region default language // #region default language
// 参考:https://ng-alain.com/docs/i18n // 参考:https://ng-alain.com/docs/i18n
import { default as ngLang } from '@angular/common/locales/zh'; import { default as ngLang } from '@angular/common/locales/zh';
...@@ -96,6 +96,7 @@ import { LayoutModule } from './layout/layout.module'; ...@@ -96,6 +96,7 @@ import { LayoutModule } from './layout/layout.module';
@NgModule({ @NgModule({
declarations: [AppComponent], declarations: [AppComponent],
imports: [ imports: [
ZXingScannerModule,
BrowserModule, BrowserModule,
BrowserAnimationsModule, BrowserAnimationsModule,
HttpClientModule, HttpClientModule,
......
import { Injectable } from '@angular/core';
import { _HttpClient } from '@delon/theme';
@Injectable({
providedIn: 'root',
})
export class ListService {
constructor(private http: _HttpClient) {}
/**
*获取资产台账列表
*
* @param {number} kindAsset 1为类固定 2固定
* @returns
* @memberof ListService
*/
getKindAssetList(kindAsset: number) {
const url = 'asset/a/asset/assets/data?kindAsset=' + kindAsset;
return this.http.get(url);
}
}
@import '~@delon/theme/styles/default'; @import '~@delon/theme/styles/default';
:host { :host {
::ng-deep { ::ng-deep {
.container { .container {
...@@ -7,11 +8,13 @@ ...@@ -7,11 +8,13 @@
min-height: 100%; min-height: 100%;
background: #f0f2f5; background: #f0f2f5;
} }
.langs { .langs {
text-align: right; text-align: right;
width: 100%; width: 100%;
height: 40px; height: 40px;
line-height: 44px; line-height: 44px;
.anticon { .anticon {
margin-top: 24px; margin-top: 24px;
margin-right: 24px; margin-right: 24px;
...@@ -20,10 +23,12 @@ ...@@ -20,10 +23,12 @@
cursor: pointer; cursor: pointer;
} }
} }
.wrap { .wrap {
padding: 32px 0; padding: 32px 0;
flex: 1; flex: 1;
} }
.ant-form-item { .ant-form-item {
margin-bottom: 24px; margin-bottom: 24px;
} }
...@@ -35,32 +40,39 @@ ...@@ -35,32 +40,39 @@
background-position: center 110px; background-position: center 110px;
background-size: 100%; background-size: 100%;
} }
.wrap { .wrap {
padding: 32px 0 24px; padding: 32px 0 24px;
} }
} }
.top { .top {
text-align: center; text-align: center;
} }
.header { .header {
height: 44px; height: 44px;
line-height: 44px; line-height: 44px;
a { a {
text-decoration: none; text-decoration: none;
} }
} }
.logo { .logo {
height: 44px; height: 44px;
margin-right: 16px; margin-right: 16px;
} }
.title { .title {
font-size: 33px; font-size: 2em;
color: @heading-color; color: @heading-color;
font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
font-weight: 600; font-weight: 600;
position: relative; position: relative;
vertical-align: middle; vertical-align: middle;
} }
.desc { .desc {
font-size: @font-size-base; font-size: @font-size-base;
color: @text-color-secondary; color: @text-color-secondary;
......
@import '~@delon/theme/styles/default'; @import '~@delon/theme/styles/default';
:host { :host {
display: block; display: block;
width: 368px; width: 368px;
margin: 0 auto; margin: 0 auto;
::ng-deep { ::ng-deep {
.ant-tabs .ant-tabs-bar { .ant-tabs .ant-tabs-bar {
border-bottom: 0; border-bottom: 0;
margin-bottom: 24px; margin-bottom: 24px;
text-align: center; text-align: center;
} }
.ant-tabs-tab { .ant-tabs-tab {
font-size: 16px; font-size: 16px;
line-height: 24px; line-height: 24px;
} }
.ant-input-affix-wrapper .ant-input:not(:first-child) { .ant-input-affix-wrapper .ant-input:not(:first-child) {
padding-left: 34px; padding-left: 34px;
} }
.icon { .icon {
font-size: 24px; font-size: 24px;
color: rgba(0, 0, 0, 0.2); color: rgba(0, 0, 0, 0.2);
...@@ -23,17 +28,21 @@ ...@@ -23,17 +28,21 @@
vertical-align: middle; vertical-align: middle;
cursor: pointer; cursor: pointer;
transition: color 0.3s; transition: color 0.3s;
&:hover { &:hover {
color: @primary-color; color: @primary-color;
} }
} }
.other { .other {
text-align: left; text-align: left;
margin-top: 24px; margin-top: 24px;
line-height: 22px; line-height: 22px;
nz-tooltip { nz-tooltip {
vertical-align: middle; vertical-align: middle;
} }
.register { .register {
float: right; float: right;
} }
......
...@@ -116,6 +116,7 @@ export class UserLoginComponent implements OnDestroy { ...@@ -116,6 +116,7 @@ export class UserLoginComponent implements OnDestroy {
this.reuseTabService.clear(); this.reuseTabService.clear();
// 设置用户Token信息 // 设置用户Token信息
res.body.token=res.body.JSESSIONID; res.body.token=res.body.JSESSIONID;
document.cookie=`JSESSIONID=${res.body.token}`;
this.tokenService.set(res.body); this.tokenService.set(res.body);
// 重新获取 StartupService 内容,我们始终认为应用信息一般都会受当前用户授权范围而影响 // 重新获取 StartupService 内容,我们始终认为应用信息一般都会受当前用户授权范围而影响
this.startupSrv.load().then(() => { this.startupSrv.load().then(() => {
......
...@@ -29,7 +29,7 @@ export class ProBasicListComponent implements OnInit { ...@@ -29,7 +29,7 @@ export class ProBasicListComponent implements OnInit {
getData() { getData() {
this.loading = true; this.loading = true;
this.http.get('/api/list', { count: 5 }).subscribe((res: any) => { this.http.get('api/list', { count: 5 }).subscribe((res: any) => {
this.data = res; this.data = res;
this.loading = false; this.loading = false;
this.cdr.detectChanges(); this.cdr.detectChanges();
......
{ {
"app": { "app": {
"name": "Alain", "name": "资产管理系统",
"description": "Ng-zorro admin panel front-end framework" "description": "路桥资产管理系统"
}, },
"user": { "user": {
"name": "Admin", "name": "Admin",
"avatar": "./assets/tmp/img/avatar.jpg", "avatar": "./assets/tmp/img/avatar.jpg",
"email": "cipchk@qq.com" "email": "cipchk@qq.com"
}, },
"menu": [{ "menu": [
{
"text": "导航", "text": "导航",
"group": true, "group": true,
"hideInBreadcrumb": true, "hideInBreadcrumb": true,
"icon": "anticon anticon-dashboard", "icon": "anticon anticon-dashboard",
"children": [{ "children": [
"text": "用户中心" {
}, { "text": "用户中心",
"text": "无形资产", "children": [
"children": [{ {
"text": "土地", "text": "土地",
"children": [{ "children": [
"text": "土地信息", {
"link": "/admin/intangible-assets/land" "text": "土地信息",
}] "link": "/admin/intangible-assets/land"
}, { }
"text": "软件", ]
"children": [{ },
"text": "软件管理", {
"link": "/admin/intangible-assets/software" "text": "软件",
}] "children": [
}, { {
"text": "专利", "text": "软件管理",
"children": [{ "link": "/admin/intangible-assets/software"
"text": "专利管理", }
"link": "/admin/intangible-assets/patent" ]
}] },
}] {
}, { "text": "专利",
"text": "(类)固定资产", "children": [
"children": [{ {
"text": "资产信息", "text": "专利管理",
"children": [{ "link": "/admin/intangible-assets/patent"
"text": "固定资产台账", }
"link": "/admin/fixed-assets/assets-info/fixed-assets" ]
}, }
{ ]
"text": "类固定资产台账", },
"link": "/admin/fixed-assets/assets-info/cate-fixed-assets" {
}, { "text": "无形资产",
"text": "资产分类", "children": [
"link": "/admin/fixed-assets/assets-info/assets-cate" {
}, { "text": "土地",
"text": "房屋", "children": [
"link": "/admin/fixed-assets/assets-info/house" {
}, { "text": "土地信息",
"text": "一键折旧", "link": "/admin/intangible-assets/land"
"link": "/admin/fixed-assets/assets-info/depreciate" }
}, { ]
"text": "资产折旧记录", },
"link": "/admin/fixed-assets/assets-info/depreciation-record" {
}, { "text": "软件",
"text": "资产性质", "children": [
"link": "/admin/fixed-assets/assets-info/assets-nature" {
}, "text": "软件管理",
{ "link": "/admin/intangible-assets/software"
"text": "特种设备事故记录", }
"link": "/admin/fixed-assets/assets-info/plant-accident" ]
}, { },
"text": "特种设备运行故障", {
"link": "/admin/fixed-assets/assets-info/plant-operate" "text": "专利",
}, { "children": [
"text": "车辆/特种设备检定", {
"link": "/admin/fixed-assets/assets-info/plant-verify" "text": "专利管理",
}, { "link": "/admin/intangible-assets/patent"
"text": "附件表", }
"link": "/admin/fixed-assets/assets-info/parts" ]
}, }
{ ]
"text": "自定义字段", },
"link": "/admin/fixed-assets/assets-info/custom" {
}, { "text": "(类)固定资产",
"text": "附属设备及配件", "children": [
"link": "/admin/fixed-assets/assets-info/anlage" {
} "text": "资产信息",
] "children": [
}, {
{ "text": "固定资产台账",
"text": "资产使用", "link": "/admin/fixed-assets/assets-info/fixed-assets"
"children": [{ },
"text": "采购申请管理", {
"link": "/admin/fixed-assets/assets-use/apply" "text": "类固定资产台账",
}, "link": "/admin/fixed-assets/assets-info/cate-fixed-assets"
{ },
"text": "采购合同管理", {
"link": "/admin/fixed-assets/assets-use/contract" "text": "资产分类",
}, { "link": "/admin/fixed-assets/assets-info/assets-cate"
"text": "采购支付管理", },
"link": "/admin/fixed-assets/assets-use/pay" {
}, { "text": "房屋",
"text": "验收记录", "link": "/admin/fixed-assets/assets-info/house"
"link": "/admin/fixed-assets/assets-use/check" },
}, { {
"text": "领用记录", "text": "一键折旧",
"link": "/admin/fixed-assets/assets-use/receive" "link": "/admin/fixed-assets/assets-info/depreciate"
}, { },
"text": "设备租出", {
"link": "/admin/fixed-assets/assets-use/lease" "text": "资产折旧记录",
}, { "link": "/admin/fixed-assets/assets-info/depreciation-record"
"text": "资产调遣", },
"link": "/admin/fixed-assets/assets-use/dispatch" {
}, { "text": "资产性质",
"text": "资产调拨", "link": "/admin/fixed-assets/assets-info/assets-nature"
"link": "/admin/fixed-assets/assets-use/allot" },
}, { {
"text": "资产使用记录", "text": "特种设备事故记录",
"link": "/admin/fixed-assets/assets-use/use" "link": "/admin/fixed-assets/assets-info/plant-accident"
}, { },
"text": "资产盘点计划", {
"link": "/admin/fixed-assets/assets-use/take-stock" "text": "特种设备运行故障",
}, { "link": "/admin/fixed-assets/assets-info/plant-operate"
"text": "资产人员变更", },
"link": "/admin/fixed-assets/assets-use/personal-change" {
}, { "text": "车辆/特种设备检定",
"text": "资产退库", "link": "/admin/fixed-assets/assets-info/plant-verify"
"link": "/admin/fixed-assets/assets-use/cancel-stock" },
}, { {
"text": "资产封存", "text": "附件表",
"link": "/admin/fixed-assets/assets-use/remembered" "link": "/admin/fixed-assets/assets-info/parts"
}, { },
"text": "资产产权变更记录", {
"link": "/admin/fixed-assets/assets-use/property-change" "text": "自定义字段",
}, { "link": "/admin/fixed-assets/assets-info/custom"
"text": "报废处置", },
"link": "/admin/fixed-assets/assets-use/scrap" {
} "text": "附属设备及配件",
] "link": "/admin/fixed-assets/assets-info/anlage"
}, { }
"text": "资产租赁", ]
"children": [{ },
"text": "设备租入", {
"link": "/admin/fixed-assets/assets-lease/assess" "text": "资产使用",
}, { "children": [
"text": "租入设备考核记录", {
"link": "/admin/fixed-assets/assets-lease/rent" "text": "采购申请管理",
}, { "link": "/admin/fixed-assets/assets-use/apply"
"text": "房屋租赁", },
"link": "/admin/fixed-assets/assets-lease/house" {
}, { "text": "采购合同管理",
"text": "分包商及租入特种设备管理", "link": "/admin/fixed-assets/assets-use/contract"
"link": "/admin/fixed-assets/assets-lease/sub-contractor" },
}] {
}, { "text": "采购支付管理",
"text": "设备维保", "link": "/admin/fixed-assets/assets-use/pay"
"children": [{ },
"text": "维修保养计划", {
"link": "/admin/fixed-assets/device-maintain/service-plan" "text": "验收记录",
}, "link": "/admin/fixed-assets/assets-use/check"
{ },
"text": "维修保养记录", {
"link": "/admin/fixed-assets/device-maintain/service-record" "text": "领用记录",
} "link": "/admin/fixed-assets/assets-use/receive"
] },
}, { {
"text": "单机车核算", "text": "设备租出",
"children": [{ "link": "/admin/fixed-assets/assets-use/lease"
},
{
"text": "资产调遣",
"link": "/admin/fixed-assets/assets-use/dispatch"
},
{
"text": "资产调拨",
"link": "/admin/fixed-assets/assets-use/allot"
},
{
"text": "资产使用记录",
"link": "/admin/fixed-assets/assets-use/use"
},
{
"text": "资产盘点计划",
"link": "/admin/fixed-assets/assets-use/take-stock"
},
{
"text": "资产人员变更",
"link": "/admin/fixed-assets/assets-use/personal-change"
},
{
"text": "资产退库",
"link": "/admin/fixed-assets/assets-use/cancel-stock"
},
{
"text": "资产封存",
"link": "/admin/fixed-assets/assets-use/remembered"
},
{
"text": "资产产权变更记录",
"link": "/admin/fixed-assets/assets-use/property-change"
},
{
"text": "报废处置",
"link": "/admin/fixed-assets/assets-use/scrap"
}
]
},
{
"text": "资产租赁",
"children": [
{
"text": "设备租入",
"link": "/admin/fixed-assets/assets-lease/assess"
},
{
"text": "租入设备考核记录",
"link": "/admin/fixed-assets/assets-lease/rent"
},
{
"text": "房屋租赁",
"link": "/admin/fixed-assets/assets-lease/house"
},
{
"text": "分包商及租入特种设备管理",
"link": "/admin/fixed-assets/assets-lease/sub-contractor"
}
]
},
{
"text": "设备维保",
"children": [
{
"text": "维修保养计划",
"link": "/admin/fixed-assets/device-maintain/service-plan"
},
{
"text": "维修保养记录",
"link": "/admin/fixed-assets/device-maintain/service-record"
}
]
},
{
"text": "单机车核算", "text": "单机车核算",
"link": "/admin/fixed-assets/single-machine/single" "children": [
}, { {
"text": "燃料消耗记录", "text": "单机车核算",
"link": "/admin/fixed-assets/single-machine/consume" "link": "/admin/fixed-assets/single-machine/single"
}, { },
"text": "机械设备燃料核算标准", {
"link": "/admin/fixed-assets/single-machine/business" "text": "燃料消耗记录",
}] "link": "/admin/fixed-assets/single-machine/consume"
}, { },
"text": "资产保险", {
"children": [{ "text": "机械设备燃料核算标准",
"text": "保险登记", "link": "/admin/fixed-assets/single-machine/business"
"link": "/admin/fixed-assets/assets-insurance/insurance" }
}, ]
{ },
"text": "出险登记", {
"link": "/admin/fixed-assets/assets-insurance/danger" "text": "资产保险",
} "children": [
] {
}, { "text": "保险登记",
"text": "证件管理", "link": "/admin/fixed-assets/assets-insurance/insurance"
"children": [{ },
"text": "员工证件表", {
"link": "/admin/fixed-assets/identity-manager/staff" "text": "出险登记",
}, { "link": "/admin/fixed-assets/assets-insurance/danger"
"text": "设备证件", }
"link": "/admin/fixed-assets/identity-manager/device" ]
}, { },
"text": "用户证件附件", {
"link": "/admin/fixed-assets/identity-manager/user" "text": "证件管理",
}, { "children": [
"text": "证件类型", {
"link": "/admin/fixed-assets/identity-manager/type" "text": "员工证件表",
}] "link": "/admin/fixed-assets/identity-manager/staff"
}, { },
"text": "搅拌站配比" {
}, "text": "设备证件",
{ "link": "/admin/fixed-assets/identity-manager/device"
"text": "制造厂商", },
"children": [{ {
"text": "用户证件附件",
"link": "/admin/fixed-assets/identity-manager/user"
},
{
"text": "证件类型",
"link": "/admin/fixed-assets/identity-manager/type"
}
]
},
{
"text": "搅拌站配比"
},
{
"text": "制造厂商", "text": "制造厂商",
"link": "/admin/fixed-assets/canon/vendor" "children": [
}] {
} "text": "制造厂商",
] "link": "/admin/fixed-assets/canon/vendor"
}, { }
"text": "周转材料低值易耗", ]
"children": [{ }
"text": "周转材料", ]
"children": [{ },
"text": "周转材料台账", {
"link": "/admin/revolving-material/revolve/stand" "text": "周转材料低值易耗",
}, { "children": [
"text": "周转材料验收记录", {
"link": "/admin/revolving-material/revolve/check-record" "text": "周转材料",
}, { "children": [
"text": "周转材料领用记录", {
"link": "/admin/revolving-material/revolve/receive-record" "text": "周转材料台账",
}, { "link": "/admin/revolving-material/revolve/stand"
"text": "周转材料租出", },
"link": "/admin/revolving-material/revolve/lease" {
}, { "text": "周转材料验收记录",
"text": "周转材料分类", "link": "/admin/revolving-material/revolve/check-record"
"link": "/admin/revolving-material/revolve/category" },
}, { {
"text": "周转材料租入", "text": "周转材料领用记录",
"link": "/admin/revolving-material/revolve/rent" "link": "/admin/revolving-material/revolve/receive-record"
}, { },
"text": "周转材料清理", {
"link": "/admin/revolving-material/revolve/clear" "text": "周转材料租出",
}, { "link": "/admin/revolving-material/revolve/lease"
"text": "周转材料核算与摊销", },
"link": "/admin/revolving-material/revolve/market" {
}] "text": "周转材料分类",
}, { "link": "/admin/revolving-material/revolve/category"
"text": "低值易耗", },
"children": [{ {
"text": "低值易耗台账", "text": "周转材料租入",
"link": "/admin/revolving-material/consume/stand" "link": "/admin/revolving-material/revolve/rent"
}, { },
"text": "低值易耗验收记录", {
"link": "/admin/revolving-material/consume/check-record" "text": "周转材料清理",
}, { "link": "/admin/revolving-material/revolve/clear"
"text": "低值易耗领用", },
"link": "/admin/revolving-material/consume/receive" {
}] "text": "周转材料核算与摊销",
}, { "link": "/admin/revolving-material/revolve/market"
"text": "仓库管理", }
"children": [{ ]
"text": "物资消耗记录", },
"link": "/admin/revolving-material/warehouse/goods-consume" {
}] "text": "低值易耗",
}] "children": [
}, { {
"text": "产权管理", "text": "低值易耗台账",
"link": "/dashboard/v1", "link": "/admin/revolving-material/consume/stand"
"children": [ },
{
] "text": "低值易耗验收记录",
}, { "link": "/admin/revolving-material/consume/check-record"
"text": "闲置共享", },
"link": "/admin/idle-shared/share-list" {
}, { "text": "低值易耗领用",
"text": "数据分析与展示", "link": "/admin/revolving-material/consume/receive"
"link": "/dashboard/v1", }
"children": [ ]
},
] {
}, { "text": "仓库管理",
"text": "文件资料", "children": [
"link": "/dashboard/v1", {
"children": [] "text": "物资消耗记录",
}, { "link": "/admin/revolving-material/warehouse/goods-consume"
"text": "系统设置", }
"link": "/dashboard/v1", ]
"children": [ }
]
] },
}] {
"text": "产权管理",
"link": "/dashboard/v1",
"children": []
},
{
"text": "闲置共享",
"link": "/admin/idle-shared/share-list"
},
{
"text": "数据分析与展示",
"link": "/dashboard/v1",
"children": []
},
{
"text": "文件资料",
"link": "/dashboard/v1",
"children": []
},
{
"text": "系统设置",
"link": "/dashboard/v1",
"children": []
}
]
}, },
{ {
...@@ -291,11 +403,13 @@ ...@@ -291,11 +403,13 @@
"i18n": "menu.main", "i18n": "menu.main",
"group": true, "group": true,
"hideInBreadcrumb": true, "hideInBreadcrumb": true,
"children": [{ "children": [
{
"text": " 用户中心", "text": " 用户中心",
"i18n": "menu.dashboard", "i18n": "menu.dashboard",
"icon": "anticon anticon-dashboard", "icon": "anticon anticon-dashboard",
"children": [{ "children": [
{
"text": "仪表盘V1", "text": "仪表盘V1",
"link": "/dashboard/v1", "link": "/dashboard/v1",
"i18n": "menu.dashboard.v1" "i18n": "menu.dashboard.v1"
...@@ -338,11 +452,13 @@ ...@@ -338,11 +452,13 @@
"i18n": "menu.alain", "i18n": "menu.alain",
"group": true, "group": true,
"hideInBreadcrumb": true, "hideInBreadcrumb": true,
"children": [{ "children": [
{
"text": "样式", "text": "样式",
"i18n": "menu.style", "i18n": "menu.style",
"icon": "anticon anticon-info", "icon": "anticon anticon-info",
"children": [{ "children": [
{
"text": "Typography", "text": "Typography",
"link": "/style/typography", "link": "/style/typography",
"i18n": "menu.style.typography", "i18n": "menu.style.typography",
...@@ -364,7 +480,8 @@ ...@@ -364,7 +480,8 @@
"text": "Delon", "text": "Delon",
"i18n": "menu.delon", "i18n": "menu.delon",
"icon": "anticon anticon-bulb", "icon": "anticon anticon-bulb",
"children": [{ "children": [
{
"text": "Dynamic Form", "text": "Dynamic Form",
"link": "/delon/form", "link": "/delon/form",
"i18n": "menu.delon.form" "i18n": "menu.delon.form"
...@@ -430,12 +547,14 @@ ...@@ -430,12 +547,14 @@
"i18n": "menu.pro", "i18n": "menu.pro",
"group": true, "group": true,
"hideInBreadcrumb": true, "hideInBreadcrumb": true,
"children": [{ "children": [
{
"text": "Form Page", "text": "Form Page",
"i18n": "menu.form", "i18n": "menu.form",
"link": "/pro/form", "link": "/pro/form",
"icon": "anticon anticon-edit", "icon": "anticon anticon-edit",
"children": [{ "children": [
{
"text": "Basic Form", "text": "Basic Form",
"link": "/pro/form/basic-form", "link": "/pro/form/basic-form",
"i18n": "menu.form.basicform", "i18n": "menu.form.basicform",
...@@ -457,7 +576,8 @@ ...@@ -457,7 +576,8 @@
"text": "List", "text": "List",
"i18n": "menu.list", "i18n": "menu.list",
"icon": "anticon anticon-appstore", "icon": "anticon anticon-appstore",
"children": [{ "children": [
{
"text": "Table List", "text": "Table List",
"link": "/pro/list/table-list", "link": "/pro/list/table-list",
"i18n": "menu.list.searchtable", "i18n": "menu.list.searchtable",
...@@ -476,7 +596,8 @@ ...@@ -476,7 +596,8 @@
{ {
"text": "Search List", "text": "Search List",
"i18n": "menu.list.searchlist", "i18n": "menu.list.searchlist",
"children": [{ "children": [
{
"link": "/pro/list/articles", "link": "/pro/list/articles",
"i18n": "menu.list.searchlist.articles" "i18n": "menu.list.searchlist.articles"
}, },
...@@ -497,7 +618,8 @@ ...@@ -497,7 +618,8 @@
"text": "Profile", "text": "Profile",
"i18n": "menu.profile", "i18n": "menu.profile",
"icon": "anticon anticon-profile", "icon": "anticon anticon-profile",
"children": [{ "children": [
{
"text": "Basic", "text": "Basic",
"link": "/pro/profile/basic", "link": "/pro/profile/basic",
"i18n": "menu.profile.basic" "i18n": "menu.profile.basic"
...@@ -514,7 +636,8 @@ ...@@ -514,7 +636,8 @@
"text": "Result", "text": "Result",
"i18n": "menu.result", "i18n": "menu.result",
"icon": "anticon anticon-check-circle", "icon": "anticon anticon-check-circle",
"children": [{ "children": [
{
"text": "Success", "text": "Success",
"link": "/pro/result/success", "link": "/pro/result/success",
"i18n": "menu.result.success" "i18n": "menu.result.success"
...@@ -531,7 +654,8 @@ ...@@ -531,7 +654,8 @@
"i18n": "menu.exception", "i18n": "menu.exception",
"link": "/", "link": "/",
"icon": "anticon anticon-exception", "icon": "anticon anticon-exception",
"children": [{ "children": [
{
"text": "403", "text": "403",
"link": "/exception/403", "link": "/exception/403",
"i18n": "menu.exception.not-permission", "i18n": "menu.exception.not-permission",
...@@ -555,7 +679,8 @@ ...@@ -555,7 +679,8 @@
"text": "Account", "text": "Account",
"i18n": "menu.account", "i18n": "menu.account",
"icon": "anticon anticon-user", "icon": "anticon anticon-user",
"children": [{ "children": [
{
"text": "center", "text": "center",
"link": "/pro/account/center", "link": "/pro/account/center",
"i18n": "menu.account.center" "i18n": "menu.account.center"
...@@ -574,23 +699,27 @@ ...@@ -574,23 +699,27 @@
"i18n": "menu.more", "i18n": "menu.more",
"group": true, "group": true,
"hideInBreadcrumb": true, "hideInBreadcrumb": true,
"children": [{ "children": [
{
"text": "Report", "text": "Report",
"i18n": "menu.report", "i18n": "menu.report",
"icon": "anticon anticon-cloud", "icon": "anticon anticon-cloud",
"children": [{ "children": [
"text": "Relation", {
"link": "/data-v/relation", "text": "Relation",
"i18n": "menu.report.relation", "link": "/data-v/relation",
"reuse": false "i18n": "menu.report.relation",
}] "reuse": false
}
]
}, },
{ {
"text": "Extras", "text": "Extras",
"i18n": "menu.extras", "i18n": "menu.extras",
"link": "/extras", "link": "/extras",
"icon": "anticon anticon-link", "icon": "anticon anticon-link",
"children": [{ "children": [
{
"text": "Help Center", "text": "Help Center",
"link": "/extras/helpcenter", "link": "/extras/helpcenter",
"i18n": "menu.extras.helpcenter" "i18n": "menu.extras.helpcenter"
......
{ {
"/asset/*": { "/asset/*": {
"target": "http://192.168.19.200:8080/", "target": "http://192.168.19.200:8081/",
"secure": false, "secure": false,
"logLevel": "debug", "logLevel": "debug",
"changeOrigin": false "changeOrigin": false
......
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