Browse Source

调整用户账单页面

master
xuwenbo 4 years ago
parent
commit
f0d04227ab
  1. 81
      src/views/shop/user/bill.vue

81
src/views/shop/user/bill.vue

@ -4,6 +4,54 @@
<div class="head-container"> <div class="head-container">
<!-- 搜索 --> <!-- 搜索 -->
<el-input v-model="nickname" clearable placeholder="输入用户昵称" style="width: 200px;" class="filter-item" @keyup.enter.native="toQuery" /> <el-input v-model="nickname" clearable placeholder="输入用户昵称" style="width: 200px;" class="filter-item" @keyup.enter.native="toQuery" />
<el-select v-model="category" clearable placeholder="明细种类" class="filter-item" style="width: 130px">
<el-option
v-for="item in categoryOptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<el-select v-model="type" clearable placeholder="明细类型" class="filter-item" style="width: 130px">
<el-option
v-for="item in typeOptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<el-select v-model="inOuttype" clearable placeholder="进出账" class="filter-item" style="width: 130px">
<el-option
v-for="item in inOutOptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<el-select v-model="shibai" clearable placeholder="账单标题" class="filter-item" style="width: 130px">
<el-option
v-for="item in shibais"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<el-date-picker
class="filter-item"
v-model="startTime"
type="date"
placeholder="开始日期"
value-format="yyyy-MM-dd"
style="width: 180px">
</el-date-picker>
<el-date-picker
class="filter-item"
v-model="endTime"
type="date"
placeholder="结束日期"
value-format="yyyy-MM-dd"
style="width: 180px">
</el-date-picker>
<el-button class="filter-item" size="mini" type="success" icon="el-icon-search" @click="toQuery">搜索</el-button> <el-button class="filter-item" size="mini" type="success" icon="el-icon-search" @click="toQuery">搜索</el-button>
<!-- 新增 --> <!-- 新增 -->
<el-button <el-button
@ -39,7 +87,7 @@
</el-table-column> </el-table-column>
<el-table-column :show-overflow-tooltip="true" prop="addTime" label="创建日期"> <el-table-column :show-overflow-tooltip="true" prop="addTime" label="创建日期">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.createTime }}</span> <span>{{ formatTime(scope.row.addTime) }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -58,16 +106,17 @@
<script> <script>
import checkPermission from '@/utils/permission' import checkPermission from '@/utils/permission'
import initData from '@/mixins/crud' import initData from '@/mixins/crud'
import { del, onStatus } from '@/api/yxUser' import {del, onStatus} from '@/api/yxUser'
import eForm from './form' import eForm from './form'
import pForm from './formp' import pForm from './formp'
import { formatTime } from '@/utils/index' import {formatTime} from '@/utils/index'
export default { export default {
components: { eForm, pForm }, components: { eForm, pForm },
mixins: [initData], mixins: [initData],
data() { data() {
return { return {
delLoading: false, nickname: '', category: '', type: '', delLoading: false, nickname: '', category: '', type: '',inOuttype:'',startTime: '',endTime: '',shibai: '',
queryTypeOptions: [ queryTypeOptions: [
{ key: 'nickname', display_name: '用户昵称' }, { key: 'nickname', display_name: '用户昵称' },
{ key: 'phone', display_name: '手机号码' } { key: 'phone', display_name: '手机号码' }
@ -79,7 +128,20 @@ export default {
typeOptions: [ typeOptions: [
{ value: 'brokerage', label: '佣金' }, { value: 'brokerage', label: '佣金' },
{ value: 'sign', label: '签到' } { value: 'sign', label: '签到' }
] ],
inOutOptions: [
{ value: 0, label: '支出' },
{ value: 1, label: '获得' }
],
shibais: [
{ value: "获得推广佣金", label: '获得推广佣金' },
{ value: "系统增加余额", label: '增加余额' },
{ value: "系统减少余额", label: '减少余额' },
{ value: "佣金提现", label: '佣金提现' },
{ value: "佣金提现", label: '佣金提现' },
{ value: "购买商品", label: '购买商品' },
{ value: "商品退款", label: '商品退款' },
],
} }
}, },
created() { created() {
@ -117,12 +179,17 @@ export default {
page: this.page, page: this.page,
size: this.size, size: this.size,
nickname: this.nickname, nickname: this.nickname,
category: 'now_money', category: this.category,
type: '' type: this.type,
pm : this.inOuttype,
startTime: this.startTime,
endTime: this.endTime,
title: this.shibai
} }
const query = this.query const query = this.query
const type = query.type const type = query.type
const value = query.value const value = query.value
const pm = query.inOuttype
if (type && value) { this.params[type] = value } if (type && value) { this.params[type] = value }
return true return true
}, },

Loading…
Cancel
Save