tb-business-item-add.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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.businessId" br></sa-item>
  30. <sa-item type="text" name="项目编号" v-model="m.itemCode" br></sa-item>
  31. <sa-item type="text" name="项目金额" v-model="m.itemPrice" br></sa-item>
  32. <sa-item type="text" name="项目名称" v-model="m.itemName" br></sa-item>
  33. <sa-item type="text" name="状态" v-model="m.status" br></sa-item>
  34. <sa-item type="text" name="操作时间" v-model="m.operateTime" br></sa-item>
  35. <sa-item type="text" name="操作人员" v-model="m.operaror" 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. businessId: '', // 等级表id
  64. itemCode: '', // 项目编号
  65. itemPrice: '', // 项目金额(元)
  66. itemName: '', // 项目名称
  67. status: '', // 状态(1=未完成,2=已完成)
  68. operateTime: '', // 操作时间
  69. operaror: '', // 操作人员
  70. }
  71. },
  72. // 提交数据
  73. ok: function(){
  74. // 表单校验
  75. let m = this.m;
  76. // sa.checkNull(m.id, '请输入 [主键]');
  77. sa.checkNull(m.businessId, '请输入 [等级表id]');
  78. sa.checkNull(m.itemCode, '请输入 [项目编号]');
  79. sa.checkNull(m.itemPrice, '请输入 [项目金额]');
  80. sa.checkNull(m.itemName, '请输入 [项目名称]');
  81. sa.checkNull(m.status, '请输入 [状态]');
  82. sa.checkNull(m.operateTime, '请输入 [操作时间]');
  83. sa.checkNull(m.operaror, '请输入 [操作人员]');
  84. // 开始增加或修改
  85. if(this.id <= 0) { // 添加
  86. sa.ajax('/TbBusinessItem/add', m, function(res){
  87. sa.alert('增加成功', this.clean);
  88. }.bind(this));
  89. } else { // 修改
  90. sa.ajax('/TbBusinessItem/update', m, function(res){
  91. sa.alert('修改成功', this.clean);
  92. }.bind(this));
  93. }
  94. },
  95. // 添加/修改 完成后的动作
  96. clean: function() {
  97. if(this.id == 0) {
  98. this.m = this.createModel();
  99. } else {
  100. parent.app.f5(); // 刷新父页面列表
  101. sa.closeCurrIframe(); // 关闭本页
  102. }
  103. }
  104. },
  105. mounted: function(){
  106. // 初始化数据
  107. if(this.id <= 0) {
  108. this.m = this.createModel();
  109. } else {
  110. sa.ajax('/TbBusinessItem/getById?id=' + this.id, function(res) {
  111. this.m = res.data;
  112. if(res.data == null) {
  113. sa.alert('未能查找到 id=' + this.id + " 详细数据");
  114. }
  115. }.bind(this))
  116. }
  117. }
  118. })
  119. </script>
  120. </body>
  121. </html>