| | |
| | | </div> |
| | | |
| | | <button onclick="update()" class="btn full-width m-b" style="background-color: #0573EA;color: white;">保存</button> |
| | | <button class="btn full-width m-b" style="background-color: #0573EA;color: white;">关闭</button> |
| | | <button class="btn full-width m-b" style="background-color: #0573EA;color: white;" onclick="getBack()">关闭</button> |
| | | <button type="submit" id="submit" style="display: none;"></button> |
| | | </p> |
| | | </form> |
| | |
| | | function sendSMSCode() { |
| | | var phone = $("#username").val() |
| | | var ajax = new $ax(Feng.ctxPath + "/getSMSCode", function(data){ |
| | | if(data!=null){ |
| | | |
| | | if(data!=null && data.code != 200){ |
| | | alert(data.msg); |
| | | } |
| | | }); |
| | | ajax.set("phone",phone); |
| | |
| | | }); |
| | | } |
| | | |
| | | |
| | | function getBack() { |
| | | history.go(-1); |
| | | } |
| | | |
| | | window.addEventListener( |
| | | "mousewheel", |
| | | function(event) { |