|
|
@@ -1,74 +1,97 @@
|
|
|
{extend name="layout:home" /}
|
|
|
{block name="container"}
|
|
|
+<style>
|
|
|
+ .accountinfo_title>div{
|
|
|
+ margin-left:80px;
|
|
|
+ margin-top:20px;
|
|
|
+ font-size: 13px;
|
|
|
+ color: dodgerblue;
|
|
|
+ }
|
|
|
+ .accountinfo_title table{
|
|
|
+ margin-left: 150px;
|
|
|
+ }
|
|
|
+ .userinfo{
|
|
|
+ margin-top:20px;
|
|
|
+ }
|
|
|
+ .userinfo_title div{
|
|
|
+ margin-left:80px;
|
|
|
+ margin-top:50px;
|
|
|
+ font-size: 13px;
|
|
|
+ color: dodgerblue;
|
|
|
+ }
|
|
|
+ .userinfo_title table{
|
|
|
+ margin-left: 150px;
|
|
|
+ }
|
|
|
+ .userinfo_title table input{
|
|
|
+ border: 1px #aaa solid;
|
|
|
+ border-radius: 2px;
|
|
|
+ height: 30px;
|
|
|
+ width: 280px;
|
|
|
+ line-height:30px ;
|
|
|
+ }
|
|
|
+ .td_info{
|
|
|
+ width: 150px;
|
|
|
+ height: 60px;
|
|
|
+ line-height: 60px;
|
|
|
+ }
|
|
|
+ .td_user_info{
|
|
|
+ width: 280px;
|
|
|
+ height: 60px;
|
|
|
+ line-height: 60px;
|
|
|
+ }
|
|
|
+</style>
|
|
|
<div class="layui-tab layui-tab-card">
|
|
|
- {include file="layout/admin_items" /}
|
|
|
- <div class="layui-tab-content page-tab-content">
|
|
|
- <!-- 搜索框开始 -->
|
|
|
- <div class="search-form">
|
|
|
- <form class="" method="post">
|
|
|
- <div class="layui-form-item">
|
|
|
- <div class="layui-inline">
|
|
|
- <input type="text" name="title" placeholder="输入名称或联系人或电话" autocomplete="off" class="layui-input">
|
|
|
- </div>
|
|
|
- <div class="layui-inline">
|
|
|
- <input type="text" class="layui-input" name="timeRang" id="timeRang" placeholder="选择时间段" style="width: 170px;">
|
|
|
- </div>
|
|
|
- <div class="layui-inline">
|
|
|
- <button type="submit" class="layui-btn search-subBtn">搜索</button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
+ <div class="accountinfo">
|
|
|
+ <div class="accountinfo_title">
|
|
|
+ <div>账户信息</div>
|
|
|
+ <table>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info">登陆账号</td>
|
|
|
+ <td class="td_user_info">{$Think.session.user_email}   {$user['user_status_cn']}</td>
|
|
|
+ <td class="td_update"><a href="">修改用户名</a>|<a href="/user/Updatepwd/index.html">修改密码</a></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info">手机号码</td>
|
|
|
+ <td class="td_user_info">+ (86)  {$user['user_phone']}</td>
|
|
|
+ <td class="td_update"><a href="">修改手机号码</a></td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="userinfo">
|
|
|
+ <div class="userinfo_title">
|
|
|
+ <form method="post">
|
|
|
+ <div>用户信息</div>
|
|
|
+ <table>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info">会员类型</td>
|
|
|
+ <td class="td_user_info">个人用户</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info">称呼</td>
|
|
|
+ <td class="td_user_info"><input type="text" placeholder="请输入称呼"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info">公司名称</td>
|
|
|
+ <td class="td_user_info"><input type="text" placeholder="请输入公司名称"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info">所属行业</td>
|
|
|
+ <td class="td_user_info"><input type="text" placeholder="请输入所属行业"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info">公司地址</td>
|
|
|
+ <td class="td_user_info"><input type="text" placeholder="请输入公司地址"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="td_info"></td>
|
|
|
+ <td class="td_user_info" style="text-align: center;"><input type="submit" value="保存修改" style="width: 70px;"></td>
|
|
|
+ </tr>
|
|
|
+
|
|
|
+ </table>
|
|
|
+ </form>
|
|
|
</div>
|
|
|
- <!-- 搜索框结束 -->
|
|
|
- <table class="layui-table lay-even">
|
|
|
- <colgroup>
|
|
|
- <col width="150">
|
|
|
- <col width="200">
|
|
|
- <col>
|
|
|
- </colgroup>
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th>{$Think.lang.member_name}</th>
|
|
|
- <th>{$Think.lang.member_url}</th>
|
|
|
- <th>{$Think.lang.member_mobile}</th>
|
|
|
- <th>邮箱</th>
|
|
|
- <th>{$Think.lang.member_contacts}</th>
|
|
|
- <th>{$Think.lang.member_add_time}</th>
|
|
|
- <th>{$Think.lang.member_usetime}</th>
|
|
|
- <th>{$Think.lang.member_validitytime}</th>
|
|
|
- <th>{$Think.lang.member_status}</th>
|
|
|
- <th>操作</th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody>
|
|
|
- {if $member_list}
|
|
|
- {volist name="member_list" id="member"}
|
|
|
- <tr>
|
|
|
- <td>{$member.member_name}</td>
|
|
|
- <td>{$member.member_url}</td>
|
|
|
- <td>{$member.member_mobile}</td>
|
|
|
- <td>{$member.member_mailbox}</td>
|
|
|
- <td>{$member.member_contacts}</td>
|
|
|
- <td>{$member.member_add_time|date='Y-m-d H:i:s',###}</td>
|
|
|
- <td>{$member.member_usetime}</td>
|
|
|
- <td>{$member.member_validitytime|date='Y-m-d H:i:s',###}</td>
|
|
|
- <td>{if $member['member_status']==1}通过{else}拒绝{/if}</td>
|
|
|
- <td>
|
|
|
- {if array_intersect(explode(" ",str_replace("/", ".","member/edit")),$allpower)}
|
|
|
- <a href="javascript:dsLayerOpen('{:url('Member/edit',['member_id'=>$member.member_id])}','{$Think.lang.ds_edit}-{$member.member_name}')" class="layui-btn layui-btn-xs"><i class="layui-icon layui-icon-edit"></i>{$Think.lang.ds_edit}</a>
|
|
|
- {/if}
|
|
|
- {if array_intersect(explode(" ",str_replace("/", ".","member/del")),$allpower)}
|
|
|
- <a href="javascript:dsLayerConfirm('{:url('Member/del',['member_id'=>$member.member_id])}','{$Think.lang.member_confirm_del}')" class="layui-btn layui-btn-xs layui-btn-danger"><i class="layui-icon layui-icon-delete"></i>{$Think.lang.ds_del}</a>
|
|
|
- {/if}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- {/volist}
|
|
|
- {else}
|
|
|
- <td>无数据</td>
|
|
|
- {/if}
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- {$show_page}
|
|
|
</div>
|
|
|
</div>
|
|
|
<script type="text/javascript">
|