| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- {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: 220px;
- height: 60px;
- line-height: 60px;
- }
- </style>
- <div class="layui-tab layui-tab-card">
- <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="/user/Updatepwd/username.html">修改用户名</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="/user/Updatepwd/phone.html">修改手机号码</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">{$user['user_type_cn']}</td>
- </tr>
- <tr>
- <td class="td_info">称呼</td>
- <td class="td_user_info"><input type="text" name="user_name" placeholder="请输入称呼" value="{$user['user_name']}"></td>
- </tr>
- <tr>
- <td class="td_info">公司名称</td>
- <td class="td_user_info"><input type="text" name="company" placeholder="请输入公司名称" value="{$user['company']}"></td>
- </tr>
- <tr>
- <td class="td_info">所属行业</td>
- <td class="td_user_info"><input type="text" name="trade" placeholder="请输入所属行业" value="{$user['trade']}"></td>
- </tr>
- <tr>
- <td class="td_info">公司地址</td>
- <td class="td_user_info"><input type="text" name="address" placeholder="请输入公司地址" value="{$user['address']}"></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>
- </div>
- </div>
- <script type="text/javascript">
- layui.use('laydate', function(){
- var laydate = layui.laydate;
-
- //执行一个laydate实例
- laydate.render({
- elem: '#creatTime' //指定元素
- });
- laydate.render({
- elem:'#timeRang',
- range:true,
- format: 'yyyy/MM/dd',
- done: function(value, date){
- /* 时间选择完成后的回调 */
- }
- })
- });
- </script>
- {/block}
|