goodshistory.html 898 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. #parse("sys/header.html")
  6. </head>
  7. <body>
  8. <div id="rrapp" v-cloak>
  9. <div v-show="showList">
  10. <Row :gutter="16">
  11. <div class="search-group">
  12. <i-col span="4">
  13. <i-input v-model="q.name" @on-enter="query" placeholder="名称"/>
  14. </i-col>
  15. <i-button @click="query">查询</i-button>
  16. </div>
  17. <div class="buttons-group">
  18. #if($shiro.hasPermission("goods:back"))
  19. <i-button type="warning" @click="back"><i class="fa fa-pencil-square-o"></i>&nbsp;恢复</i-button>
  20. #end
  21. </div>
  22. </Row>
  23. <table id="jqGrid"></table>
  24. <div id="jqGridPager"></div>
  25. </div>
  26. </div>
  27. <script src="${rc.contextPath}/js/shop/goodshistory.js?_${date.systemTime}"></script>
  28. </body>
  29. </html>