tb-enterprise-do-judge.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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="../../static/kj/vue.min.js"></script>
  12. <script src="../../static/kj/element-ui/index.js"></script>
  13. <script src="../../static/kj/httpVueLoader.js"></script>
  14. <script src="../../static/kj/jquery.min.js"></script>
  15. <script src="../../static/kj/layer/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 .c-label {
  20. width: 8em;
  21. }
  22. .c-item .image-box-2 {
  23. height: 90px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="vue-box sbot" style="display: none;" :style="'display: block;'">
  29. <!-- ------- 内容部分 ------- -->
  30. <div class="s-body">
  31. <div class="c-panel">
  32. <el-form v-if="m">
  33. <el-row>
  34. <el-col span="12">
  35. <sa-info name="商户名称" br>{{m.name}}</sa-info>
  36. <sa-info name="法人" br>{{m.legalPerson}}</sa-info>
  37. <sa-info name="身份证号" br>{{m.idCard}}</sa-info>
  38. <sa-info name="手机号码" br>{{m.contact}}</sa-info>
  39. <sa-info v-if="m.judgeBy" name="审核时间" br>{{m.judgeTime}}</sa-info>
  40. <sa-info v-if="m.judgeBy" name="审核结果" br>审核驳回</sa-info>
  41. </el-col>
  42. <el-col span="12">
  43. <sa-info name="地址" br>{{m.address}}</sa-info>
  44. <sa-info name="银行名称" br>{{m.bankName}}</sa-info>
  45. <sa-info name="银行账号" br>{{m.bankAccount}}</sa-info>
  46. <sa-info name="税号" br>{{m.dutyParagraph}}</sa-info>
  47. <sa-info v-if="m.judgeBy" name="审核意见" br>{{m.judgeContent}}</sa-info>
  48. <sa-info v-if="m.judgeBy" name="审核人" br>{{m.judgeBy}}</sa-info>
  49. </el-col>
  50. <sa-info type="img-list" name="营业执照" :value="m.businessLicense" br></sa-info>
  51. </el-row>
  52. </el-form>
  53. </div>
  54. </div>
  55. <!-- ------- 底部按钮 ------- -->
  56. <div class="s-foot" v-if="sa.isAuth('tb-enterprise-judge')">
  57. <el-button type="warning" @click="judgeBack">审核驳回</el-button>
  58. <el-button type="success" @click="judgePass">审核通过</el-button>
  59. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  60. </div>
  61. </div>
  62. <script>
  63. var app = new Vue({
  64. components: {
  65. "sa-info": httpVueLoader('../../sa-frame/com/sa-info.vue')
  66. },
  67. el: '.vue-box',
  68. data: {
  69. id: sa.p('id', 0), // 获取数据ID
  70. m: null
  71. },
  72. methods: {
  73. judgeBack() {
  74. let id = this.m.id;
  75. layer.prompt({
  76. title: '输入审核意见'
  77. }, function(content, index) {
  78. layer.close(index);
  79. sa.ajax('/level-one-server/TbEnterprise/audit', {
  80. id: id,
  81. judgeContent: content,
  82. judgeStatus: 2
  83. }, function(res) {
  84. layer.msg('审核已驳回');
  85. setTimeout(() => {
  86. parent.app.f5(); // 刷新父页面列表
  87. sa.closeCurrIframe(); // 关闭本页
  88. }, 800)
  89. })
  90. });
  91. },
  92. judgePass() {
  93. sa.ajax('/level-one-server/TbEnterprise/audit', {
  94. id: this.m.id,
  95. judgeContent: '审核通过',
  96. judgeStatus: 1
  97. }, function(res) {
  98. layer.msg('审核通过');
  99. setTimeout(() => {
  100. parent.app.f5(); // 刷新父页面列表
  101. sa.closeCurrIframe(); // 关闭本页
  102. }, 800)
  103. })
  104. },
  105. },
  106. mounted: function() {
  107. sa.ajax('/level-one-server/TbEnterprise/getById?id=' + this.id, function(res) {
  108. this.m = res.data;
  109. if (res.data == null) {
  110. sa.alert('未能查找到 id=' + this.id + " 详细数据");
  111. }
  112. }.bind(this))
  113. }
  114. })
  115. </script>
  116. </body>
  117. </html>