-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
513 additions
and
302 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.logininfo { | ||
height: 100%; | ||
background: #10182f; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="logininfo"> | ||
<p>hello,Levan</p> | ||
</div> |
6 changes: 4 additions & 2 deletions
6
src/components/Main/index.js → src/components/LoginInfo/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import avalon, { component } from 'avalon2'; | ||
import '../../assets/iconfont/iconfont.css'; | ||
import './index.css'; | ||
|
||
component('ms-main', { | ||
component('ms-logininfo', { | ||
template: require('./index.html'), | ||
defaults: { | ||
account: {} | ||
} | ||
}) | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<a class="link" ms-attr="{href:@to}" ms-text="@title" ></a> | ||
<a class="link" ms-attr="{href:parseHref()}" ms-text="@title"></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<div class="tab"> | ||
<ul class="tab__header"> | ||
<li class="left">111</li> | ||
<li class="right">222</li> | ||
<li class="left"><a class="link"><i class="glyphicon glyphicon-backward"></i></a></li> | ||
<li class="right clearfix"> | ||
<a class="link"><i class="glyphicon glyphicon-forward"></i></a> | ||
<a class="link"><i class="glyphicon glyphicon-remove-circle"></i></a> | ||
<a class="link"><i class="glyphicon glyphicon-log-out"></i><span>退出</span></a> | ||
</li> | ||
<li class="mid"> | ||
<ul class="clearfix"> | ||
<ms-tabtitle ms-for="(i,p) in pages" ms-widget="{el:p,click:onTabTitleClick}" /> | ||
<ms-tabtitle ms-for="item in items" ms-widget="{el:item,click:onTabTitleClick}" /> | ||
</ul> | ||
</li> | ||
</ul> | ||
<ul class="tab__content"> | ||
<ms-tabpage ms-for="p in pages" ms-widget="{tmpl:p.tmpl,checked:p.checked}"> | ||
<ms-tabpage ms-for="item in items" ms-widget="{tmpl:item.tmpl,checked:item.checked}"> | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
import './Login'; | ||
import './Menu'; | ||
import './SideBar'; | ||
import './Main'; | ||
import './App'; | ||
import './Topbar'; | ||
import './StatusBar'; | ||
import './Tab'; | ||
import './TabTitle'; | ||
import './TabPage'; | ||
import './NavLink'; | ||
import './LoginInfo'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.