Files
cai-ui/src/views/cai/userGift/index.vue
dute7liang 1e7924706e init
2024-01-22 01:45:11 +08:00

195 lines
6.3 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-form-item :label="'赠送者'+systemName+'号'" prop="fromUsercode">
<el-input
v-model="queryParams.fromUsercode"
:placeholder="'请输入'+systemName+'号'"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="赠送者手机号" prop="fromMobile">
<el-input
v-model="queryParams.fromMobile"
placeholder="请输入手机号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item :label="'接收者'+systemName+'号'" prop="toUsercode">
<el-input
v-model="queryParams.toUsercode"
:placeholder="'请输入'+systemName+'号'"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="接收者手机号" prop="toMobile">
<el-input
v-model="queryParams.toMobile"
placeholder="请输入手机号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="链路号" prop="traceId">
<el-input
v-model="queryParams.traceId"
placeholder="请输入链路号"
clearable
@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 :gutter="10" class="mb8">
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="userGiftList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="类型" align="center" prop="type">
<template v-slot="scope">
<cai-dict-tag :options="userGiftTypeList" :value="scope.row.type"/>
</template>
</el-table-column>
<el-table-column label="发生时间" align="center" prop="createTime"/>
<el-table-column :label="'赠送'+systemName+'号'" align="center" prop="fromUsercode"/>
<el-table-column label="赠送手机号" align="center" prop="fromMobile"/>
<el-table-column :label="'接受'+systemName+'号'" align="center" prop="toUsercode"/>
<el-table-column label="接受手机号" align="center" prop="toMobile"/>
<el-table-column label="礼物" align="center" prop="giftImg">
<template v-slot="scope">
<image-preview :src="scope.row.giftImg" :width="30" :height="30"/>
</template>
</el-table-column>
<el-table-column label="礼物价格" align="center" prop="giftPrice"/>
<el-table-column label="礼物数量" align="center" prop="giftCount"/>
<el-table-column label="礼物总额" align="center" prop="giftAmount"/>
<el-table-column label="链路号" align="center" prop="traceId" show-overflow-tooltip/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
<el-button
size="mini"
type="text"
icon="el-icon-info"
v-if="scope.row.traceId"
@click="handleConsumerLog(scope.row)"
>分销记录
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-info"
@click="handleInfo(scope.row)"
>详情</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<consume-log-info v-if="consumeLogInfoVisible" ref="consumeLogInfo" />
<user-gift-info v-if="userGiftInfoVisible" ref="userGiftInfo" />
</div>
</template>
<script>
import {listUserGift} from "@/api/cai/userGift";
import {userGiftTypeList} from "@/constant/statusMap";
import ConsumeLogInfo from "@/views/cai/consumeLog/consume-log-info";
import UserGiftInfo from "@/views/cai/userGift/user-gift-info";
export default {
name: "UserGift",
components: {
ConsumeLogInfo,UserGiftInfo
},
data() {
return {
systemName: process.env.VUE_APP_SYSTEM_HOME,
userGiftTypeList,
consumeLogInfoVisible: false,
userGiftInfoVisible: false,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 礼物流水表格数据
userGiftList: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
type: undefined,
toUsercode: undefined,
toMobile: undefined,
fromUsercode: undefined,
fromMobile: undefined,
traceId: undefined
},
};
},
created() {
this.getList();
},
methods: {
/** 查询礼物流水列表 */
getList() {
this.loading = true;
listUserGift(this.queryParams).then(response => {
this.userGiftList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length !== 1
this.multiple = !selection.length
},
handleConsumerLog(row) {
this.consumeLogInfoVisible = true
this.$nextTick(() => {
this.$refs.consumeLogInfo.traceIdInit(row.traceId)
})
},
handleInfo(row){
this.userGiftInfoVisible = true
this.$nextTick(() => {
this.$refs.userGiftInfo.init(row.id)
})
}
}
};
</script>