Buyers.vue 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <div class="join-shop-list-container">
  3. <!-- 查询结果 -->
  4. <el-table v-loading="listLoading" element-loading-text="正在查询中..." :data="list" v-bind="{ stripe: true, size: 'small', border: true, highlightCurrentRow: true }">
  5. <el-table-column prop="allianceCardId" label="联盟卡ID" width="90" align="center" />
  6. <el-table-column prop="buyerUserId" label="购买者会员ID" width="100" align="center" />
  7. <el-table-column prop="buyerUserIdPromoters" label="推广者会员ID" width="120" align="center" />
  8. <el-table-column prop="buyerUserName" label="会员名称" width="120" align="center" />
  9. <el-table-column prop="buyerUserLogo" label="会员头像" width="120" align="center">
  10. <template slot-scope="scope">
  11. <el-image :preview-src-list="[scope.row.buyerUserLogo]" v-if="scope.row.buyerUserLogo" :src="scope.row.buyerUserLogo" fit="fill" style="width: 40px; height: 40px"></el-image>
  12. <span v-else>--</span>
  13. </template>
  14. </el-table-column>
  15. <el-table-column prop="state" label="支付状态" width="120" align="center">
  16. <template slot-scope="scope">
  17. <el-tag v-if="scope.row.state === 1" size="mini" type="info">未支付</el-tag>
  18. <el-tag v-if="scope.row.state === 2" size="mini" type="success">已支付</el-tag>
  19. </template>
  20. </el-table-column>
  21. <el-table-column prop="createTime" label="购买时间" align="center" />
  22. <el-table-column align="center" label="操作" width="120" fixed="right" class-name="small-padding fixed-width">
  23. <template slot-scope="{ row }">
  24. <el-button size="mini" @click="$refs.consumptionDialogRef && $refs.consumptionDialogRef.handleOpen(row.allianceCardId, row.buyerUserId)">查看消费记录</el-button>
  25. </template>
  26. </el-table-column>
  27. </el-table>
  28. <div style="margin-top: 10px">
  29. <el-pagination
  30. :current-page="listQuery.page"
  31. :page-sizes="[10, 20, 50, 100]"
  32. :page-size="listQuery.pageSize"
  33. layout="total, sizes, prev, pager, next, -> ,jumper"
  34. :total="total"
  35. @size-change="(val) => (listQuery.pageSize = val) && getList()"
  36. @current-change="(val) => (listQuery.page = val) && getList()"
  37. />
  38. </div>
  39. <!-- 查看消费记录 -->
  40. <ConsumptionDialog ref="consumptionDialogRef"></ConsumptionDialog>
  41. </div>
  42. </template>
  43. <script>
  44. import { getBuyerPurchaseByByIdApi } from '@/api/business'
  45. import ConsumptionDialog from './ConsumptionDialog.vue'
  46. export default {
  47. components: { ConsumptionDialog },
  48. props: {
  49. cardId: { type: [Number, String], required: true }
  50. },
  51. data() {
  52. return {
  53. list: [],
  54. total: 0,
  55. listLoading: false,
  56. listQuery: {
  57. allianceCardId: undefined,
  58. page: 1,
  59. pageSize: 20
  60. }
  61. }
  62. },
  63. watch: {
  64. cardId: {
  65. handler(value) {
  66. this.listQuery.allianceCardId = value
  67. value && this.getList()
  68. },
  69. immediate: true
  70. }
  71. },
  72. methods: {
  73. // 获取商家列表
  74. async getList() {
  75. try {
  76. this.listLoading = true
  77. const res = await getBuyerPurchaseByByIdApi(this.listQuery)
  78. this.list = res.data.list
  79. this.total = res.data.total
  80. this.listLoading = false
  81. } catch (error) {
  82. this.listLoading = false
  83. }
  84. }
  85. }
  86. }
  87. </script>