backList_Sear_win.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport"
  6. content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0" />
  7. <title>Hello APP</title>
  8. <link rel="stylesheet" type="text/css" href="../css/api.css" />
  9. <link rel="stylesheet" type="text/css" href="../css/aui-win.css" />
  10. </head>
  11. <style>
  12. </style>
  13. <body>
  14. <header class="aui-bar aui-bar-nav aui-bar-info" id="aui-header">
  15. <a class="aui-btn aui-btn-info aui-pull-left" tapmode onclick="closeWin()"> <span
  16. class="aui-iconfont aui-icon-left"></span> </a>
  17. <div class="aui-title" id="aui-title">
  18. 审核统计
  19. </div>
  20. </header>
  21. </body>
  22. <script type="text/javascript" src="../script/api.js"></script>
  23. <script type="text/javascript">
  24. function closeWin() {
  25. api.closeWin({
  26. });
  27. }
  28. apiready = function () {
  29. api.parseTapmode();
  30. var header = $api.byId('aui-header');
  31. $api.fixStatusBar(header);
  32. var headerPos = $api.offset(header);
  33. var body_h = $api.offset($api.dom('body')).h;
  34. api.openFrame({
  35. name: 'backList_Search',
  36. url: 'backList_Search.html',
  37. bounces: false,
  38. vScrollBarEnabled: false,
  39. hScrollBarEnabled: false,
  40. rect: {
  41. x: 0,
  42. y: headerPos.h,
  43. w: 'auto',
  44. h: 'auto'
  45. },
  46. bgColor: '#f5f5f5',
  47. })
  48. };
  49. </script>
  50. </html>