tb-item-rules-add.html 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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.goodsCodes" br></sa-item>
  30. <!-- date-create字段: m.createTime - 创建时间 -->
  31. <sa-item type="text" name="更新者id" v-model="m.updateBy" br></sa-item>
  32. <sa-item type="text" name="更新者名称" v-model="m.updateByName" br></sa-item>
  33. <!-- date-update字段: m.updateTime - 更新时间 -->
  34. <sa-item type="text" name="更新人" v-model="m.updateById" br></sa-item>
  35. <sa-item type="enum" name="类型" v-model="m.feeType" :jv="{1: '按交易额收取', 2: '按次收取', 3: '按吨'}" jtype="3" br></sa-item>
  36. <sa-item type="text" name="百分比fee_type=1时生效" v-model="m.percent" br></sa-item>
  37. <sa-item type="text" name="收费金额fee_type=2时生效" v-model="m.feeMoney" br></sa-item>
  38. <sa-item name="" class="s-ok" br>
  39. <el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
  40. </sa-item>
  41. </el-form>
  42. </div>
  43. </div>
  44. <!-- ------- 底部按钮 ------- -->
  45. <div class="s-foot">
  46. <el-button type="primary" @click="ok()">确定</el-button>
  47. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  48. </div>
  49. </div>
  50. <script>
  51. var app = new Vue({
  52. components: {
  53. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  54. },
  55. el: '.vue-box',
  56. data: {
  57. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  58. m: null, // 实体对象
  59. },
  60. methods: {
  61. // 创建一个 默认Model
  62. createModel: function() {
  63. return {
  64. id: '', // 主键
  65. goodsCodes: '', // 指定的商品
  66. // createTime: '', // 创建时间
  67. updateBy: '', // 更新者id
  68. updateByName: '', // 更新者名称
  69. // updateTime: '', // 更新时间
  70. updateById: '', // 更新人
  71. feeType: '', // 类型(1=按交易额收取,2=按次收取,3=按吨)
  72. percent: '', // 百分比fee_type=1时生效
  73. feeMoney: '', // 收费金额 fee_type=2时生效
  74. }
  75. },
  76. // 提交数据
  77. ok: function(){
  78. // 表单校验
  79. let m = this.m;
  80. // sa.checkNull(m.id, '请输入 [主键]');
  81. sa.checkNull(m.goodsCodes, '请输入 [指定的商品]');
  82. // sa.checkNull(m.createTime, '请输入 [创建时间]');
  83. sa.checkNull(m.updateBy, '请输入 [更新者id]');
  84. sa.checkNull(m.updateByName, '请输入 [更新者名称]');
  85. // sa.checkNull(m.updateTime, '请输入 [更新时间]');
  86. sa.checkNull(m.updateById, '请输入 [更新人]');
  87. sa.checkNull(m.feeType, '请输入 [类型]');
  88. sa.checkNull(m.percent, '请输入 [百分比fee_type=1时生效]');
  89. sa.checkNull(m.feeMoney, '请输入 [收费金额fee_type=2时生效]');
  90. // 开始增加或修改
  91. this.m.createTime = undefined; // 不提交属性:创建时间
  92. this.m.updateTime = undefined; // 不提交属性:更新时间
  93. if(this.id <= 0) { // 添加
  94. sa.ajax('/TbItemRules/add', m, function(res){
  95. sa.alert('增加成功', this.clean);
  96. }.bind(this));
  97. } else { // 修改
  98. sa.ajax('/TbItemRules/update', m, function(res){
  99. sa.alert('修改成功', this.clean);
  100. }.bind(this));
  101. }
  102. },
  103. // 添加/修改 完成后的动作
  104. clean: function() {
  105. if(this.id == 0) {
  106. this.m = this.createModel();
  107. } else {
  108. parent.app.f5(); // 刷新父页面列表
  109. sa.closeCurrIframe(); // 关闭本页
  110. }
  111. }
  112. },
  113. mounted: function(){
  114. // 初始化数据
  115. if(this.id <= 0) {
  116. this.m = this.createModel();
  117. } else {
  118. sa.ajax('/TbItemRules/getById?id=' + this.id, function(res) {
  119. this.m = res.data;
  120. if(res.data == null) {
  121. sa.alert('未能查找到 id=' + this.id + " 详细数据");
  122. }
  123. }.bind(this))
  124. }
  125. }
  126. })
  127. </script>
  128. </body>
  129. </html>