angularjs mobile v0.1
This commit is contained in:
22
public/mobile2/tpl/notes.html
Normal file
22
public/mobile2/tpl/notes.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!-- 员工列表 -->
|
||||
<div class="topcoat-navigation-bar">
|
||||
<div class="bar-left">
|
||||
<i class="fa fa-angle-left" ng-click="back()"></i>
|
||||
</div>
|
||||
<div class="bar-center">
|
||||
<h1 class="topcoat-navigation-bar__title">[[notebook.Title]]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="search-bar">
|
||||
<input ng-model="query" type="search" placeholder="search" class="topcoat-search-input search-key">
|
||||
</div>
|
||||
<div class="topcoat-list__container" style="top:138px;">
|
||||
<ul class="topcoat-list list">
|
||||
<li ng-repeat="note in notes | filter:query | orderBy:'UpdatedTime'" class="topcoat-list__item">
|
||||
<a ng-click="go('/note/' + note.NoteId)">
|
||||
<p>[[note.Title]]</p>
|
||||
<span class="chevron"></span><span class="count"></span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
Reference in New Issue
Block a user