123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <template>
- <div class="app-container">
- <!-- 查询和其他操作 -->
- <div class="filter-container">
- <el-button
- size="mini" class="filter-item" type="primary" icon="el-icon-search"
- style="margin-left:10px;"
- @click="handleSearch"
- >
- 查找
- </el-button>
- </div>
- <!-- 查询结果 -->
- <div v-tableHeight>
- <el-table
- v-loading="listLoading" height="100%" element-loading-text="正在查询中。。。" :data="list"
- v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
- >
- <el-table-column align="center" width="100" label="ID" prop="id" fixed="left" />
- <el-table-column align="center" width="150" label="平台代金券ID" prop="platformVoucherId" fixed="left" show-overflow-tooltip />
- <el-table-column align="center" width="120" label="入账商家ID" prop="shopId" show-overflow-tooltip />
- <el-table-column align="center" label="来源类型" prop="sourceType">
- <template slot-scope="{ row }">
- <el-tag v-if="row.sourceType === 0" effect="plain" type="info">平台</el-tag>
- <el-tag v-else-if="row.sourceType === 1" effect="plain" type="success">商家</el-tag>
- <el-tag v-else-if="row.sourceType === 2" effect="plain" type="danger">用户</el-tag>
- <span v-else>--</span>
- </template>
- </el-table-column>
- <el-table-column align="center" width="120" label="来源ID" prop="sourceId" show-overflow-tooltip />
- <el-table-column align="center" min-width="150" label="来源订单编号" prop="orderFormid" show-overflow-tooltip />
- <el-table-column align="center" width="100" label="入账数量" prop="number" show-overflow-tooltip />
- <el-table-column align="center" label="入账类型" prop="waterType">
- <template slot-scope="{ row }">
- <el-tag v-if="row.waterType === 1" effect="plain" type="info">充值</el-tag>
- <el-tag v-else-if="row.waterType === 2" effect="plain" type="success">活动</el-tag>
- <el-tag v-else-if="row.waterType === 3" effect="plain" type="danger">用户兑换</el-tag>
- <el-tag v-else-if="row.waterType === 4" effect="plain" type="warning">转入</el-tag>
- <span v-else>--</span>
- </template>
- </el-table-column>
- <el-table-column align="center" width="150" label="有效时间" prop="effectiveTime" show-overflow-tooltip />
- <el-table-column align="center" width="150" label="创建时间" prop="createTime" />
- <el-table-column align="center" label="操作" width="300" fixed="right" class-name="small-padding fixed-width">
- <template slot-scope="{ row }">
- <el-button type="warning" size="mini" @click="handleDetail(row)">
- 详情
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div>
- <el-pagination
- :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="listQuery.pageSize"
- layout="total, sizes, prev, pager, next, jumper" :total="total"
- @size-change="(val) => ((listQuery.pageSize = val) && getList())"
- @current-change="(val) => ((listQuery.page = val) && getList())"
- />
- </div>
- <!-- 查看详情 -->
- <DetailModal ref="DetailModal" />
- </div>
- </template>
- <script>
- import DetailModal from './components/DetailModal'
- import { getEntryRecordShopVoucher } from '@/api/voucherManagement/voucherAccounting'
- export default {
- name: 'VoucherAccounting',
- components: {
- DetailModal
- },
- data() {
- return {
- list: [],
- total: 0,
- listLoading: true,
- listQuery: {
- page: 1,
- pageSize: 20
- }
- }
- },
- created() {
- this.getList()
- },
- methods: {
- async getList() {
- this.listLoading = true
- try {
- const res = await getEntryRecordShopVoucher(this.listQuery)
- this.list = res.data.list
- this.total = res.data.total
- } finally {
- this.listLoading = false
- }
- },
- handleSearch() {
- this.listQuery.page = 1
- this.getList()
- },
- handleDetail(row) {
- this.$refs.DetailModal && this.$refs.DetailModal.handleOpen(row)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .app-container {
- padding: 20px;
- display: flex;
- flex-direction: column;
- .filter-container {
- .filter-item {
- display: inline-block;
- vertical-align: middle;
- margin-bottom: 10px;
- }
- }
- .small-padding {
- .cell {
- padding-left: 5px;
- padding-right: 5px;
- }
- }
- .fixed-width {
- .el-button--mini {
- padding: 7px 10px;
- }
- }
- }
- </style>
|