DetailModal.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <template>
  2. <el-dialog :visible.sync="visible" v-bind="modalOptions">
  3. <div>
  4. <el-descriptions title="" :column="2" border>
  5. <el-descriptions-item label="手机号码:">
  6. {{ withdrawalInfo.phone }}
  7. </el-descriptions-item>
  8. <el-descriptions-item label="银行名称:">
  9. {{ withdrawalInfo.bankName }}
  10. </el-descriptions-item>
  11. <el-descriptions-item label="银行卡号:">
  12. {{ withdrawalInfo.bankCard }}
  13. </el-descriptions-item>
  14. <el-descriptions-item label="收款人姓名:">
  15. {{ withdrawalInfo.name }}
  16. </el-descriptions-item>
  17. <el-descriptions-item label="提现金额:">
  18. {{ withdrawalInfo.withdrawalMoney }}
  19. </el-descriptions-item>
  20. <el-descriptions-item label="实际到账:">
  21. {{ withdrawalInfo.actualReceipt }}
  22. </el-descriptions-item>
  23. <el-descriptions-item label="申请时间:">
  24. {{ withdrawalInfo.applyTime }}
  25. </el-descriptions-item>
  26. <el-descriptions-item label="处理时间:">
  27. {{ withdrawalInfo.handleTime }}
  28. </el-descriptions-item>
  29. <el-descriptions-item label="拒绝打款理由:">
  30. {{ withdrawalInfo.rejectReason || '--' }}
  31. </el-descriptions-item>
  32. <el-descriptions-item label="账户可提现金额:">
  33. {{ watherInfo.price }}
  34. </el-descriptions-item>
  35. <el-descriptions-item label="账户总金额:">
  36. {{ watherInfo.totalPrice }}
  37. </el-descriptions-item>
  38. <el-descriptions-item label="提现中:">
  39. {{ watherInfo.pendingWithdrawal }}
  40. </el-descriptions-item>
  41. <el-descriptions-item label="已提现:">
  42. {{ watherInfo.alreadyPrice }}
  43. </el-descriptions-item>
  44. </el-descriptions>
  45. </div>
  46. <el-tabs value="relatedSettlement">
  47. <el-tab-pane label="金流水记录列表" name="relatedSettlement">
  48. <div v-if="recordList && recordList.length" style="margin-top: 32px;">
  49. <el-table
  50. v-loading="!recordList.length" height="60vh" element-loading-text="暂无金流水记录数据" :data="recordList"
  51. v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
  52. >
  53. <!-- <el-table-column align="center" min-width="80" prop="price" label="支付金额" show-overflow-tooltip></el-table-column>
  54. <el-table-column align="center" width="150" prop="paymentTime" label="支付时间" show-overflow-tooltip />
  55. <el-table-column prop="customerName" label="支付名称" width="120" />
  56. <el-table-column prop="customerPhone" label="支付电话" />
  57. <el-table-column prop="transactionId" label="通联流水号" />
  58. <el-table-column label="来源类型">
  59. <template slot-scope="{ row }">
  60. <span v-if="row.type == 1">关系链</span>
  61. <span v-if="row.type == 2">商城</span>
  62. <span v-if="row.type == 3">本地</span>
  63. <span v-if="row.type == 4">服务</span>
  64. </template>
  65. </el-table-column>
  66. <el-table-column label="状态">
  67. <template slot-scope="{ row }">
  68. <span v-if="row.isTo == 0">订单</span>
  69. <span v-if="row.isTo == 1">确认收货</span>
  70. </template>
  71. </el-table-column>
  72. <el-table-column prop="proportion" label="佣金比例" />
  73. <el-table-column prop="amount" label="分配的佣金" />
  74. <el-table-column prop="totalAmount" label="佣金总金额" /> -->
  75. <el-table-column align="center" min-width="80" prop="id" label="ID" show-overflow-tooltip></el-table-column>
  76. <el-table-column align="center" min-width="80" prop="buyerUserId" label="入账用户Id" show-overflow-tooltip></el-table-column>
  77. <el-table-column align="center" label="来源类型" prop="sourceType">
  78. <template slot-scope="{ row }">
  79. <el-tag v-if="row.sourceType === 1" effect="plain" type="info">平台</el-tag>
  80. <el-tag v-else-if="row.sourceType === 2" effect="plain" type="success">商圈</el-tag>
  81. <el-tag v-else-if="row.sourceType === 3" effect="plain" type="success">用户</el-tag>
  82. <el-tag v-else-if="row.sourceType === 4" effect="plain" type="success">社区</el-tag>
  83. <el-tag v-else-if="row.sourceType === 5" effect="plain" type="success">商城</el-tag>
  84. <span v-else>--</span>
  85. </template>
  86. </el-table-column>
  87. <el-table-column align="center" min-width="80" prop="sourceId" label="来源Id" show-overflow-tooltip></el-table-column>
  88. <el-table-column align="center" width="150" prop="orderFormid" label="来源订单编号" show-overflow-tooltip />
  89. <el-table-column align="center" width="150" prop="transactionId" label="支付单号" show-overflow-tooltip />
  90. <el-table-column align="center" width="150" prop="commissionNumber" label="入账数量" show-overflow-tooltip />
  91. <el-table-column align="center" label="活动配置类型" prop="waterType">
  92. <template slot-scope="{ row }">
  93. <el-tag v-if="row.waterType === -1" effect="plain" type="info">退款退回</el-tag>
  94. <el-tag v-else-if="row.waterType === 1" effect="plain" type="success">升级活动</el-tag>
  95. <el-tag v-else-if="row.waterType === 2" effect="plain" type="success">分佣活动</el-tag>
  96. <el-tag v-else-if="row.waterType === 3" effect="plain" type="success">社区活动</el-tag>
  97. <el-tag v-else-if="row.waterType === 4" effect="plain" type="success">赠券活动</el-tag>
  98. <el-tag v-else-if="row.waterType === 5" effect="plain" type="success">赠金活动</el-tag>
  99. <el-tag v-else-if="row.waterType === 6" effect="plain" type="success">商圈订单</el-tag>
  100. <el-tag v-else-if="row.waterType === 7" effect="plain" type="success">爆款家具</el-tag>
  101. <el-tag v-else-if="row.waterType === 8" effect="plain" type="success">社区订单</el-tag>
  102. <el-tag v-else-if="row.waterType === 9" effect="plain" type="success">用户代金券转赠</el-tag>
  103. <el-tag v-else-if="row.waterType === 0" effect="plain" type="success">商家代金券转赠</el-tag>
  104. <el-tag v-else-if="row.waterType === 11" effect="plain" type="success">同城联盟卡</el-tag>
  105. <span v-else>--</span>
  106. </template>
  107. </el-table-column>
  108. <el-table-column align="center" width="150" prop="effectiveTime" label="有效时间" show-overflow-tooltip />
  109. <el-table-column align="center" min-width="80" prop="isProportion" label="佣金比例" show-overflow-tooltip></el-table-column>
  110. <el-table-column align="center" min-width="120" prop="commissionTotal" label="佣金总额" show-overflow-tooltip></el-table-column>
  111. <el-table-column align="center" label="受益用户类型" prop="buyerUserType">
  112. <template slot-scope="{ row }">
  113. <el-tag v-if="row.buyerUserType == 100" effect="plain" type="info">代理商</el-tag>
  114. <el-tag v-else-if="row.buyerUserType == 200" effect="plain" type="success">加盟商</el-tag>
  115. <el-tag v-else-if="row.buyerUserType == 300" effect="plain" type="success">小区店</el-tag>
  116. <el-tag v-else-if="row.buyerUserType == 400" effect="plain" type="success">本系统</el-tag>
  117. <span v-else>{{ row.buyerUserType }}</span>
  118. </template>
  119. </el-table-column>
  120. <el-table-column align="center" min-width="120" prop="withdrawalId" label="提现Id" show-overflow-tooltip></el-table-column>
  121. <el-table-column align="center" width="150" prop="createTime" label="创建时间" show-overflow-tooltip />
  122. </el-table>
  123. </div>
  124. <div v-else style="font-size: 16px;font-weight: bold;">无佣金流水记录数据</div>
  125. </el-tab-pane>
  126. </el-tabs>
  127. </el-dialog>
  128. </template>
  129. <script>
  130. import { applicationGetById, getUserWater, getCommissionAll } from '@/api/application'
  131. export default {
  132. name: 'DetailModal',
  133. components: {
  134. },
  135. data() {
  136. return {
  137. modalOptions: {
  138. closeOnClickModal: false,
  139. width: '1220px',
  140. title: '查看提现详情'
  141. },
  142. visible: false,
  143. formData: {
  144. withdrawalId: ''
  145. },
  146. withdrawalInfo: {
  147. actualReceipt: '',
  148. applyTime: '',
  149. bankCard: '',
  150. bankName: '',
  151. batchId: '',
  152. buyerUserId: '',
  153. cost: '',
  154. handleTime: '',
  155. isConfirm: '',
  156. name: '',
  157. orderSn: '',
  158. phone: '',
  159. rejectReason: '',
  160. state: '',
  161. withdrawalId: '',
  162. withdrawalMoney: ''
  163. },
  164. watherInfo: {},
  165. recordQuery: {
  166. // page: 1,
  167. // pageSize: 20,
  168. // acquirerId: '',
  169. withdrawalId: ''
  170. },
  171. recordList: []
  172. }
  173. },
  174. methods: {
  175. handleClose() {
  176. this.visible = false
  177. },
  178. async initList() {
  179. const res1 = await applicationGetById({ withdrawalId: this.formData.withdrawalId })
  180. this.withdrawalInfo = res1.data
  181. const res2 = await getUserWater({ userId: this.withdrawalInfo.buyerUserId })
  182. this.watherInfo = res2.data
  183. const res3 = await getCommissionAll({ ...this.recordQuery, withdrawalId: this.withdrawalInfo.withdrawalId })
  184. this.recordList = res3.data
  185. },
  186. handleOpen(params = {}) {
  187. this.formData = Object.assign(this.$options.data().formData, params)
  188. this.initList()
  189. if (params.withdrawalId) {
  190. // this.getInfo(params.withdrawalId)
  191. }
  192. this.visible = true
  193. },
  194. async getInfo(id) {
  195. const loading = this.$loading({ text: '加载中' })
  196. try {
  197. const res = await xxx({ withdrawalId: id })
  198. this.formData = Object.assign(this.$options.data().formData, res.data, {
  199. withdrawalId: res.data.withdrawalId || ''
  200. })
  201. } finally {
  202. loading.close()
  203. }
  204. }
  205. }
  206. }
  207. </script>
  208. <style lang="scss" scoped>
  209. .small-padding {
  210. .cell {
  211. padding-left: 5px;
  212. padding-right: 5px;
  213. }
  214. }
  215. .fixed-width {
  216. .el-button--mini {
  217. padding: 7px 10px;
  218. }
  219. }
  220. </style>