app-user-pass.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>移动端账号-添加/修改</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <meta name="viewport"
  7. content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  8. <!-- 所有的 css js 资源 -->
  9. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  10. <link rel="stylesheet" href="../../static/sa.css">
  11. <script src="../../static/kj/vue.min.js"></script>
  12. <script src="../../static/kj/element-ui/index.js"></script>
  13. <script src="../../static/kj/httpVueLoader.js"></script>
  14. <script src="../../static/kj/jquery.min.js"></script>
  15. <script src="../../static/kj/layer/layer.js"></script>
  16. <script src="../../static/sa.js"></script>
  17. <style type="text/css">
  18. .c-panel .el-form .c-label {
  19. width: 7em !important;
  20. }
  21. .c-panel .el-form .el-input,
  22. .c-panel .el-form .el-textarea__inner {
  23. width: 250px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
  29. <!-- ------- 内容部分 ------- -->
  30. <div class="s-body">
  31. <div class="c-panel">
  32. <el-form>
  33. <sa-item type="password" name="新密码" v-model="m.password" br></sa-item>
  34. <sa-item type="password" name="重复密码" v-model="m.again" br></sa-item>
  35. </el-form>
  36. </div>
  37. </div>
  38. <!-- ------- 底部按钮 ------- -->
  39. <div class="s-foot">
  40. <el-button type="primary" @click="ok()">确定</el-button>
  41. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  42. </div>
  43. </div>
  44. <script>
  45. var app = new Vue({
  46. components: {
  47. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  48. },
  49. el: '.vue-box',
  50. data: {
  51. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  52. m: {
  53. password:'',
  54. again:''
  55. }, // 实体对象
  56. },
  57. methods: {
  58. // 创建一个 默认Model
  59. createModel: function() {
  60. return {
  61. password:'',
  62. again:''
  63. }
  64. },
  65. // 提交数据
  66. ok: function() {
  67. // 表单校验
  68. let m = this.m;
  69. sa.checkNull(m.password, '请输入新密码');
  70. sa.checkNull(m.again, '请再次输入新密码');
  71. if(m.password!=m.again){
  72. sa.alert('两次输入不一致');
  73. return;
  74. }
  75. if(m.password.length<8){
  76. sa.alert('密码长度不能小于8');
  77. return;
  78. }
  79. sa.ajax('/sp-admin/AppUser/pass', m, function(res) {
  80. sa.alert('修改成功', this.clean);
  81. }.bind(this));
  82. },
  83. // 添加/修改 完成后的动作
  84. clean: function() {
  85. if (this.id == 0) {
  86. this.m = this.createModel();
  87. } else {
  88. parent.app.f5(); // 刷新父页面列表
  89. sa.closeCurrIframe(); // 关闭本页
  90. }
  91. }
  92. },
  93. mounted: function() {
  94. // 初始化数据
  95. sa.ajax('/sp-admin/AppUser/getById?id=' + this.id, function(res) {
  96. this.m.id=res.data.id;
  97. }.bind(this))
  98. }
  99. })
  100. </script>
  101. </body>
  102. </html>