57 lines
2.3 KiB
Vue
57 lines
2.3 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form v-show="showSearch" ref="queryForm" :model="queryParams" size="small" :inline="true">
|
|
<el-form-item label="用户ID" prop="userId">
|
|
<el-input v-model="queryParams.userId" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item label="类型" prop="type">
|
|
<el-input v-model="queryParams.type" clearable placeholder="类型码" @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-row class="mb8"><right-toolbar :show-search.sync="showSearch" @queryTable="getList" /></el-row>
|
|
<el-table v-loading="loading" :data="list">
|
|
<el-table-column label="ID" prop="id" width="80" />
|
|
<el-table-column label="用户ID" prop="userId" width="90" />
|
|
<el-table-column label="账号" prop="nickname" min-width="100" />
|
|
<el-table-column label="类型" prop="type" width="80" />
|
|
<el-table-column label="变更" prop="changeAmount" width="100" />
|
|
<el-table-column label="余额" prop="resultAmount" width="100" />
|
|
<el-table-column label="时间" width="160"><template slot-scope="s">{{ parseTime(s.row.createTime) }}</template></el-table-column>
|
|
</el-table>
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listSubteamUserBalance } from '@/api/subteam'
|
|
export default {
|
|
name: 'SubteamUserBalance',
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
showSearch: true,
|
|
list: [],
|
|
total: 0,
|
|
queryParams: { pageNum: 1, pageSize: 10, userId: undefined, type: undefined }
|
|
}
|
|
},
|
|
created() { this.getList() },
|
|
methods: {
|
|
getList() {
|
|
this.loading = true
|
|
listSubteamUserBalance(this.queryParams).then(res => {
|
|
this.list = res.rows
|
|
this.total = res.total
|
|
this.loading = false
|
|
})
|
|
},
|
|
handleQuery() { this.queryParams.pageNum = 1; this.getList() },
|
|
resetQuery() { this.resetForm('queryForm'); this.handleQuery() }
|
|
}
|
|
}
|
|
</script>
|