83 lines
3.3 KiB
HTML
83 lines
3.3 KiB
HTML
{% extends "common/layout_main.html" %}
|
|
{% block content %}
|
|
{% include "common/tab_member.html" %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<form class="form-inline wrap_search">
|
|
<div class="row m-t p-w-m">
|
|
<div class="form-group">
|
|
<select name="status" class="form-control inline">
|
|
<option value="-1">请选择状态</option>
|
|
{% for tmp_key in status_mapping %}
|
|
<option value="{{ tmp_key }}" {% if tmp_key == search_con['status'] %} selected {% endif %}>{{ status_mapping[ tmp_key ] }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<input type="text" name="mix_kw" placeholder="请输入关键字" class="form-control" value="{{ search_con['mix_kw'] }}">
|
|
<input type="hidden" name="p" value="{{ search_con['p'] }}">
|
|
<span class="input-group-btn">
|
|
<button type="button" class="btn btn-primary search">
|
|
<i class="fa fa-search"></i>搜索
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
</form>
|
|
<table class="table table-bordered m-t">
|
|
<thead>
|
|
<tr>
|
|
<th>头像</th>
|
|
<th>姓名</th>
|
|
<th>性别</th>
|
|
<th>状态</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if list %}
|
|
{% for item in list %}
|
|
<tr>
|
|
<td><img alt="image" class="img-circle" src="{{ buildImageUrl(item.avatar) if item.avatar else buildStaticUrl('/images/common/avatar.png') }}" style="width: 40px;height: 40px;"></td>
|
|
<td>{{ item.nickname }}</td>
|
|
<td>{{ item.sex_desc }}</td>
|
|
<td>{{ item.status_desc }}</td>
|
|
<td>
|
|
<a href="{{ buildUrl('/member/info') }}?id={{ item.id }}">
|
|
<i class="fa fa-eye fa-lg"></i>
|
|
</a>
|
|
|
|
{% if item.status == 1 %}
|
|
<a class="m-l" href="{{ buildUrl('/member/set') }}?id={{ item.id }}">
|
|
<i class="fa fa-edit fa-lg"></i>
|
|
</a>
|
|
|
|
<a class="m-l remove" href="javascript:void(0);" data="{{ item.id }}">
|
|
<i class="fa fa-trash fa-lg"></i>
|
|
</a>
|
|
{% else %}
|
|
<a class="m-l recover" href="javascript:void(0);" data="{{ item.id }}">
|
|
<i class="fa fa-rotate-left fa-lg"></i>
|
|
</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% else %}
|
|
<tr><td colspan="5">暂无数据</td></tr>
|
|
{% endif %}
|
|
</tbody>
|
|
</table>
|
|
<!--分页代码已被封装到统一模板文件中-->
|
|
{% include 'common/pagenation.html' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{{ buildStaticUrl('/js/member/index.js') }}"></script>
|
|
{% endblock %}
|
|
|