会员登录管理

master
czc 2 years ago
parent 5776885a98
commit f0c8995fd6

@ -0,0 +1,54 @@
import request from '@/utils/request'
// 查询会员登录记录列表
export function listUmsMemberLogininfor(query, pageReq) {
return request({
url: '/ums/memberLogininfor/list',
method: 'post',
data: query,
params: pageReq
})
}
// 查询会员登录记录详细
export function getUmsMemberLogininfor(id) {
return request({
url: '/ums/memberLogininfor/' + id,
method: 'get'
})
}
// 新增会员登录记录
export function addUmsMemberLogininfor(data) {
return request({
url: '/ums/memberLogininfor',
method: 'post',
data: data
})
}
// 修改会员登录记录
export function updateUmsMemberLogininfor(data) {
return request({
url: '/ums/memberLogininfor',
method: 'put',
data: data
})
}
// 删除会员登录记录
export function delUmsMemberLogininfor(id) {
return request({
url: '/ums/memberLogininfor/' + id,
method: 'delete'
})
}
// 导出会员登录记录
export function exportUmsMemberLogininfor(query) {
return request({
url: '/ums/memberLogininfor/export',
method: 'get',
params: query
})
}

@ -0,0 +1,265 @@
<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="会员手机号" prop="phone">
<el-input
v-model="queryParams.phone"
placeholder="请输入会员手机号"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="登录IP地址" prop="ipaddr">
<el-input
v-model="queryParams.ipaddr"
placeholder="请输入登录IP地址"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="登录地点" prop="loginLocation">
<el-input
v-model="queryParams.loginLocation"
placeholder="请输入登录地点"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="浏览器类型" prop="browser">
<el-input
v-model="queryParams.browser"
placeholder="请输入浏览器类型"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="操作系统" prop="os">
<el-input
v-model="queryParams.os"
placeholder="请输入操作系统"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="登录时间">
<el-date-picker
v-model="dateRange"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
:clearable="false"
:picker-options='pickerOptions'
range-separator="-"
start-placeholder="开始时间"
end-placeholder="结束时间"
></el-date-picker>
</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-form-item>
</el-form>
<el-table v-loading="loading" :data="umsMemberLogininforList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="会员手机号" align="center" prop="phone" />
<el-table-column label="会员id" align="center" prop="memberId" />
<el-table-column label="登录IP地址" align="center" prop="ipaddr" />
<el-table-column label="登录地点" align="center" prop="loginLocation" />
<el-table-column label="浏览器类型" align="center" prop="browser" />
<el-table-column label="操作系统" align="center" prop="os" />
<el-table-column label="登陆时间" align="center" prop="loginTime" width="180" >
<template slot-scope="scope">
<span>{{ parseTime(scope.row.loginTime, '')}}</span>
</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-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['ums:memberLogininfor: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 { listUmsMemberLogininfor, getUmsMemberLogininfor, delUmsMemberLogininfor, addUmsMemberLogininfor, updateUmsMemberLogininfor, exportUmsMemberLogininfor } from "@/api/ums/memberLogininfor";
import dateUtil from '@/utils/DateUtil';
export default {
name: "UmsMemberLogininfor",
data() {
return {
dateRange: [],
pickerOptions: {
shortcuts: dateUtil.getTimeShort()
},
//
loading: true,
//
exportLoading: false,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
umsMemberLogininforList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
phone: null,
ipaddr: null,
loginLocation: null,
browser: null,
os: null,
loginTime: null
},
//
form: {},
//
rules: {
},
};
},
created() {
this.getList();
},
methods: {
/** 查询会员登录记录列表 */
getList() {
this.loading = true;
const {pageNum, pageSize} = this.queryParams;
const query = {...this.queryParams, pageNum: undefined, pageSize: undefined};
const pageReq = {page: pageNum - 1, size: pageSize};
listUmsMemberLogininfor({...this.addDateRange2(query, this.dateRange)}, pageReq).then(response => {
const { content, totalElements } = response
this.umsMemberLogininforList = content;
this.total = totalElements;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
phone: null,
memberId: null,
ipaddr: null,
loginLocation: null,
browser: null,
os: null,
loginTime: 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
getUmsMemberLogininfor(id).then(response => {
this.form = response;
this.open = true;
this.title = "修改会员登录记录";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateUmsMemberLogininfor(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addUmsMemberLogininfor(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 delUmsMemberLogininfor(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$modal.confirm('是否确认导出所有会员登录记录数据项?').then(() => {
this.exportLoading = true;
return exportUmsMemberLogininfor(queryParams);
}).then(response => {
this.$download.download(response);
this.exportLoading = false;
}).catch(() => {});
}
}
};
</script>
Loading…
Cancel
Save