123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- #parse("sys/header.html")
- </head>
- <body>
- <div id="rrapp" v-cloak>
- <div v-show="showList">
- <Row :gutter="16">
- <div class="search-group">
- <i-button @click="query">查询</i-button>
- </div>
- <div class="buttons-group">
- #if($shiro.hasPermission("goodsgroup:update"))
- <i-button type="warning" @click="cancelGroup"><i class="fa fa-pencil-square-o"></i> 取消团购</i-button>
- #end
- </div>
- </Row>
- <table id="jqGrid"></table>
- <div id="jqGridPager"></div>
- </div>
- </div>
- <script src="${rc.contextPath}/js/shop/goodsgroupopen.js?_${date.systemTime}"></script>
- </body>
- </html>
|