edit-admin-sms
This commit is contained in:
@@ -134,7 +134,7 @@ class Login extends CI_Controller
|
||||
$domain = implode('.', $domain);
|
||||
|
||||
$this->input->set_cookie(LOGIN_CODE_COOKIE, $this->encryption->encrypt(json_encode($code)), 60 * 5, $domain);
|
||||
send_sms($mobile, array($code));
|
||||
send_sms($mobile, $code);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -58,9 +58,11 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<!-- th 中 复选框的宽度 写死 固定50 然后其他的用百分比,但是必须有一个是不要设置值得(这样可以自适应省去计算麻烦) -->
|
||||
<!--
|
||||
<th width="50">
|
||||
<input type="checkbox" />
|
||||
</th>
|
||||
-->
|
||||
<th width="10%"><span>ID</span></th>
|
||||
<th width="15%"><span>用户名</span></th>
|
||||
<th width="15%"><span>手机号</span></th>
|
||||
@@ -71,7 +73,9 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="value in lists">
|
||||
<!--
|
||||
<td><input type="checkbox" /></td>
|
||||
-->
|
||||
<td>{{value.id}}</td>
|
||||
<td>{{value.username}}</td>
|
||||
<td>{{value.mobile}}</td>
|
||||
|
||||
Reference in New Issue
Block a user