init
This commit is contained in:
452
src/views/cai/userInfo/index.vue
Normal file
452
src/views/cai/userInfo/index.vue
Normal file
@@ -0,0 +1,452 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="奖励好友收入视频提成比率" prop="videoIncomeRate">
|
||||
<el-input
|
||||
v-model="queryParams.videoIncomeRate"
|
||||
placeholder="请输入奖励好友收入视频提成比率"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="奖励好友守护的比例" prop="guardIncomeRate">
|
||||
<el-input
|
||||
v-model="queryParams.guardIncomeRate"
|
||||
placeholder="请输入奖励好友守护的比例"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="奖励好友礼物的比例" prop="giftIncomeRate">
|
||||
<el-input
|
||||
v-model="queryParams.giftIncomeRate"
|
||||
placeholder="请输入奖励好友礼物的比例"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="奖励好友充值的比率" prop="payIncomeRate">
|
||||
<el-input
|
||||
v-model="queryParams.payIncomeRate"
|
||||
placeholder="请输入奖励好友充值的比率"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="登录次数 " prop="loginCount">
|
||||
<el-input
|
||||
v-model="queryParams.loginCount"
|
||||
placeholder="请输入登录次数 "
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="连续登录天数" prop="continueLoginCount">
|
||||
<el-input
|
||||
v-model="queryParams.continueLoginCount"
|
||||
placeholder="请输入连续登录天数"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="最大连续登录天数" prop="maxLoginCount">
|
||||
<el-input
|
||||
v-model="queryParams.maxLoginCount"
|
||||
placeholder="请输入最大连续登录天数"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="最后登录IP" prop="lastLoginIp">
|
||||
<el-input
|
||||
v-model="queryParams.lastLoginIp"
|
||||
placeholder="请输入最后登录IP"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="最后登陆时间" prop="lastLoginTime">
|
||||
<el-input
|
||||
v-model="queryParams.lastLoginTime"
|
||||
placeholder="请输入最后登陆时间"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="最后登录位置" prop="lastLocation">
|
||||
<el-input
|
||||
v-model="queryParams.lastLocation"
|
||||
placeholder="请输入最后登录位置"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="注册IP" prop="regIp">
|
||||
<el-input
|
||||
v-model="queryParams.regIp"
|
||||
placeholder="请输入注册IP"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="注册时间" prop="regTime">
|
||||
<el-input
|
||||
v-model="queryParams.regTime"
|
||||
placeholder="请输入注册时间"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<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-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="['cai:userInfo:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="el-icon-edit"
|
||||
size="mini"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['cai:userInfo:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['cai:userInfo:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="el-icon-download"
|
||||
size="mini"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['cai:userInfo:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="userInfoList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="" align="center" prop="userId" v-if="true"/>
|
||||
<el-table-column label="奖励好友收入视频提成比率" align="center" prop="videoIncomeRate" />
|
||||
<el-table-column label="奖励好友守护的比例" align="center" prop="guardIncomeRate" />
|
||||
<el-table-column label="奖励好友礼物的比例" align="center" prop="giftIncomeRate" />
|
||||
<el-table-column label="奖励好友充值的比率" align="center" prop="payIncomeRate" />
|
||||
<el-table-column label="登录次数 " align="center" prop="loginCount" />
|
||||
<el-table-column label="连续登录天数" align="center" prop="continueLoginCount" />
|
||||
<el-table-column label="最大连续登录天数" align="center" prop="maxLoginCount" />
|
||||
<el-table-column label="最后登录IP" align="center" prop="lastLoginIp" />
|
||||
<el-table-column label="最后登陆时间" align="center" prop="lastLoginTime" />
|
||||
<el-table-column label="最后登录位置" align="center" prop="lastLocation" />
|
||||
<el-table-column label="注册IP" align="center" prop="regIp" />
|
||||
<el-table-column label="注册时间" align="center" prop="regTime" />
|
||||
<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="['cai:userInfo:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['cai:userInfo: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"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改用户好友提成对话框 -->
|
||||
<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="奖励好友收入视频提成比率" prop="videoIncomeRate">
|
||||
<el-input v-model="form.videoIncomeRate" placeholder="请输入奖励好友收入视频提成比率" />
|
||||
</el-form-item>
|
||||
<el-form-item label="奖励好友守护的比例" prop="guardIncomeRate">
|
||||
<el-input v-model="form.guardIncomeRate" placeholder="请输入奖励好友守护的比例" />
|
||||
</el-form-item>
|
||||
<el-form-item label="奖励好友礼物的比例" prop="giftIncomeRate">
|
||||
<el-input v-model="form.giftIncomeRate" placeholder="请输入奖励好友礼物的比例" />
|
||||
</el-form-item>
|
||||
<el-form-item label="奖励好友充值的比率" prop="payIncomeRate">
|
||||
<el-input v-model="form.payIncomeRate" placeholder="请输入奖励好友充值的比率" />
|
||||
</el-form-item>
|
||||
<el-form-item label="登录次数 " prop="loginCount">
|
||||
<el-input v-model="form.loginCount" placeholder="请输入登录次数 " />
|
||||
</el-form-item>
|
||||
<el-form-item label="连续登录天数" prop="continueLoginCount">
|
||||
<el-input v-model="form.continueLoginCount" placeholder="请输入连续登录天数" />
|
||||
</el-form-item>
|
||||
<el-form-item label="最大连续登录天数" prop="maxLoginCount">
|
||||
<el-input v-model="form.maxLoginCount" placeholder="请输入最大连续登录天数" />
|
||||
</el-form-item>
|
||||
<el-form-item label="最后登录IP" prop="lastLoginIp">
|
||||
<el-input v-model="form.lastLoginIp" placeholder="请输入最后登录IP" />
|
||||
</el-form-item>
|
||||
<el-form-item label="最后登陆时间" prop="lastLoginTime">
|
||||
<el-input v-model="form.lastLoginTime" placeholder="请输入最后登陆时间" />
|
||||
</el-form-item>
|
||||
<el-form-item label="最后登录位置" prop="lastLocation">
|
||||
<el-input v-model="form.lastLocation" placeholder="请输入最后登录位置" />
|
||||
</el-form-item>
|
||||
<el-form-item label="注册IP" prop="regIp">
|
||||
<el-input v-model="form.regIp" placeholder="请输入注册IP" />
|
||||
</el-form-item>
|
||||
<el-form-item label="注册时间" prop="regTime">
|
||||
<el-input v-model="form.regTime" placeholder="请输入注册时间" />
|
||||
</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>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listUserInfo, getUserInfo, delUserInfo, addUserInfo, updateUserInfo } from "@/api/cai/userInfo";
|
||||
|
||||
export default {
|
||||
name: "UserInfo",
|
||||
data() {
|
||||
return {
|
||||
// 按钮loading
|
||||
buttonLoading: false,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 用户好友提成表格数据
|
||||
userInfoList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
videoIncomeRate: undefined,
|
||||
guardIncomeRate: undefined,
|
||||
giftIncomeRate: undefined,
|
||||
payIncomeRate: undefined,
|
||||
loginCount: undefined,
|
||||
continueLoginCount: undefined,
|
||||
maxLoginCount: undefined,
|
||||
lastLoginIp: undefined,
|
||||
lastLoginTime: undefined,
|
||||
lastLocation: undefined,
|
||||
regIp: undefined,
|
||||
regTime: undefined
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
userId: [
|
||||
{ required: true, message: "不能为空", trigger: "blur" }
|
||||
],
|
||||
videoIncomeRate: [
|
||||
{ required: true, message: "奖励好友收入视频提成比率不能为空", trigger: "blur" }
|
||||
],
|
||||
guardIncomeRate: [
|
||||
{ required: true, message: "奖励好友守护的比例不能为空", trigger: "blur" }
|
||||
],
|
||||
giftIncomeRate: [
|
||||
{ required: true, message: "奖励好友礼物的比例不能为空", trigger: "blur" }
|
||||
],
|
||||
payIncomeRate: [
|
||||
{ required: true, message: "奖励好友充值的比率不能为空", trigger: "blur" }
|
||||
],
|
||||
loginCount: [
|
||||
{ required: true, message: "登录次数 不能为空", trigger: "blur" }
|
||||
],
|
||||
continueLoginCount: [
|
||||
{ required: true, message: "连续登录天数不能为空", trigger: "blur" }
|
||||
],
|
||||
maxLoginCount: [
|
||||
{ required: true, message: "最大连续登录天数不能为空", trigger: "blur" }
|
||||
],
|
||||
lastLoginIp: [
|
||||
{ required: true, message: "最后登录IP不能为空", trigger: "blur" }
|
||||
],
|
||||
lastLoginTime: [
|
||||
{ required: true, message: "最后登陆时间不能为空", trigger: "blur" }
|
||||
],
|
||||
lastLocation: [
|
||||
{ required: true, message: "最后登录位置不能为空", trigger: "blur" }
|
||||
],
|
||||
regIp: [
|
||||
{ required: true, message: "注册IP不能为空", trigger: "blur" }
|
||||
],
|
||||
regTime: [
|
||||
{ required: true, message: "注册时间不能为空", trigger: "blur" }
|
||||
]
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询用户好友提成列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listUserInfo(this.queryParams).then(response => {
|
||||
this.userInfoList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
userId: undefined,
|
||||
videoIncomeRate: undefined,
|
||||
guardIncomeRate: undefined,
|
||||
giftIncomeRate: undefined,
|
||||
payIncomeRate: undefined,
|
||||
loginCount: undefined,
|
||||
continueLoginCount: undefined,
|
||||
maxLoginCount: undefined,
|
||||
lastLoginIp: undefined,
|
||||
lastLoginTime: undefined,
|
||||
lastLocation: undefined,
|
||||
regIp: undefined,
|
||||
regTime: undefined
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.userId)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加用户好友提成";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.loading = true;
|
||||
this.reset();
|
||||
const userId = row.userId || this.ids
|
||||
getUserInfo(userId).then(response => {
|
||||
this.loading = false;
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改用户好友提成";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
this.buttonLoading = true;
|
||||
if (this.form.userId != null) {
|
||||
updateUserInfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}).finally(() => {
|
||||
this.buttonLoading = false;
|
||||
});
|
||||
} else {
|
||||
addUserInfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}).finally(() => {
|
||||
this.buttonLoading = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const userIds = row.userId || this.ids;
|
||||
this.$modal.confirm('是否确认删除用户好友提成编号为"' + userIds + '"的数据项?').then(() => {
|
||||
this.loading = true;
|
||||
return delUserInfo(userIds);
|
||||
}).then(() => {
|
||||
this.loading = false;
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {
|
||||
}).finally(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('cai/userInfo/export', {
|
||||
...this.queryParams
|
||||
}, `userInfo_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user