Commit c96b3358 by zhangchen

将原来爱好显示为是否有人脸

parent d3bfd3d6
...@@ -17,6 +17,11 @@ $(function() { ...@@ -17,6 +17,11 @@ $(function() {
window.open('/voucherRule/update?id='+ruleId+'&page=0'); window.open('/voucherRule/update?id='+ruleId+'&page=0');
}) })
//批量选中
$('.delete-all').click(function(){
$('.delete-all-check').checked
window.alert(111);
})
$("#blockFlaginfo").on("click", function() { $("#blockFlaginfo").on("click", function() {
$("#blockFlaginfo").hide(); $("#blockFlaginfo").hide();
...@@ -489,8 +494,8 @@ $(function() { ...@@ -489,8 +494,8 @@ $(function() {
<tr> <tr>
<td>所在地</td> <td>所在地</td>
<td >${bean.address!}</td> <td >${bean.address!}</td>
<td>爱好</td> <td>是否有照片</td>
<td >${bean.hobby!}</td> <td >${bean.faceImage!}</td>
</tr> </tr>
</table> </table>
...@@ -604,6 +609,7 @@ $(function() { ...@@ -604,6 +609,7 @@ $(function() {
<th>备注</th> <th>备注</th>
<th>描述</th> <th>描述</th>
<th style="width:95px;">操作</th> <th style="width:95px;">操作</th>
<th><input class='delete-all' type='checkbox' name = 'checkAll'/>批量</th>
</tr> </tr>
<#list vourchers as vourcher> <#list vourchers as vourcher>
<tr> <tr>
...@@ -639,6 +645,9 @@ $(function() { ...@@ -639,6 +645,9 @@ $(function() {
<button type="button" class="btn-danger delete-voucher">删除</button> <button type="button" class="btn-danger delete-voucher">删除</button>
</form> </form>
</td> </td>
<td>
<input id = 'voucherId' class='delete-all-check' type='checkbox' name='checkbox'/>
</td>
</tr> </tr>
</#list> </#list>
</table></div> </table></div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment