sys-dict-addChild.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  7. <!-- 所有的 css js 资源 -->
  8. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  9. <link rel="stylesheet" href="../../static/sa.css">
  10. <script src="../../static/kj/vue.min.js"></script>
  11. <script src="../../static/kj/element-ui/index.js"></script>
  12. <script src="../../static/kj/httpVueLoader.js"></script>
  13. <script src="../../static/kj/jquery.min.js"></script>
  14. <script src="../../static/kj/layer/layer.js"></script>
  15. <script src="../../static/sa.js"></script>
  16. <style type="text/css">
  17. .c-panel .el-form .c-label{width: 7em !important;}
  18. .c-panel .el-form .el-input, .c-panel .el-form .el-textarea__inner{width: 250px;}
  19. </style>
  20. </head>
  21. <body>
  22. <div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
  23. <!-- ------- 内容部分 ------- -->
  24. <div class="s-body">
  25. <div class="c-panel">
  26. <div class="c-title" v-if="id == 0">数据添加</div>
  27. <div class="c-title" v-else>数据修改</div>
  28. <el-form v-if="m">
  29. <sa-item type="text" name="父ID" v-model="m.pid" v-if="sa.p('pid', 'nof') == 'nof'" br></sa-item>
  30. <sa-item type="text" name="数据编码" v-model="m.dataCode" br></sa-item>
  31. <sa-item type="text" name="数据名称/值" v-model="m.dataValue" br></sa-item>
  32. <sa-item type="text" name="数据描述" v-model="m.dataDesc" br></sa-item>
  33. <sa-item name="" class="s-ok" br>
  34. <el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
  35. </sa-item>
  36. </el-form>
  37. </div>
  38. </div>
  39. <!-- ------- 底部按钮 ------- -->
  40. <div class="s-foot">
  41. <el-button type="primary" @click="ok()">确定</el-button>
  42. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  43. </div>
  44. </div>
  45. <script>
  46. var app = new Vue({
  47. components: {
  48. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  49. },
  50. el: '.vue-box',
  51. data: {
  52. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  53. m: null, // 实体对象
  54. },
  55. methods: {
  56. // 创建一个 默认Model
  57. createModel: function() {
  58. return {
  59. id: '', // id
  60. pid: sa.p('pid', '-1'), // 父ID
  61. dataCode: '', // 数据编码
  62. dataValue: '', // 数据名称/值
  63. dataDesc: '', // 数据描述
  64. }
  65. },
  66. // 提交数据
  67. ok: function(){
  68. // 表单校验
  69. let m = this.m;
  70. sa.checkNull(m.dataCode, '请输入 [数据编码]');
  71. sa.checkNull(m.dataValue, '请输入 [数据名称/值]');
  72. sa.checkNull(m.dataDesc, '请输入 [数据描述]');
  73. // 开始增加或修改
  74. if(this.id <= 0) { // 添加
  75. sa.ajax('/SysDict/add', m, function(res){
  76. sa.alert('增加成功', this.clean);
  77. }.bind(this));
  78. } else { // 修改
  79. sa.ajax('/SysDict/update', m, function(res){
  80. sa.alert('修改成功', this.clean);
  81. }.bind(this));
  82. }
  83. },
  84. // 添加/修改 完成后的动作
  85. clean: function() {
  86. if(this.id == 0) {
  87. this.m = this.createModel();
  88. } else {
  89. parent.app.f5(); // 刷新父页面列表
  90. sa.closeCurrIframe(); // 关闭本页
  91. }
  92. }
  93. },
  94. mounted: function(){
  95. // 初始化数据
  96. if(this.id <= 0) {
  97. this.m = this.createModel();
  98. } else {
  99. sa.ajax('/SysDict/getById?id=' + this.id, function(res) {
  100. this.m = res.data;
  101. if(res.data == null) {
  102. sa.alert('未能查找到 id=' + this.id + " 详细数据");
  103. }
  104. }.bind(this))
  105. }
  106. }
  107. })
  108. </script>
  109. </body>
  110. </html>