| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {include file="Application/Home/View/Public/header.blade.php"}
- {include file="Application/Home/View/Public/userLeft.blade.php"}
- <div class="member-content">
- <p class="memberMinTitle">我的资料</p>
- <form action="" method="post" class="changepw">
- {literal}
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="label_ou">用户名:</td>
- <td>
- <input type="text" readonly="readonly" name="account" id="account" :value="todos.account"/>
- </td>
- </tr>
- <tr>
- <td class="label_ou">手机号码:</td>
- <td>
- <input type="text" readonly="readonly" name="phone" id="phone" :value="todos.phone"/>
- </td>
- </tr>
- <tr>
- <td class="label_ou">邮箱:</td>
- <td>
- <input type="text" readonly="readonly" name="email" id="email" :value="todos.email"/>
- </td>
- </tr>
- </table>
- {/literal}
- </form>
- </div>
- </div>
- {literal}
- <script>
- var datas = new Vue({
- el: ".changepw",
- data: {
- todos: [],
- }
- });
- $(function () {
- apiAjax('/Api-Account/getAccount', {}, function (data) {
- //console.log(data);
- datas.todos = data.data;
- //console.log(datas.todos);
- });
- $('#ko').attr('display','none');
- })
- </script>
- {/literal}
- {include file="Application/Home/View/Public/footer.php"}
|