tb-account-update.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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"
  7. content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>
  8. <!-- 所有的 css js 资源 -->
  9. <link rel="stylesheet" href="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">
  10. <link rel="stylesheet" href="../../static/sa.css">
  11. <script src="https://unpkg.com/vue@2.6.10/dist/vue.js"></script>
  12. <script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>
  13. <script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
  14. <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>
  15. <script src="https://www.layuicdn.com/layer-v3.1.1/layer.js"></script>
  16. <script src="../../static/sa.js"></script>
  17. <script src="../../static/kj/upload-util.js"></script>
  18. <style type="text/css">
  19. .c-panel .el-form .c-label {
  20. width: 8em !important;
  21. }
  22. .c-panel .el-form .el-input, .c-panel .el-form .el-textarea__inner {
  23. width: 250px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="vue-box" style="display: none;" :style="'display: block;'">
  29. <!-- ------- 内容部分 ------- -->
  30. <div class="s-body">
  31. <div class="c-panel" style="text-align:center; ">
  32. <!-- <div class="c-title">充值</div>-->
  33. <el-form v-if="m">
  34. <sa-item type="text" name="客户名称" v-model="m.customerName" :disabled="true" br></sa-item>
  35. <sa-item id="ast" type="text" name="纳税识别号" v-model="m.taxNum" br></sa-item>
  36. <sa-item id="ast" type="text" name="客户负责人" v-model="m.dutyPeople" br></sa-item>
  37. <sa-item id="ast" type="text" name="联系电话" v-model="m.phone" br></sa-item>
  38. <sa-item type="text" name="开户行" v-model="m.bank" br></sa-item>
  39. <sa-item type="text" name="银行账号" v-model="m.bankAccount" br></sa-item>
  40. <sa-item type="text" name="地址" v-model="m.address" br></sa-item>
  41. <sa-item name="" class="s-ok" br>
  42. <el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
  43. </sa-item>
  44. </el-form>
  45. </div>
  46. </div>
  47. <!-- ------- 底部按钮 ------- -->
  48. <div class="s-foot">
  49. <el-button type="primary" @click="ok()">确定</el-button>
  50. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  51. </div>
  52. </div>
  53. <script>
  54. var app = new Vue({
  55. components: {
  56. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  57. },
  58. el: '.vue-box',
  59. data: {
  60. id: '',
  61. customerId: sa.p('customerId', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  62. m: null, // 实体对象
  63. payingTypeList:[], //付款方式集合
  64. },
  65. methods: {
  66. // 创建一个 默认Model
  67. createModel: function () {
  68. return {
  69. id: '', // 主键
  70. customerId: '', // 客户id
  71. customerName: '',
  72. phone:'',
  73. dutyPeople:'',
  74. // status: '', // 状态(0=禁用,1=启用)
  75. bank: '', //
  76. bankAccount: '', //
  77. address: '', //
  78. taxNum: '', //
  79. }
  80. },
  81. // 提交数据
  82. ok: function () {
  83. // 表单校验
  84. let m = this.m;
  85. sa.checkNull(m.taxNum, '纳税识别号不能为空!');
  86. sa.checkNull(m.phone, '联系电话不能为空!');
  87. sa.checkNull(m.dutyPeople, '负责人不能为空!');
  88. if (!sa.isPhone(m.phone)) {
  89. sa.error('请输入正确手机号');
  90. return;
  91. }
  92. m.id = sa.p('id', 0);
  93. let pasObj = this.createModel();
  94. for(let o in pasObj){
  95. pasObj[o] = m[o];
  96. }
  97. sa.ajax('/TbAccount/update', sa.removeNull(pasObj), function (res) {
  98. sa.alert('修改成功', this.clean);
  99. }.bind(this));
  100. },
  101. // 添加/修改 完成后的动作
  102. clean: function () {
  103. parent.app.f5(); // 刷新父页面列表
  104. sa.closeCurrIframe(); // 关闭本页
  105. },
  106. },
  107. mounted: function () {
  108. // 初始化数据
  109. this.m = this.createModel();
  110. this.m.customerId = this.customerId;
  111. sa.ajax('/TbAccount/getList', sa.removeNull(this.m), function (res) {
  112. if(res.data && res.data.length==1){
  113. this.m = res.data[0];
  114. }
  115. }.bind(this))
  116. }
  117. })
  118. </script>
  119. </body>
  120. </html>