tb-transport-fundflow-bill-add.html 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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.billId" br></sa-item>
  30. <sa-item type="text" name="账单日期" v-model="m.billDate" br></sa-item>
  31. <sa-item type="text" name="平台收入笔数" v-model="m.inCountPlatform" br></sa-item>
  32. <sa-item type="text" name="平台收入金额" v-model="m.inAmountPlatform" br></sa-item>
  33. <sa-item type="text" name="平台支出笔数" v-model="m.outCountPlatform" br></sa-item>
  34. <sa-item type="text" name="平台支出金额" v-model="m.outAmountPlatform" br></sa-item>
  35. <sa-item type="text" name="微信收入笔数" v-model="m.inCountWechat" br></sa-item>
  36. <sa-item type="text" name="微信收入金额" v-model="m.inAmountWechat" br></sa-item>
  37. <sa-item type="text" name="微信支出笔数" v-model="m.outCountWechat" br></sa-item>
  38. <sa-item type="text" name="微信支出金额" v-model="m.outAmountWechat" br></sa-item>
  39. <sa-item name="" class="s-ok" br>
  40. <el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
  41. </sa-item>
  42. </el-form>
  43. </div>
  44. </div>
  45. <!-- ------- 底部按钮 ------- -->
  46. <div class="s-foot">
  47. <el-button type="primary" @click="ok()">确定</el-button>
  48. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  49. </div>
  50. </div>
  51. <script>
  52. var app = new Vue({
  53. components: {
  54. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  55. },
  56. el: '.vue-box',
  57. data: {
  58. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  59. m: null, // 实体对象
  60. },
  61. methods: {
  62. // 创建一个 默认Model
  63. createModel: function() {
  64. return {
  65. billId: '', // 账单ID
  66. billDate: '', // 账单日期
  67. inCountPlatform: '', // 平台收入笔数
  68. inAmountPlatform: '', // 平台收入金额
  69. outCountPlatform: '', // 平台支出笔数
  70. outAmountPlatform: '', // 平台支出金额
  71. inCountWechat: '', // 微信收入笔数
  72. inAmountWechat: '', // 微信收入金额
  73. outCountWechat: '', // 微信支出笔数
  74. outAmountWechat: '', // 微信支出金额
  75. }
  76. },
  77. // 提交数据
  78. ok: function(){
  79. // 表单校验
  80. let m = this.m;
  81. sa.checkNull(m.billId, '请输入 [账单ID]');
  82. sa.checkNull(m.billDate, '请输入 [账单日期]');
  83. sa.checkNull(m.inCountPlatform, '请输入 [平台收入笔数]');
  84. sa.checkNull(m.inAmountPlatform, '请输入 [平台收入金额]');
  85. sa.checkNull(m.outCountPlatform, '请输入 [平台支出笔数]');
  86. sa.checkNull(m.outAmountPlatform, '请输入 [平台支出金额]');
  87. sa.checkNull(m.inCountWechat, '请输入 [微信收入笔数]');
  88. sa.checkNull(m.inAmountWechat, '请输入 [微信收入金额]');
  89. sa.checkNull(m.outCountWechat, '请输入 [微信支出笔数]');
  90. sa.checkNull(m.outAmountWechat, '请输入 [微信支出金额]');
  91. // 开始增加或修改
  92. if(this.id <= 0) { // 添加
  93. sa.ajax('/TbTransportFundflowBill/add', m, function(res){
  94. sa.alert('增加成功', this.clean);
  95. }.bind(this));
  96. } else { // 修改
  97. sa.ajax('/TbTransportFundflowBill/update', m, function(res){
  98. sa.alert('修改成功', this.clean);
  99. }.bind(this));
  100. }
  101. },
  102. // 添加/修改 完成后的动作
  103. clean: function() {
  104. if(this.id == 0) {
  105. this.m = this.createModel();
  106. } else {
  107. parent.app.f5(); // 刷新父页面列表
  108. sa.closeCurrIframe(); // 关闭本页
  109. }
  110. }
  111. },
  112. mounted: function(){
  113. // 初始化数据
  114. if(this.id <= 0) {
  115. this.m = this.createModel();
  116. } else {
  117. sa.ajax('/TbTransportFundflowBill/getById?id=' + this.id, function(res) {
  118. this.m = res.data;
  119. if(res.data == null) {
  120. sa.alert('未能查找到 id=' + this.id + " 详细数据");
  121. }
  122. }.bind(this))
  123. }
  124. }
  125. })
  126. </script>
  127. </body>
  128. </html>