123456789101112131415161718192021222324252627282930313233 |
- <!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-col span="4">
- <i-input v-model="q.userName" @on-enter="query" placeholder="收货人姓名"/>
- </i-col>
- <i-col span="4">
- <i-input v-model="q.telNumber" @on-enter="query" placeholder="联系电话"/>
- </i-col>
- <i-button @click="query">查询</i-button>
- </div>
- <div class="buttons-group">
- <!--#if($shiro.hasPermission("address:delete"))-->
- <!--<i-button type="error" @click="del"><i class="fa fa-trash-o"></i> 删除</i-button>-->
- <!--#end-->
- </div>
- </Row>
- <table id="jqGrid"></table>
- <div id="jqGridPager"></div>
- </div>
- </div>
- <script src="${rc.contextPath}/js/shop/address.js?_${date.systemTime}"></script>
- </body>
- </html>
|