This commit is contained in:
张良(004796)
2024-03-12 15:38:47 +08:00
parent e0c966e4f7
commit 3b26224ef5
7 changed files with 430 additions and 549 deletions

View File

@@ -0,0 +1,123 @@
<template>
<el-dialog :title="title" :close-on-click-modal="false" :visible.sync="open" width="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="会员类型" prop="openVipType">
<el-select v-model="form.openVipType" placeholder="会员类型" clearable size="small">
<el-option
v-for="dict in vipTypeList"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="开通月份" prop="openVipMonthNum">
<el-input-number v-model='form.openVipMonthNum' :min="1" />
</el-form-item>
<el-form-item :label="'用户编号'" prop="usercode">
<el-autocomplete
class="inline-input"
v-model="form.usercode"
:fetch-suggestions="querySearch"
placeholder="请输入内容"
@select="handleSelect"
></el-autocomplete>
</el-form-item>
<el-form-item label="手机号" v-if="info.mobile">
{{ info.mobile }}
</el-form-item>
<el-form-item label="昵称" v-if="info.nickname">
{{ info.nickname }} {{ info.usercode }}
</el-form-item>
<el-form-item label="头像" v-if="info.avatar">
<image-avatar :src="info.avatar"/>
</el-form-item>
<el-form-item>
注意若用户已是会员再次设置时将会使用最新的会员信息
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="open = false"> </el-button>
</div>
</el-dialog>
</template>
<script>
import {getUserByUsercode, listUserByUserCode} from "@/api/xq/user";
import { vipTypeList } from '@/constant/statusMap'
import { addUserVip } from '@/api/xq/userVip'
export default {
components: {
},
data () {
return {
vipTypeList,
open: false,
title: '',
form:{
usercode: undefined,
openVipType: undefined,
openVipMonthNum: undefined
},
info:{
},
// 表单校验
rules: {
usercode: [
{ required: true, message: "数据不能为空", trigger: "blur" }
],
openVipType: [
{ required: true, message: "数据不能为空", trigger: "blur" }
],
openVipMonthNum: [
{ required: true, message: "数据不能为空", trigger: "blur" }
],
},
buttonLoading: false,
}
},
created() {
},
methods: {
init () {
this.open = true;
this.title = "新增会员"
this.info = {};
this.form.usercode = undefined
},
querySearch(querySearch,cb){
listUserByUserCode(querySearch).then(res => {
cb(res.data.map((terminal) => {
return {
value: terminal,
name: terminal,
};
}))
})
},
handleSelect(item){
getUserByUsercode(item.value).then(res => {
this.info = res.data
})
},
// 表单提交
submitForm () {
this.$refs['form'].validate((valid) => {
if (valid) {
this.buttonLoading = true;
addUserVip(this.form).then(data => {
this.$modal.msgSuccess("新增会员成功");
this.buttonLoading = false;
this.open = false
this.$emit('refreshDataList')
}).finally(() => {
this.buttonLoading = false;
});
}
})
},
}
}
</script>

View File

@@ -34,86 +34,88 @@
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['xq:userVip:add']"
>新增</el-button>
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['xq:userVip:add']"
>新增
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="userVipList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="" align="center" prop="id" v-if="true"/>
<el-table-column label="用户ID" align="center" prop="userId" />
<el-table-column label="用户号" align="center" prop="usercode" />
<el-table-column label="1-普通会员 2-黄金会员 3-钻石会员" align="center" prop="vipType" />
<el-table-column label="会员到期时间" align="center" prop="vipTimeout" width="180" />
<el-table-column label="1-正常 2-已过期 3-已取消" align="center" prop="vipStatus" />
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="用户编号" align="center" prop="usercode"/>
<el-table-column label="昵称" align="center" prop="nickname" show-overflow-tooltip/>
<el-table-column label="手机号" align="center" prop="mobile" width="100"/>
<el-table-column label="头像" align="center" prop="avatar">
<template v-slot="scope">
<image-avatar :src="scope.row.avatar"/>
</template>
</el-table-column>
<el-table-column label="会员类型" align="center" prop="vipType">
<template v-slot="scope">
<cai-dict-tag :options="vipTypeList" :value="scope.row.vipType"/>
</template>
</el-table-column>
<el-table-column label="状态" align="center" prop="vipStatus">
<template v-slot="scope">
<cai-dict-tag :options="userVipStatusList" :value="scope.row.vipStatus"/>
</template>
</el-table-column>
<el-table-column label="会员到期时间" align="center" prop="vipTimeout" width="180"/>
<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-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['xq:userVip:edit']"
>修改</el-button>
size="mini"
type="text"
icon="el-icon-delete"
v-if="scope.row.vipStatus === 1"
@click="handleClose(scope.row)"
v-hasPermi="['xq:userVip:remove']"
>解除
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['xq:userVip:remove']"
>删除</el-button>
size="mini"
type="text"
icon="el-icon-info"
@click="handleVipOrder(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"
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改VIP用户对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="用户ID" prop="userId">
<el-input v-model="form.userId" placeholder="请输入用户ID" />
</el-form-item>
<el-form-item label="用户号" prop="usercode">
<el-input v-model="form.usercode" placeholder="请输入用户号" />
</el-form-item>
<el-form-item label="会员到期时间" prop="vipTimeout">
<el-date-picker clearable
v-model="form.vipTimeout"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择会员到期时间">
</el-date-picker>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<add-vip-dialog v-if="addVipDialogVisible" ref="addVipDialog" @refreshDataList="getList"/>
<vip-order-dialog v-if="vipOrderDialogVisible" ref="vipOrderDialog"/>
</div>
</template>
<script>
import { listUserVip, getUserVip, delUserVip, addUserVip, updateUserVip } from "@/api/xq/userVip";
import { delUserVip, listUserVip } from '@/api/xq/userVip'
import { userVipStatusList, vipTypeList } from '@/constant/statusMap'
import AddVipDialog from '@/views/xq/userVip/add-vip-dialog.vue'
import VipOrderDialog from '@/views/xq/userVip/vip-order-dialog.vue'
export default {
name: "UserVip",
name: 'UserVip',
components: { AddVipDialog, VipOrderDialog },
data() {
return {
userVipStatusList, vipTypeList,
addVipDialogVisible: false,
vipOrderDialogVisible: false,
// 按钮loading
buttonLoading: false,
// 遮罩层
@@ -131,159 +133,75 @@ export default {
// VIP用户表格数据
userVipList: [],
// 弹出层标题
title: "",
title: '',
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
userId: undefined,
usercode: undefined,
vipType: undefined,
vipTimeout: undefined,
vipStatus: undefined,
},
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "不能为空", trigger: "blur" }
],
userId: [
{ required: true, message: "用户ID不能为空", trigger: "blur" }
],
usercode: [
{ required: true, message: "用户号不能为空", trigger: "blur" }
],
vipType: [
{ required: true, message: "1-普通会员 2-黄金会员 3-钻石会员不能为空", trigger: "change" }
],
vipTimeout: [
{ required: true, message: "会员到期时间不能为空", trigger: "blur" }
],
vipStatus: [
{ required: true, message: "1-正常 2-已过期 3-已取消不能为空", trigger: "change" }
],
createTime: [
{ required: true, message: "创建时间不能为空", trigger: "blur" }
],
nickname: undefined,
mobile: undefined
}
};
}
},
created() {
this.getList();
this.getList()
},
methods: {
/** 查询VIP用户列表 */
getList() {
this.loading = true;
this.loading = true
listUserVip(this.queryParams).then(response => {
this.userVipList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: undefined,
userId: undefined,
usercode: undefined,
vipType: undefined,
vipTimeout: undefined,
vipStatus: undefined,
createTime: undefined,
updateTime: undefined
};
this.resetForm("form");
this.userVipList = response.rows
this.total = response.total
this.loading = false
})
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
this.queryParams.pageNum = 1
this.getList()
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
this.resetForm('queryForm')
this.handleQuery()
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加VIP用户";
handleAdd(row) {
this.addVipDialogVisible = true
this.$nextTick(() => {
this.$refs.addVipDialog.init(row?.usercode)
})
},
/** 修改按钮操作 */
handleUpdate(row) {
this.loading = true;
this.reset();
const id = row.id || this.ids
getUserVip(id).then(response => {
this.loading = false;
this.form = response.data;
this.open = true;
this.title = "修改VIP用户";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
this.buttonLoading = true;
if (this.form.id != null) {
updateUserVip(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
} else {
addUserVip(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
}
}
});
handleVipOrder(row) {
this.vipOrderDialogVisible = true
this.$nextTick(() => {
this.$refs.vipOrderDialog.init(row)
})
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除VIP用户编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return delUserVip(ids);
handleClose(row) {
this.$modal.confirm('是否确认解除用户"' + row.nickname + '"的会员数据?').then(() => {
this.loading = true
return delUserVip(row.id)
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
this.loading = false
this.getList()
this.$modal.msgSuccess('解除成功')
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
/** 导出按钮操作 */
handleExport() {
this.download('xq/userVip/export', {
...this.queryParams
}, `userVip_${new Date().getTime()}.xlsx`)
this.loading = false
})
}
}
};
}
</script>

View File

@@ -0,0 +1,102 @@
<template>
<el-dialog :title="title" :close-on-click-modal="false" :visible.sync="open" width="1000px" append-to-body>
<el-row :gutter="10" class="mb8">
<right-toolbar @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="vipOrderList" >
<el-table-column label="订单号" align="center" prop="orderNo" show-overflow-tooltip/>
<el-table-column label="用户编号" align="center" prop="usercode" />
<el-table-column label="会员类型" align="center" prop="vipType" >
<template v-slot="scope">
<cai-dict-tag :options="vipTypeList" :value="scope.row.vipType" />
</template>
</el-table-column>
<el-table-column label="开通月份" align="center" prop="vipMonth" />
<el-table-column label="会员价格" align="center" prop="vipPrice" />
<el-table-column label="平台" align="center" prop="platformType" />
<el-table-column label="状态" align="center" prop="payStatus" >
<template v-slot="scope">
<cai-dict-tag :options="payStatusList" :value="scope.row.payStatus" />
</template>
</el-table-column>
<el-table-column label="操作时间" align="center" prop="createTime" width="160"/>
<el-table-column label="后台新增" align="center" prop="admin" >
<template v-slot="scope">
<cai-dict-tag :options="booleanList" :value="scope.row.admin" />
</template>
</el-table-column>
<el-table-column label="订单名称" align="center" prop="orderName" show-overflow-tooltip/>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<div slot="footer" class="dialog-footer">
<el-button @click="open = false"> </el-button>
</div>
</el-dialog>
</template>
<script>
import { booleanList, payStatusList, vipTimeList, vipTypeList } from '@/constant/statusMap'
import { listVipOrder } from '@/api/xq/vipOrder'
export default {
components: {
},
data () {
return {
vipTypeList,vipTimeList,payStatusList,booleanList,
loading: true,
open: false,
title: '',
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// VIP订单表格数据
vipOrderList: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
usedPay: true,
usercode: undefined,
},
}
},
created() {
},
methods: {
init (row) {
this.open = true;
this.queryParams.usercode = row.usercode
this.getList()
this.title = "会员开通记录"
},
/** 查询VIP订单列表 */
getList() {
this.loading = true;
listVipOrder(this.queryParams).then(response => {
this.vipOrderList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
}
}
</script>