123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <!doctype html>
- <html class="no-js">
- <head>
- <title>办结事宜</title>
- <meta charset="utf-8">
- <script src="../assets/js/importJs.js"></script>
- <script type="text/javascript">
- importCss(["/weixin/assets/css/page.css"]);
- //导入JS
- importJs(["/weixin/assets/js/pageScroll.js"]);
- </script>
- </head>
- <body>
- <div class="page">
- <header data-am-widget="header" class="am-header am-header-default">
- <div class="am-header-left am-header-nav">
- <span class="am-icon-chevron-left" id="btn-back" onclick="history.back();"></span>
- </div>
- <h1 class="am-header-title" id="colTitle">
- 办结事宜
- </h1>
- <div class="am-header-right am-header-nav">
- <a href="../index.html" class="" title="返回主页" >
- <i class="am-header-icon fa fa-home" ></i>
- </a>
- </div>
- </header>
- <div id="wrapper" data-am-widget="list_news"
- class="am-list-news am-list-news-default">
- <div class="am-list-news-bd">
-
- <div class="pull-action loading" id="pull-down">
- <span class="am-icon-arrow-down pull-label"
- id="pull-down-label"> 下拉刷新</span>
- <span class="am-icon-spinner am-icon-spin"></span>
- </div>
- <ul class="am-list" id="events-list">
- <li class="am-list-item-desced">
- <div class="am-list-item-text">正在加载内容... </div>
- </li>
- </ul>
- <div class="pull-action" id="pull-up">
- <span class="am-icon-arrow-up pull-label" id="pull-up-label"> 上拉加载更多</span>
- <span class="am-icon-spinner am-icon-spin"></span>
- </div>
- </div>
- </div>
- </div>
- <script type="text/x-handlebars-template" id="tpi-list-item">
- {{#each this}}
- <li class="am-list-item-desced" data-id="{{runId}}">
- <a href="getProcessRun.html?runId={{runId}}" class="am-list-item-hd" >{{{subject}}}</a><span class="am-list-date">发起时间:{{formatDate createtime 'yyyy-MM-dd hh:mm'}}</span>
- </li>
- {{/each}}
- </script>
- <script>
- $(function() {
-
- var callBack=function(data){
- }
-
- var url=__ctx +"/weixin/bpm/getCompletedMattersList.ht";
- var app = new EventsList(null, {
- url: url,
- params: {
- page: 1,
- startFromMobile: 1,
- pageSize: 10,
- callback:callBack
- }
- });
- app.init();
-
- document.addEventListener('touchmove', function(e) {
- e.preventDefault();
- }, false);
- });
- </script>
- </body>
- </html>
|