| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <template>
- <div class="profit-share-receiver">
- <!-- 搜索条件 -->
- <el-card class="search-card">
- <el-form :model="searchForm" label-width="100px" inline>
- <el-form-item label="订单号">
- <el-input
- v-model="searchForm.order_no"
- placeholder="请输入订单号"
- clearable
- @keyup.enter="handleSearch"
- />
- </el-form-item>
- <el-form-item label="状态">
- <el-select v-model="searchForm.status" placeholder="请选择状态" clearable>
- <el-option label="全部" value="" />
- <el-option label="待处理" value="pending" />
- <el-option label="已通过" value="approved" />
- <el-option label="已拒绝" value="rejected" />
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="handleSearch">查询</el-button>
- <el-button @click="handleReset">重置</el-button>
- </el-form-item>
- </el-form>
- </el-card>
- <!-- 列表数据 -->
- <el-card class="table-card">
- <template #header>
- <div class="table-header">
- <div class="header-title">分账接收方列表</div>
- </div>
- </template>
-
- <el-table
- v-loading="loading"
- :data="tableData"
- border
- stripe
- >
- <el-table-column prop="id" label="ID" width="80" />
- <el-table-column prop="order_no" label="订单号" min-width="180" />
- <el-table-column prop="receiver_name" label="接收方名称" min-width="150" />
- <el-table-column prop="receiver_account" label="接收方账户" min-width="180" />
- <el-table-column prop="amount" label="分账金额" width="120">
- <template #default="{ row }">
- ¥{{ row.amount }}
- </template>
- </el-table-column>
- <el-table-column prop="status" label="状态" width="100">
- <template #default="{ row }">
- <el-tag v-if="row.status === 'pending'" type="warning">待处理</el-tag>
- <el-tag v-else-if="row.status === 'approved'" type="success">已通过</el-tag>
- <el-tag v-else-if="row.status === 'rejected'" type="danger">已拒绝</el-tag>
- <el-tag v-else>{{ row.status }}</el-tag>
- </template>
- </el-table-column>
- <el-table-column prop="create_time" label="申请时间" width="180" />
- <el-table-column label="操作" width="150" fixed="right">
- <template #default="{ row }">
- <el-button type="primary" size="small" @click="handleView(row)">详情</el-button>
- </template>
- </el-table-column>
- </el-table>
-
- <!-- 分页 -->
- <el-pagination
- v-model:current-page="pagination.page"
- v-model:page-size="pagination.limit"
- :total="pagination.total"
- :page-sizes="[10, 20, 50, 100]"
- layout="total, sizes, prev, pager, next, jumper"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- class="pagination"
- />
- </el-card>
- </div>
- </template>
- <script>
- export default {
- name: 'ProfitShareReceiver',
- props: {
- axiosInstance: {
- type: Object,
- default: null
- }
- },
- data() {
- return {
- loading: false,
- searchForm: {
- order_no: '',
- status: ''
- },
- tableData: [],
- pagination: {
- page: 1,
- limit: 10,
- total: 0
- }
- }
- },
- async created() {
- this.fetchData()
- },
- methods: {
- // 获取列表数据
- async fetchData() {
- // 优先使用通过props传递的axios实例
- if (!this.axiosInstance) {
- this.$message.error('无法获取请求实例')
- return
- }
-
- this.loading = true
- try {
- const params = {
- page: this.pagination.page,
- limit: this.pagination.limit,
- order_no: this.searchForm.order_no,
- status: this.searchForm.status
- }
-
- const res = await this.axiosInstance.get('/lakala/profit_share_receiver', { params })
- if (res.code === 200) {
- this.tableData = res.data.list
- this.pagination.total = res.data.total
- } else {
- this.$message.error(res.message || '获取数据失败')
- }
- } catch (error) {
- console.error('获取分账接收方列表失败:', error)
- this.$message.error('获取数据失败: ' + (error.message || '未知错误'))
- } finally {
- this.loading = false
- }
- },
-
- // 查询
- handleSearch() {
- this.pagination.page = 1
- this.fetchData()
- },
-
- // 重置
- handleReset() {
- this.searchForm = {
- order_no: '',
- status: ''
- }
- this.pagination.page = 1
- this.fetchData()
- },
-
- // 查看详情
- handleView(row) {
- this.$message.info('查看详情功能待实现')
- },
-
- // 分页相关
- handleSizeChange(val) {
- this.pagination.limit = val
- this.pagination.page = 1
- this.fetchData()
- },
-
- handleCurrentChange(val) {
- this.pagination.page = val
- this.fetchData()
- }
- }
- }
- </script>
- <style scoped>
- .profit-share-receiver {
- padding: 20px;
- }
- .search-card {
- margin-bottom: 20px;
- }
- .table-card {
- margin-bottom: 20px;
- }
- .table-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .header-title {
- font-size: 16px;
- font-weight: bold;
- }
- .pagination {
- margin-top: 20px;
- text-align: right;
- }
- </style>
|