index.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!-- 头部 -->
  2. <include file="Public/top" />
  3. <div class="wrapper row-offcanvas row-offcanvas-left">
  4. <!-- Left side column. contains the logo and sidebar -->
  5. <aside class="left-side sidebar-offcanvas">
  6. <!-- 左边 -->
  7. <include file="Public/left" />
  8. </aside>
  9. <!-- Right side column. Contains the navbar and content of the page -->
  10. <aside class="right-side">
  11. <!-- Content Header (Page header) -->
  12. <!-- bar -->
  13. <include file="Public/bar" />
  14. <!-- Main content -->
  15. <!-- 右侧 -->
  16. <div class="row">
  17. <div class="col-xs-12">
  18. <div class="box">
  19. <div class="box-header">
  20. <h3 class="box-title">
  21. <a href="/admin/soft/edit" class="btn btn-primary">新增APP版本</a>
  22. </h3>
  23. </div>
  24. <!-- /.box-header -->
  25. <div class="box-body table-responsive">
  26. <table class="table table-bordered table-striped">
  27. <thead>
  28. <tr>
  29. <th>序号</th>
  30. <th>类型</th>
  31. <th>版本号</th>
  32. <th>是否强制升级</th>
  33. <th>更新内容</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. <volist name="list" id="val">
  38. <tr>
  39. <td><{$i}></td>
  40. <td><if condition="$val['os'] eq 1">安卓<else />IOS</if></td>
  41. <td><{$val['new_ver']}></td>
  42. <td><if condition="$val['force_up'] eq 1">是<else />否</if></td>
  43. <td><{$val['up_info']}></td>
  44. </tr>
  45. </volist>
  46. <empty name="list">
  47. <tr>
  48. <td colspan="5" align="center">没有记录</td>
  49. </tr>
  50. </empty>
  51. </tbody>
  52. </table>
  53. </div>
  54. <!-- /.box-body -->
  55. <{$page}>
  56. </div>
  57. <!-- /.box -->
  58. </div>
  59. </div>
  60. <!-- 右侧 -->
  61. <!-- /.content -->
  62. </aside>
  63. <!-- /.right-side -->
  64. </div>
  65. <!-- ./wrapper -->
  66. </body>
  67. </html>