edit-admin-sms

This commit is contained in:
lccsw
2021-07-23 09:25:44 +08:00
parent c63370bb40
commit 224b31f8cf
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -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);
}
}
+4
View File
@@ -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>