diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-10 19:22:11 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-10 19:22:34 +0800 |
commit | 914cd5ee96a46fd175e89574780c8758cae3f411 (patch) | |
tree | 5ef3550196d6664baf1190f51c9c7f69714d5a9d | |
parent | f3103ea58186a7213fd92f6b2403dd71aaac38dd (diff) |
Dashboard interface front-end development
Change-Id: I3ad996be3d2512b4538fc8ebf46a56b09b5f9160
Issue-ID: USECASEUI-214
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
-rw-r--r-- | usecaseui-portal/src/app/app.component.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usecaseui-portal/src/app/app.component.html b/usecaseui-portal/src/app/app.component.html index d99843c2..1b201c08 100644 --- a/usecaseui-portal/src/app/app.component.html +++ b/usecaseui-portal/src/app/app.component.html @@ -14,16 +14,16 @@ limitations under the License. --> <nz-layout> - <nz-sider nzWidth='330' style="overflow: auto; height: 100vh; position: fixed; left: 0;background: url('../assets/images/UUIMenuBar.png')"> + <nz-sider nzWidth='330' style="overflow: auto; height: 100vh; position: fixed; left: 0;background: url('assets/images/UUIMenuBar.png')"> <div style="width: 330px;height:240px;text-align: center"> - <img src="../assets/images/uui-logo130.png" alt="" style="margin-top: 40px"> + <img src="assets/images/uui-logo130.png" alt="" style="margin-top: 40px"> </div> <ul nz-menu [nzTheme]="'dark'" [nzMode]="'inline'" style="width: 330px"> <li nz-menu-item [ngClass]="{'activeMenuBar':activeMenuBar[0] == true}" (click)="thisActive(0)"> <a routerLink="home"> <span title> <i> - <img src="{{activeMenuBar[0] == true ? '../assets/images/home-icon-active.png':'../assets/images/home-icon.png'}}" alt="home"> + <img src="{{activeMenuBar[0] == true ? 'assets/images/home-icon-active.png':'assets/images/home-icon.png'}}" alt="home"> </i> <span> {{"i18nTextDefine_Home" | translate}} </span> </span> @@ -34,7 +34,7 @@ <a routerLink="management"> <span title> <i> - <img src="{{activeMenuBar[1] == true ? '../assets/images/customer-icon-active.png':'../assets/images/customer-icon.png'}}" alt="home"> + <img src="{{activeMenuBar[1] == true ? 'assets/images/customer-icon-active.png':'assets/images/customer-icon.png'}}" alt="home"> </i> <span> {{"i18nTextDefine_Customer" | translate}} </span> </span> @@ -45,7 +45,7 @@ <a href="#" onclick="window.open('http://172.30.1.80:5601/app/kibana#/dashboards')"> <span title> <i> - <img src="{{activeMenuBar[2] == true ? '../assets/images/monitor-icon-active.png':'../assets/images/monitor-icon.png'}}" alt="home"> + <img src="{{activeMenuBar[2] == true ? 'assets/images/monitor-icon-active.png':'assets/images/monitor-icon.png'}}" alt="home"> </i> <span> {{"i18nTextDefine_Monitor" | translate}} </span> </span> @@ -54,7 +54,7 @@ <hr> <li nz-submenu [ngClass]="{'activeMenuBar':activeMenuBar[3] == true}" (click)="thisActive(3)"> <span title> <i> - <img src="{{activeMenuBar[3] == true ? '../assets/images/Services-icon-active.png':'../assets/images/Services-icon.png'}}" alt="home"> + <img src="{{activeMenuBar[3] == true ? 'assets/images/Services-icon-active.png':'assets/images/Services-icon.png'}}" alt="home"> </i> {{"i18nTextDefine_Services" | translate}} </span> <ul> <li nz-menu-item [ngClass]="{'activeMenuList':activeMenuList[0] == true}" (click)="thisListActive(0)"><a routerLink='services/services-list'> {{"i18nTextDefine_ServicesList" | translate}} </a></li> @@ -83,7 +83,7 @@ <a routerLink="network"> <span title> <i> - <img src="{{activeMenuBar[4] == true ? '../assets/images/network-icon-active.png':'../assets/images/network-icon.png'}}" alt="home"> + <img src="{{activeMenuBar[4] == true ? 'assets/images/network-icon-active.png':'assets/images/network-icon.png'}}" alt="home"> </i> <span> {{"i18nTextDefine_NetworkTopology" | translate}} </span> </span> |