app-user-pass.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <div class="c-title" v-if="id == 0">数据添加</div>
  33. <div class="c-title" v-else>数据修改</div>
  34. <el-form v-if="m">
  35. <sa-item type="text" name="新密码" v-model="m.password" br></sa-item>
  36. <sa-item type="text" name="重复密码" v-model="m.again" br></sa-item>
  37. </el-form>
  38. </div>
  39. </div>
  40. <!-- ------- 底部按钮 ------- -->
  41. <div class="s-foot">
  42. <el-button type="primary" @click="ok()">确定</el-button>
  43. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  44. </div>
  45. </div>
  46. <script>
  47. var app = new Vue({
  48. components: {
  49. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  50. },
  51. el: '.vue-box',
  52. data: {
  53. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  54. m: null, // 实体对象
  55. },
  56. methods: {
  57. // 创建一个 默认Model
  58. createModel: function() {
  59. return {
  60. }
  61. },
  62. // 提交数据
  63. ok: function() {
  64. // 表单校验
  65. let m = this.m;
  66. sa.checkNull(m.password, '请输入新密码');
  67. sa.checkNull(m.again, '请再次输入新密码');
  68. if(m.password!=m.again){
  69. sa.alert('两次输入不一致');
  70. return;
  71. }
  72. sa.ajax('/sp-admin/AppUser/pass', m, function(res) {
  73. sa.alert('修改成功', this.clean);
  74. }.bind(this));
  75. },
  76. // 添加/修改 完成后的动作
  77. clean: function() {
  78. if (this.id == 0) {
  79. this.m = this.createModel();
  80. } else {
  81. parent.app.f5(); // 刷新父页面列表
  82. sa.closeCurrIframe(); // 关闭本页
  83. }
  84. }
  85. },
  86. mounted: function() {
  87. // 初始化数据
  88. sa.ajax('/sp-admin/AppUser/getById?id=' + this.id, function(res) {
  89. this.m = res.data;
  90. this.m.password='';
  91. }.bind(this))
  92. }
  93. })
  94. </script>
  95. </body>
  96. </html>