index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <div class="app-container">
  3. <!-- 查询和其他操作 -->
  4. <div class="filter-container">
  5. <el-input v-model="listQuery.search" clearable size="mini" class="filter-item" style="width: 200px" placeholder="联盟卡名称/商家名称" />
  6. <el-select closeable v-model="listQuery.state" clearable size="mini" class="filter-item" style="width: 200px; margin-left: 10px" placeholder="请选择审核状态">
  7. <el-option label="审核中" :value="1" />
  8. <el-option label="已通过" :value="2" />
  9. <el-option label="未通过" :value="3" />
  10. </el-select>
  11. <el-button size="mini" class="filter-item" type="primary" icon="el-icon-search" style="margin-left: 10px" @click="handleSearch">查找</el-button>
  12. <el-button size="mini" class="filter-item" type="info" icon="el-icon-search" style="margin-left: 10px" @click="handleReset">重置</el-button>
  13. <br />
  14. </div>
  15. <!-- 查询结果 -->
  16. <div v-tableHeight>
  17. <el-table v-loading="listLoading" height="100%" element-loading-text="正在查询中。。。" :data="list" v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }">
  18. <el-table-column label="#" type="index" width="80" align="center" />
  19. <el-table-column prop="shopId" label="商家Id" width="120" align="center" />
  20. <el-table-column prop="shopName" label="商家名称" width="150" align="center" />
  21. <el-table-column prop="name" label="联盟卡名称" width="150" align="center" />
  22. <el-table-column prop="state" label="状态" width="120" align="center">
  23. <template slot-scope="scope">
  24. <el-tag :type="getStateTagType(scope.row.state)" size="small">
  25. {{ scope.row.state | stateText }}
  26. </el-tag>
  27. </template>
  28. </el-table-column>
  29. <el-table-column prop="isIssuance" label="是否发行" width="120" align="center">
  30. <template slot-scope="scope">
  31. <el-tag :type="scope.row.isIssuance == '1' ? 'success' : 'info'" size="small">
  32. {{ scope.row.isIssuance == '1' ? '发行' : '停售' }}
  33. </el-tag>
  34. </template>
  35. </el-table-column>
  36. <el-table-column prop="coverUrl" label="联盟卡封面" width="180" align="center">
  37. <template slot-scope="scope">
  38. <el-image :src="scope.row.coverUrl" style="width: 50px"></el-image>
  39. </template>
  40. </el-table-column>
  41. <el-table-column prop="purchasePrice" label="联盟卡购买价格" width="150" align="center">
  42. <template slot-scope="scope">
  43. <span style="color: #f40">¥{{ scope.row.purchasePrice }}</span>
  44. </template>
  45. </el-table-column>
  46. <el-table-column prop="deductionPrice" label="联盟卡抵扣价格" width="150" align="center">
  47. <template slot-scope="scope">
  48. <span style="color: #f40">¥{{ scope.row.deductionPrice }}</span>
  49. </template>
  50. </el-table-column>
  51. <el-table-column prop="receiptCount" label="发行张数" width="120" align="center">
  52. <template slot-scope="scope">
  53. <span>{{ scope.row.receiptCount }}张</span>
  54. </template>
  55. </el-table-column>
  56. <el-table-column prop="expirationTime" label="到期时间" width="180" align="center" />
  57. <el-table-column prop="headOfCommission" label="团长佣金" width="120" align="center">
  58. <template slot-scope="scope">
  59. <span style="color: #f40">¥{{ scope.row.headOfCommission || '--' }}</span>
  60. </template>
  61. </el-table-column>
  62. <el-table-column prop="partnerCommission" label="合伙人佣金" width="120" align="center">
  63. <template slot-scope="scope">
  64. <span style="color: #f40">¥{{ scope.row.partnerCommission || '--' }}</span>
  65. </template>
  66. </el-table-column>
  67. <el-table-column show-overflow-tooltip prop="statement" label="权益信息" width="150" align="center" />
  68. <el-table-column show-overflow-tooltip prop="useInstructions" label="使用说明" width="150" align="center" />
  69. <el-table-column prop="createTime" label="创建时间" width="180" align="center" />
  70. <el-table-column align="center" label="操作" width="280" fixed="right" class-name="small-padding fixed-width">
  71. <template slot-scope="{ row }">
  72. <el-button @click="$refs.checkDialogRef && $refs.checkDialogRef.handleOpen(row)" :disabled="row.state !== 1" type="warning" size="mini">审核</el-button>
  73. <el-button type="primary" size="mini" @click="$refs.detailDialogRef && $refs.detailDialogRef.handleOpen(row)">详情</el-button>
  74. </template>
  75. </el-table-column>
  76. </el-table>
  77. </div>
  78. <div>
  79. <el-pagination
  80. :current-page="listQuery.page"
  81. :page-sizes="[10, 20, 50, 100]"
  82. :page-size="listQuery.pageSize"
  83. layout="total, sizes, prev, pager, next, jumper"
  84. :total="total"
  85. @size-change="(val) => (listQuery.pageSize = val) && getList()"
  86. @current-change="(val) => (listQuery.page = val) && getList()"
  87. />
  88. </div>
  89. <!-- 查看详情 -->
  90. <DetailDialog ref="detailDialogRef"></DetailDialog>
  91. <!-- 审核 -->
  92. <CheckDialog @success="getList" ref="checkDialogRef"></CheckDialog>
  93. </div>
  94. </template>
  95. <script>
  96. import { getAllianceCardListApi } from '@/api/business'
  97. import DetailDialog from './components/DetailDialog'
  98. import CheckDialog from './components/CheckDialog'
  99. export default {
  100. name: 'allianceCardList',
  101. components: { DetailDialog, CheckDialog },
  102. data() {
  103. // 这里存放数据
  104. return {
  105. list: [],
  106. total: 0,
  107. listLoading: true,
  108. listQuery: {
  109. page: 1,
  110. pageSize: 20,
  111. search: '',
  112. state: ''
  113. },
  114. checkLoading: false
  115. }
  116. },
  117. filters: {
  118. stateText(value) {
  119. return { 1: '审核中', 2: '通过', 3: '不通过' }[value] || '未知状态'
  120. }
  121. },
  122. created() {
  123. this.getList()
  124. },
  125. methods: {
  126. async getList() {
  127. this.listLoading = true
  128. try {
  129. const res = await getAllianceCardListApi(this.listQuery)
  130. this.list = res.data.list
  131. this.total = res.data.total
  132. } finally {
  133. this.listLoading = false
  134. }
  135. },
  136. handleSearch() {
  137. this.listQuery.page = 1
  138. this.getList()
  139. },
  140. getStateTagType(state) {
  141. switch (state + '') {
  142. case '1':
  143. return 'warning'
  144. case '2':
  145. return 'success'
  146. case '3':
  147. return 'danger'
  148. default:
  149. return ''
  150. }
  151. },
  152. handleReset(){
  153. this.listQuery.search = ''
  154. this.listQuery.state = ''
  155. this.handleSearch()
  156. }
  157. }
  158. }
  159. </script>
  160. <style lang="scss" scoped>
  161. .app-container {
  162. padding: 20px;
  163. display: flex;
  164. flex-direction: column;
  165. .filter-container {
  166. .filter-item {
  167. display: inline-block;
  168. vertical-align: middle;
  169. margin-bottom: 10px;
  170. }
  171. }
  172. .small-padding {
  173. .cell {
  174. padding-left: 5px;
  175. padding-right: 5px;
  176. }
  177. }
  178. .fixed-width {
  179. .el-button--mini {
  180. padding: 7px 10px;
  181. }
  182. }
  183. }
  184. </style>