role-add.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
  14. <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.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: 6em !important;
  20. }
  21. .c-panel .el-form .el-input {
  22. width: 250px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
  28. <!-- ------- 内容部分 ------- -->
  29. <div class="s-body">
  30. <div class="c-panel">
  31. <div class="c-title">数据添加</div>
  32. <el-form v-if="m">
  33. <!-- no字段: m.id - id -->
  34. <sa-item type="text" name="角色昵称" v-model="m.name" br></sa-item>
  35. <sa-item type="text" name="责任描述" v-model="m.info" br></sa-item>
  36. <sa-item name="" class="s-ok" br>
  37. <el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
  38. </sa-item>
  39. </el-form>
  40. </div>
  41. </div>
  42. <!-- ------- 底部按钮 ------- -->
  43. <div class="s-foot">
  44. <el-button type="primary" @click="ok()">确定</el-button>
  45. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  46. </div>
  47. </div>
  48. <script>
  49. var app = new Vue({
  50. components: {
  51. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  52. },
  53. el: '.vue-box',
  54. data: {
  55. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  56. m: null, // 实体对象
  57. },
  58. methods: {
  59. // 创建一个 默认Model
  60. createModel: function () {
  61. return {
  62. id: '',
  63. name: '',
  64. info: '',
  65. isLock: 2,
  66. // createTime: new Date(),
  67. is_update: false,
  68. }
  69. },
  70. // 提交数据
  71. ok: function () {
  72. // 验证
  73. let m = this.m; // 获取 m对象
  74. sa.checkNull(m.name, '请输入角色名字');
  75. sa.checkNull(m.info, '请输入责任描述');
  76. // 开始增加
  77. sa.ajax('/role/add', this.m, function (res) {
  78. sa.alert('增加成功', function () {
  79. if (parent.app) {
  80. parent.sa.f5(); // 刷新表格高度
  81. sa.closeCurrIframe(); // 关闭本页
  82. } else {
  83. app.m = this.createModel();
  84. }
  85. }.bind(this));
  86. }.bind(this));
  87. },
  88. // 添加/修改 完成后的动作
  89. clean: function () {
  90. if (this.id == 0) {
  91. this.m = this.createModel();
  92. } else {
  93. parent.app.f5(); // 刷新父页面列表
  94. sa.closeCurrIframe(); // 关闭本页
  95. }
  96. }
  97. },
  98. mounted: function () {
  99. this.m = this.createModel();
  100. }
  101. })
  102. </script>
  103. </body>
  104. </html>