275 lines
8.0 KiB
Vue
275 lines
8.0 KiB
Vue
![]() |
<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" border>
|
||
|
<el-table-column type="selection" width="55" align="center"/>
|
||
|
<el-table-column label="会员手机号" prop="phone"/>
|
||
|
<el-table-column label="会员id" prop="memberId"/>
|
||
|
<el-table-column label="登录IP地址" prop="ipaddr"/>
|
||
|
<el-table-column label="登录地点" prop="loginLocation"/>
|
||
|
<el-table-column label="浏览器类型" prop="browser"/>
|
||
|
<el-table-column label="操作系统" prop="os"/>
|
||
|
<el-table-column label="登陆时间" prop="loginTime" width="180">
|
||
|
<template slot-scope="scope">
|
||
|
<span>{{ parseTime(scope.row.loginTime, '') }}</span>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="操作" 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>
|
||
|
|
||
|
<InBody v-show="total>0">
|
||
|
<pagination
|
||
|
:total="total"
|
||
|
:page.sync="queryParams.pageNum"
|
||
|
:limit.sync="queryParams.pageSize"
|
||
|
@pagination="getList"
|
||
|
/>
|
||
|
</InBody>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {
|
||
|
addUmsMemberLogininfor,
|
||
|
delUmsMemberLogininfor,
|
||
|
exportUmsMemberLogininfor,
|
||
|
getUmsMemberLogininfor,
|
||
|
listUmsMemberLogininfor,
|
||
|
updateUmsMemberLogininfor
|
||
|
} 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>
|