|
|
@@ -3,7 +3,8 @@
|
|
|
<body>
|
|
|
<div class="wrap">
|
|
|
<ul class="nav nav-tabs">
|
|
|
- <li><a>用户资料</a></li>
|
|
|
+ <li><a href="javascript:history.back(-1);">资源列表</a></li>
|
|
|
+ <li class="active"><a href="#">用户资料</a></li>
|
|
|
</ul>
|
|
|
<form method="post" class="form-horizontal js-ajax-form margin-top-20" action="{:url('admin/sales/info')}">
|
|
|
<div class="form-group">
|
|
|
@@ -21,9 +22,15 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-group">
|
|
|
- <label for="input-real_name" class="col-sm-2 control-label"><span class="form-required">*</span>{:lang('REALNAME')}</label>
|
|
|
+ <label for="input-user_login" class="col-sm-2 control-label"><span class="form-required">*</span>账号</label>
|
|
|
<div class="col-md-6 col-sm-10">
|
|
|
- <input type="text" class="form-control" id="input-real_name" name="real_name" value="{$real_name}">
|
|
|
+ <input type="text" class="form-control" id="input-user_login" name="user_login" value="{$user_login}" readonly>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="input-openid" class="col-sm-2 control-label"><span class="form-required">*</span>微信openid</label>
|
|
|
+ <div class="col-md-6 col-sm-10">
|
|
|
+ <input type="text" class="form-control" id="input-openid" value="{$openid}" readonly>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-group">
|
|
|
@@ -33,6 +40,13 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-group">
|
|
|
+ <label for="input-real_name" class="col-sm-2 control-label">真实姓名</label>
|
|
|
+ <div class="col-md-6 col-sm-10">
|
|
|
+ <input type="text" class="form-control" id="input-real_name" name="real_name" value="{$real_name}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
<label for="input-real_name" class="col-sm-2 control-label">性别</label>
|
|
|
<div class="col-md-6 col-sm-10">
|
|
|
<input type="text" class="form-control" id="input-sex" name="sex" value="<switch name="sex">
|
|
|
@@ -42,6 +56,31 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-group">
|
|
|
+ <label for="input-score" class="col-sm-2 control-label"><span class="form-required"></span>生日</label>
|
|
|
+ <div class="col-md-6 col-sm-10">
|
|
|
+ <input type="text" class="form-control js-bootstrap-datetime" id="birthday" name="birthday" value="{:date('Y-m-d H:i:s',$birthday)}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="col-sm-2 control-label">是否置顶</label>
|
|
|
+ <div class="col-md-6 col-sm-10">
|
|
|
+ <label class="radio-inline">
|
|
|
+ <input type="radio" name="is_top" <if condition="$is_top eq 1">checked</if> value="1">是
|
|
|
+ </label>
|
|
|
+ <label class="radio-inline">
|
|
|
+ <input type="radio" name="is_top" <if condition="$is_top neq 1">checked</if> value="0"> 否
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="input-top_expire" class="col-sm-2 control-label"><span class="form-required"></span>置顶时长</label>
|
|
|
+ <div class="col-md-6 col-sm-10">
|
|
|
+ <input type="text" class="form-control js-bootstrap-datetime" id="top_expire" name="top_expire" value="{$top_expire}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
<label for="input-user_login" class="col-sm-2 control-label">身高</label>
|
|
|
<div class="col-md-6 col-sm-10" style="height: 30px;">
|
|
|
<input type="text" class="form-control" style="width: 95%;float:left;" id="height" name="height" value="{$height}" ><span style="float:left;height: 34px; line-height: 34px;"> cm</span>
|
|
|
@@ -53,6 +92,24 @@
|
|
|
<input type="text" class="form-control" style="width: 95%;float:left;" id="weight" name="weight" value="{$weight}" ><span style="float:left;height: 34px; line-height: 34px;"> kg</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="form-group">
|
|
|
+ <php>$salaryarray=array(1=>'5-10w',2=>'10-20w',3=>'20-35w',4=>'35-55w',5=>'100w以上');</php>
|
|
|
+ <label for="input-user_login" class="col-sm-2 control-label">收入</label>
|
|
|
+ <div class="col-md-6 col-sm-10">
|
|
|
+ <select class="form-control" name="salary" id="salary" style="width: 92%;float:left;">
|
|
|
+ <option value="none">--请选择--</option>>
|
|
|
+ <volist name="$salaryarray" id="vo">
|
|
|
+ <if condition="$salary eq $key">
|
|
|
+ <option value="{$key}" selected="">{$vo}</option>
|
|
|
+ <else/>
|
|
|
+ <option value="{$key}">{$vo}</option>
|
|
|
+ </if>
|
|
|
+ </volist>
|
|
|
+ </select>
|
|
|
+ <span style="float:left;height: 34px; line-height: 34px;"> 年薪</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
<php>$educationarray=array(1=>'大专',2=>'本科',3=>'硕士',4=>'博士');</php>
|
|
|
<div class="form-group">
|
|
|
<label for="input-user_login" class="col-sm-2 control-label">学历</label>
|
|
|
@@ -77,10 +134,10 @@
|
|
|
|
|
|
<option value="none">--请选择职位--</option>
|
|
|
|
|
|
-
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="form-group">
|
|
|
<label for="input-user_login" class="col-sm-2 control-label">现居</label>
|
|
|
<div class="col-md-6 col-sm-10">
|
|
|
@@ -103,20 +160,29 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <php>$marriedarray=array(1=>'未婚',2=>'离异',3=>'离异有孩子');</php>
|
|
|
+
|
|
|
<div class="form-group">
|
|
|
- <label for="input-user_login" class="col-sm-2 control-label">婚姻状况</label>
|
|
|
+ <label for="input-user_login" class="col-sm-2 control-label">家乡</label>
|
|
|
<div class="col-md-6 col-sm-10">
|
|
|
- <select class="form-control" name="married" id="married">
|
|
|
- <option value="none">--请选择--</option>
|
|
|
- <volist name="$marriedarray" id="vo">
|
|
|
- <if condition="$married eq $key">
|
|
|
- <option value="{$key}" selected="">{$vo}</option>
|
|
|
- <else/>
|
|
|
- <option value="{$key}">{$vo}</option>
|
|
|
- </if>
|
|
|
- </volist>
|
|
|
- </select>
|
|
|
+ <div class="layui-main">
|
|
|
+ <div class="layui-form" >
|
|
|
+ <div class="layui-form-item" style="margin-bottom:0px;">
|
|
|
+
|
|
|
+ <div class="layui-inline" style="margin-bottom:0px;width: 170px;">
|
|
|
+ <input type="text" class="form-control" id="home_province" name="home_province" value="{$home_province}">
|
|
|
+ </div>
|
|
|
+ <div class="layui-inline" style="margin-bottom:0px;width: 170px;">
|
|
|
+ <input type="text" class="form-control" id="home_city" name="home_city" value="{$home_city}">
|
|
|
+ </div>
|
|
|
+ <div class="layui-inline" style="margin-bottom:0px;width: 170px;">
|
|
|
+ <input type="text" class="form-control" id="home_district" name="home_district" value="{$home_district}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
|
|
|
</div>
|
|
|
</div>
|