123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>移动端账号-添加/修改</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta name="viewport"
- content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
- <!-- 所有的 css js 资源 -->
- <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
- <link rel="stylesheet" href="../../static/sa.css">
- <script src="../../static/kj/vue.min.js"></script>
- <script src="../../static/kj/element-ui/index.js"></script>
- <script src="../../static/kj/httpVueLoader.js"></script>
- <script src="../../static/kj/jquery.min.js"></script>
- <script src="../../static/kj/layer/layer.js"></script>
- <script src="../../static/sa.js"></script>
- <style type="text/css">
- .c-panel .el-form .c-label {
- width: 7em !important;
- }
- .c-panel .el-form .el-input,
- .c-panel .el-form .el-textarea__inner {
- width: 250px;
- }
- </style>
- </head>
- <body>
- <div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
- <!-- ------- 内容部分 ------- -->
- <div class="s-body">
- <div class="c-panel">
- <el-form>
- <sa-item type="password" name="新密码" v-model="m.password" br></sa-item>
- <sa-item type="password" name="重复密码" v-model="m.again" br></sa-item>
- </el-form>
- </div>
- </div>
- <!-- ------- 底部按钮 ------- -->
- <div class="s-foot">
- <el-button type="primary" @click="ok()">确定</el-button>
- <el-button @click="sa.closeCurrIframe()">取消</el-button>
- </div>
- </div>
- <script>
- var app = new Vue({
- components: {
- "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
- },
- el: '.vue-box',
- data: {
- id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
- m: {
- password:'',
- again:''
- }, // 实体对象
- },
- methods: {
- // 创建一个 默认Model
- createModel: function() {
- return {
- password:'',
- again:''
- }
- },
- // 提交数据
- ok: function() {
- // 表单校验
- let m = this.m;
- sa.checkNull(m.password, '请输入新密码');
- sa.checkNull(m.again, '请再次输入新密码');
- if(m.password!=m.again){
- sa.alert('两次输入不一致');
- return;
- }
- if(m.password.length<8){
- sa.alert('密码长度不能小于8');
- return;
- }
- sa.ajax('/sp-admin/AppUser/pass', m, function(res) {
- sa.alert('修改成功', this.clean);
- }.bind(this));
- },
- // 添加/修改 完成后的动作
- clean: function() {
- if (this.id == 0) {
- this.m = this.createModel();
- } else {
- parent.app.f5(); // 刷新父页面列表
- sa.closeCurrIframe(); // 关闭本页
- }
- }
- },
- mounted: function() {
- // 初始化数据
- sa.ajax('/sp-admin/AppUser/getById?id=' + this.id, function(res) {
- this.m.id=res.data.id;
- }.bind(this))
- }
- })
- </script>
- </body>
- </html>
|