You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

305 lines
9.3 KiB

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px" size="medium" class="ry_form">
<el-form-item label="创建时间">
<el-date-picker
size="small"
v-model="dateRange"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
:clearable="true"
:picker-options='pickerOptions'
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item label="账号启用状态">
<el-select v-model="queryParams.status" placeholder="请选择" :clearable="true" size="small">
<el-option label="禁用" value="0">
</el-option>
<el-option label="启用" value="1">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="昵称" prop="nickname">
<el-input
v-model.trim="queryParams.nickname"
placeholder="请输入昵称"
clearable
size="small"
/>
</el-form-item>
<el-form-item label="手机号码" prop="phone">
<el-input
v-model.trim="queryParams.phone"
placeholder="请输入手机号码"
clearable
size="small"
/>
</el-form-item>
<el-form-item class="flex_one tr">
<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-button :icon="showMoreCondition ? 'el-icon-arrow-up' : 'el-icon-arrow-down'" size="mini" @click="showMoreCondition = !showMoreCondition">{{showMoreCondition ? '收起条件' : '展开条件'}}</el-button>-->
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="umsMemberList">
<el-table-column label="昵称" align="center" prop="nickname" />
<el-table-column label="手机号码" align="center" prop="phoneHidden" />
<el-table-column label="性别" align="center" prop="gender" >
<template v-slot="scope">
<div>{{ scope.row.gender === 0 ? '未知' : (scope.row.gender === 1 ? '男' : '女') }}</div>
</template>
</el-table-column>
<el-table-column label="用户所在城市" align="center" prop="city" />
<el-table-column label="用户所在省份" align="center" prop="province" />
<el-table-column label="用户所在国家" align="center" prop="country" />
<el-table-column label="等级" align="center" prop="level" />
<el-table-column label="账号启用状态" align="center" prop="status">
<template v-slot="scope">
<el-switch
style="display: block"
v-model="scope.row.status"
:active-value="1"
:inactive-value="0"
active-color="#13ce66"
@change="changeStatus(scope.row)">
</el-switch>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
<template v-slot="scope">
<div>{{ parseTime(scope.row.createTime) }}</div>
</template>
</el-table-column>
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">-->
<!-- <template slot-scope="scope">-->
<!-- <el-button-->
<!-- size="mini"-->
<!-- type="text"-->
<!-- icon="el-icon-edit"-->
<!-- @click="handleUpdate(scope.row)"-->
<!-- v-hasPermi="['ums:member:edit']"-->
<!-- >修改</el-button>-->
<!-- <el-button-->
<!-- size="mini"-->
<!-- type="text"-->
<!-- icon="el-icon-delete"-->
<!-- @click="handleDelete(scope.row)"-->
<!-- v-hasPermi="['ums:member:remove']"-->
<!-- >删除</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"
/>
</div>
</template>
<script>
import { listUmsMember, getUmsMember, delUmsMember, addUmsMember, updateUmsMember, exportUmsMember, changeAccountStatus } from "@/api/ums/member";
import dateUtil from '@/utils/DateUtil';
import moment from "moment";
export default {
name: "UmsMember",
data() {
return {
pickerOptions: {
shortcuts: dateUtil.getTimeShort()
},
// 遮罩层
loading: true,
// 导出遮罩层
exportLoading: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 会员信息表格数据
umsMemberList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
nickname: null,
phone: null,
status: undefined
},
dateRange:[],
// 表单参数
form: {},
// 表单校验
rules: {
level: [
{ required: true, message: "等级不能为空", trigger: "blur" }
],
integral: [
{ required: true, message: "用户剩余积分不能为空", trigger: "blur" }
],
},
showMoreCondition: false
};
},
created() {
this.getList();
},
methods: {
/** 查询会员信息列表 */
getList() {
this.loading = true;
const {pageNum, pageSize} = this.queryParams;
let query = {...this.queryParams, pageNum: undefined, pageSize: undefined};
const pageReq = {page: pageNum - 1, size: pageSize};
if (!this.dateRange || this.dateRange.length > 0){
query = { ...this.addDateRange2(query, this.dateRange) }
}
listUmsMember(query, pageReq).then(response => {
const { content, totalElements } = response
this.umsMemberList = content;
this.total = totalElements;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
nickname: null,
password: null,
phone: null,
mark: null,
status: 0,
avatar: null,
gender: null,
city: null,
province: null,
country: null,
remark: null,
birthday: null,
spreadUid: null,
spreadTime: null,
level: null,
integral: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
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
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加会员信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getUmsMember(id).then(response => {
this.form = response;
this.open = true;
this.title = "修改会员信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateUmsMember(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addUmsMember(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除会员信息编号为"' + ids + '"的数据项?').then(function() {
return delUmsMember(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$modal.confirm('是否确认导出所有会员信息数据项?').then(() => {
this.exportLoading = true;
return exportUmsMember(queryParams);
}).then(response => {
this.$download.download(response);
this.exportLoading = false;
}).catch(() => {});
},
// 更改账户状态
changeStatus(row){
const data = {
memberId: row.id,
status: row.status
}
changeAccountStatus(data).then(response => {
if (response < 1){
this.$modal.msgError('操作失败')
this.getList()
}
})
}
}
};
</script>