275 lines
7.2 KiB
Vue
275 lines
7.2 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<!-- 列表 -->
|
|
<!-- 搜索 -->
|
|
<page-search
|
|
ref="searchRef"
|
|
:search-config="searchConfig"
|
|
@query-click="searchQueryClick"
|
|
@reset-click="handleResetClick"
|
|
/>
|
|
<div class="head-container">
|
|
<div class="card">
|
|
<!-- <div class="title">统计数据</div> -->
|
|
<div class="row">
|
|
<div class="item">
|
|
<div class="t">用户数量</div>
|
|
<div class="n">{{ summary.userTotal || 0 }}</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="t">用户总余额</div>
|
|
<div class="n">{{ summary.balanceTotal || 0 }}</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="t">充值金额</div>
|
|
<div class="n">{{ summary.chargeTotal || 0 }}</div>
|
|
</div>
|
|
<div class="item u-flex u-col-center">
|
|
<el-button type="success" @click="toCharge()">充值记录</el-button>
|
|
<!-- <el-button type="danger" @click="toCharge('cost')">消费记录</el-button> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- 列表 -->
|
|
<page-content
|
|
ref="contentRef"
|
|
:content-config="contentConfig"
|
|
@add-click="handleAddClick"
|
|
@edit-click="handleEditClick"
|
|
@export-click="handleExportClick"
|
|
@search-click="handleSearchClick"
|
|
@toolbar-click="handleToolbarClick"
|
|
@operat-click="handleOperatClick"
|
|
@filter-change="handleFilterChange"
|
|
>
|
|
<template #status="scope">
|
|
<el-tag :type="scope.row[scope.prop] == 1 ? 'success' : 'info'">
|
|
{{ scope.row[scope.prop] == 1 ? "启用" : "禁用" }}
|
|
</el-tag>
|
|
</template>
|
|
<template #options="scope">
|
|
{{ returnOptionsLabel(scope.prop, scope.row[scope.prop]) }}
|
|
</template>
|
|
<template #bol="scope">
|
|
{{ scope.row[scope.prop] ? "是" : "否" }}
|
|
</template>
|
|
<template #gender="scope">
|
|
<el-tag
|
|
:type="
|
|
scope.row[scope.prop] == null
|
|
? 'info'
|
|
: scope.row[scope.prop] == 1
|
|
? 'success'
|
|
: 'warning'
|
|
"
|
|
>
|
|
{{ scope.row[scope.prop] === null ? "未知" : scope.row[scope.prop] == 1 ? "男" : "女" }}
|
|
</el-tag>
|
|
</template>
|
|
<template #user="scope">
|
|
<div class="flex align-center">
|
|
<el-avatar :src="scope.row.headImg" />
|
|
<span class="u-line-1 u-m-l-6" style="max-width: 90px">
|
|
{{ scope.row.nickName }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<template #link="scope">
|
|
<el-link>{{ scope.row[scope.prop] }}</el-link>
|
|
</template>
|
|
<template #mobile="scope">
|
|
<el-text>{{ scope.row[scope.prop] }}</el-text>
|
|
<copy-button
|
|
v-if="scope.row[scope.prop]"
|
|
:text="scope.row[scope.prop]"
|
|
style="margin-left: 2px"
|
|
/>
|
|
</template>
|
|
|
|
<template #coupon="scope">
|
|
<div>
|
|
1张
|
|
<el-link :underline="false" type="primary" @click="handleViewCoupon(scope.row)">
|
|
查看详情
|
|
</el-link>
|
|
</div>
|
|
</template>
|
|
</page-content>
|
|
|
|
<!-- 新增 -->
|
|
<page-modal
|
|
ref="addModalRef"
|
|
:modal-config="addModalConfig"
|
|
@submit-click="handleSubmitClick"
|
|
></page-modal>
|
|
|
|
<!-- 编辑 -->
|
|
<page-modal
|
|
ref="editModalRef"
|
|
:modal-config="editModalConfig"
|
|
@submit-click="handleSubmitClick"
|
|
></page-modal>
|
|
<!-- 用户余额修改 -->
|
|
<page-modal
|
|
ref="editMoneyModalRef"
|
|
:modal-config="editMoneyModalConfig"
|
|
@formDataChange="formDataChange"
|
|
@submit-click="handleSubmitClick"
|
|
></page-modal>
|
|
|
|
<!-- 用户优惠券详情 -->
|
|
<UserCouponDialog ref="userCouponDialogRef"></UserCouponDialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup >
|
|
import UserCouponDialog from "./components/user-coupon-dialog.vue";
|
|
import usePage from "@/components/CURD/usePage";
|
|
import addModalConfig from "./config/add";
|
|
import contentConfig from "./config/content";
|
|
import editModalConfig from "./config/edit";
|
|
import editMoneyModalConfig, { addOptions, reduceOptions } from "./config/edit-money";
|
|
import searchConfig from "./config/search";
|
|
import { returnOptionsLabel } from "./config/config";
|
|
import shopUserApi from "@/api/account/shopUser";
|
|
const editMoneyModalRef = ref(null);
|
|
const userCouponDialogRef = ref(null);
|
|
|
|
//查看用户优惠券
|
|
function handleViewCoupon(row) {
|
|
userCouponDialogRef.value.open(row);
|
|
}
|
|
const {
|
|
searchRef,
|
|
contentRef,
|
|
addModalRef,
|
|
editModalRef,
|
|
handleQueryClick,
|
|
handleResetClick,
|
|
// handleAddClick,
|
|
// handleEditClick,
|
|
handleSubmitClick,
|
|
handleExportClick,
|
|
handleSearchClick,
|
|
handleFilterChange,
|
|
} = usePage();
|
|
|
|
function searchQueryClick(e) {
|
|
handleQueryClick(e);
|
|
// 获取统计数据
|
|
getSummary();
|
|
}
|
|
const summary = reactive({
|
|
userTotal: 0,
|
|
chargeTotal: 0,
|
|
balanceTotal: 0.0,
|
|
});
|
|
|
|
const router = useRouter();
|
|
// 跳转页面
|
|
function toCharge(params) {
|
|
console.log(params);
|
|
router.push({ path: "/user/charge-list", query: { ...params } });
|
|
}
|
|
async function getSummary(e) {
|
|
// 获取统计数据
|
|
const res = await shopUserApi.getSummary(e);
|
|
console.log(res);
|
|
Object.assign(summary, res);
|
|
}
|
|
// 修改金额表单类型
|
|
function formDataChange(type, val) {
|
|
if (type == "type") {
|
|
if (val == 1) {
|
|
editMoneyModalConfig.formItems[4].options = addOptions;
|
|
} else {
|
|
editMoneyModalConfig.formItems[4].options = reduceOptions;
|
|
}
|
|
}
|
|
}
|
|
|
|
// 新增
|
|
async function handleAddClick() {
|
|
addModalRef.value?.setModalVisible();
|
|
// 加载部门下拉数据源
|
|
// addModalConfig.formItems[2]!.attrs!.data = await DeptAPI.getOptions();
|
|
// 加载角色下拉数据源
|
|
// addModalConfig.formItems[4]!.options = await RoleAPI.getOptions();
|
|
}
|
|
// 编辑
|
|
async function handleEditClick(row) {
|
|
editModalRef.value?.handleDisabled(false);
|
|
editModalRef.value?.setModalVisible();
|
|
// 根据id获取数据进行填充
|
|
// const data = await VersionApi.getFormData(row.id);
|
|
editModalRef.value?.setFormData({ ...row, headImg: row.headImg ? [row.headImg] : "" });
|
|
}
|
|
|
|
// 其他工具栏
|
|
function handleToolbarClick(name) {
|
|
console.log(name);
|
|
if (name === "custom1") {
|
|
ElMessage.success("点击了自定义1按钮");
|
|
}
|
|
}
|
|
|
|
// 其他操作列
|
|
async function handleOperatClick(data) {
|
|
const row = data.row;
|
|
if (data.name == "more") {
|
|
if (data.command === "change-money") {
|
|
editMoneyModalRef.value.setModalVisible();
|
|
editMoneyModalRef.value.setFormData({ ...row, headImg: row.headImg ? [row.headImg] : "" });
|
|
return;
|
|
}
|
|
if (data.command === "charge-list") {
|
|
console.log(data);
|
|
toCharge({ userId: data.row.userId });
|
|
return;
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
getSummary(searchRef.value.getQueryParams());
|
|
});
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.align-center {
|
|
align-items: center;
|
|
}
|
|
.card {
|
|
background-color: #f5f5f5;
|
|
padding: 0 14px;
|
|
|
|
.title {
|
|
font-size: 22px;
|
|
padding-top: 14px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
padding: 20px 0;
|
|
|
|
.item {
|
|
flex: 1;
|
|
|
|
.t {
|
|
text-align: center;
|
|
color: #555;
|
|
}
|
|
|
|
.n {
|
|
color: #000;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
padding-top: 6px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|