address.html 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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.userName" @on-enter="query" placeholder="收货人姓名"/>
  14. </i-col>
  15. <i-col span="4">
  16. <i-input v-model="q.telNumber" @on-enter="query" placeholder="联系电话"/>
  17. </i-col>
  18. <i-button @click="query">查询</i-button>
  19. </div>
  20. <div class="buttons-group">
  21. <!--#if($shiro.hasPermission("address:delete"))-->
  22. <!--<i-button type="error" @click="del"><i class="fa fa-trash-o"></i>&nbsp;删除</i-button>-->
  23. <!--#end-->
  24. </div>
  25. </Row>
  26. <table id="jqGrid"></table>
  27. <div id="jqGridPager"></div>
  28. </div>
  29. </div>
  30. <script src="${rc.contextPath}/js/shop/address.js?_${date.systemTime}"></script>
  31. </body>
  32. </html>