sys-dict-add.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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="类型编码" v-model="m.sysCode" br></sa-item>
  30. <sa-item type="text" name="数据描述" v-model="m.dataDesc" br></sa-item>
  31. <sa-item name="" class="s-ok" br>
  32. <el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
  33. </sa-item>
  34. </el-form>
  35. </div>
  36. </div>
  37. <!-- ------- 底部按钮 ------- -->
  38. <div class="s-foot">
  39. <el-button type="primary" @click="ok()">确定</el-button>
  40. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  41. </div>
  42. </div>
  43. <script>
  44. var app = new Vue({
  45. components: {
  46. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  47. },
  48. el: '.vue-box',
  49. data: {
  50. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  51. m: null, // 实体对象
  52. },
  53. methods: {
  54. // 创建一个 默认Model
  55. createModel: function() {
  56. return {
  57. id: '', // id
  58. pid: sa.p('pid', '-1'), // 父ID
  59. dataCode: '', // 数据编码
  60. dataValue: '', // 数据名称/值
  61. dataDesc: '', // 数据描述
  62. }
  63. },
  64. // 提交数据
  65. ok: function(){
  66. // 表单校验
  67. let m = this.m;
  68. sa.checkNull(m.dataCode, '请输入 [数据编码]');
  69. sa.checkNull(m.dataValue, '请输入 [数据名称/值]');
  70. sa.checkNull(m.dataDesc, '请输入 [数据描述]');
  71. // 开始增加或修改
  72. if(this.id <= 0) { // 添加
  73. sa.ajax('/SysDict/add', m, function(res){
  74. sa.alert('增加成功', this.clean);
  75. }.bind(this));
  76. } else { // 修改
  77. sa.ajax('/SysDict/update', m, function(res){
  78. sa.alert('修改成功', this.clean);
  79. }.bind(this));
  80. }
  81. },
  82. // 添加/修改 完成后的动作
  83. clean: function() {
  84. if(this.id == 0) {
  85. this.m = this.createModel();
  86. } else {
  87. parent.app.f5(); // 刷新父页面列表
  88. sa.closeCurrIframe(); // 关闭本页
  89. }
  90. }
  91. },
  92. mounted: function(){
  93. // 初始化数据
  94. if(this.id <= 0) {
  95. this.m = this.createModel();
  96. } else {
  97. sa.ajax('/SysDict/getById?id=' + this.id, function(res) {
  98. this.m = res.data;
  99. if(res.data == null) {
  100. sa.alert('未能查找到 id=' + this.id + " 详细数据");
  101. }
  102. }.bind(this))
  103. }
  104. }
  105. })
  106. </script>
  107. </body>
  108. </html>