This commit is contained in:
dute7liang
2023-12-31 13:54:20 +08:00
parent 89d50bbb67
commit aaaaa84e1e
12 changed files with 663 additions and 809 deletions

View File

@@ -0,0 +1,196 @@
<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="usercode">
<el-input
v-model="queryParams.usercode"
placeholder="请输入蜜瓜号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="手机号" prop="mobile">
<el-input
v-model="queryParams.mobile"
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">
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="unionUserList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="工会名" align="center" prop="unionName"/>
<el-table-column label="蜜瓜号" align="center" prop="usercode"/>
<el-table-column label="手机号" align="center" prop="mobile"/>
<el-table-column label="昵称" align="center" prop="nickname"/>
<el-table-column label="头像" align="center" prop="avatar">
<template v-slot="scope">
<image-preview :src="scope.row.avatar"/>
</template>
</el-table-column>
<el-table-column label="性别" align="center" prop="gender">
<template v-slot="scope">
<cai-dict-tag :options="genderList" :value="scope.row.gender"/>
</template>
</el-table-column>
<el-table-column label="主播" align="center" prop="isAnchor">
<template v-slot="scope">
<cai-dict-tag :options="isAnchorList" :value="scope.row.isAnchor"/>
</template>
</el-table-column>
<el-table-column label="视频分成比例" align="center" prop="videoDivide"/>
<el-table-column label="礼物分成比例" align="center" prop="giftDivide"/>
<el-table-column label="开启提成" align="center" prop="enableRate" width="80">
<template v-slot="scope">
<cai-dict-tag :options="booleanList" :value="scope.row.enableRate"/>
</template>
</el-table-column>
<el-table-column label="入会时间" align="center" prop="createTime" width="150"/>
<!-- <el-table-column label="vip分成" align="center" prop="vipDivide" />-->
<!-- <el-table-column label="收益" align="center" prop="unionEarning" />-->
<el-table-column label="状态" align="center" prop="status">
<template v-slot="scope">
<cai-dict-tag :options="userStatusList" :value="scope.row.status"/>
</template>
</el-table-column>
<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="['cai:unionUser:edit']"
>修改
</el-button>
<!-- <el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['cai:unionUser: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"
/>
<union-user-update-dialog v-if="unionUserUpdateDialogVisible" ref="unionUserUpdateDialog" @refreshDataList="getList"/>
</div>
</template>
<script>
import {delUnionUser, listUnionUser} from "@/api/cai/unionUser";
import {booleanList, genderList, isAnchorList, userStatusList, yesOrNoList} from "@/constant/statusMap";
import UnionUserUpdateDialog from "@/views/cai/unionUser/union-user-update-dialog";
export default {
name: "UnionUser",
components: {
UnionUserUpdateDialog
},
data() {
return {
genderList, booleanList, userStatusList, yesOrNoList,isAnchorList,
unionUserUpdateDialogVisible: false,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 工会成员表格数据
unionUserList: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
unionId: undefined,
userId: undefined,
videoDivide: undefined,
giftDivide: undefined,
vipDivide: undefined,
type: undefined,
unionEarning: undefined,
isInitiative: undefined
},
};
},
created() {
this.queryParams.unionId = this.$route.query.unionId
this.getList();
},
methods: {
/** 查询工会成员列表 */
getList() {
this.loading = true;
listUnionUser(this.queryParams).then(response => {
this.unionUserList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
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
},
/** 修改按钮操作 */
handleUpdate(row) {
this.unionUserUpdateDialogVisible = true
this.$nextTick(() => {
this.$refs.unionUserUpdateDialog.init(row)
})
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除工会成员编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return delUnionUser(ids);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
}
};
</script>

View File

@@ -0,0 +1,103 @@
<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="nickname">
<el-input v-model="form.nickname" placeholder="" disabled />
</el-form-item>
<el-form-item label="手机号" prop="mobile">
<el-input v-model="form.mobile" placeholder="" disabled />
</el-form-item>
<el-form-item label="蜜瓜号" prop="usercode">
<el-input v-model="form.usercode" placeholder="" disabled />
</el-form-item>
<el-form-item label="开启提成" prop="enableRate">
<el-radio-group v-model="form.enableRate">
<el-radio :label="true">开启</el-radio>
<el-radio :label="false">关闭</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="视频提成" prop="videoDivide">
<el-input v-model="form.videoDivide" />
</el-form-item>
<el-form-item label="礼物提成" prop="giftDivide">
<el-input v-model="form.giftDivide" />
</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 {getUnionUser, updateUnionUser} from "@/api/cai/unionUser";
export default {
components: {
},
data () {
return {
open: false,
title: '',
form:{
id: undefined,
nickname: undefined,
mobile: undefined,
usercode: undefined,
videoDivide: undefined,
giftDivide: undefined,
enableRate: undefined,
},
// 表单校验
rules: {
enableRate: [
{ required: true, message: "数据不能为空", trigger: "blur" }
],
giftDivide: [
{ required: true, message: "数据不能为空", trigger: "blur" }
],
videoDivide: [
{ required: true, message: "数据不能为空", trigger: "blur" }
],
},
buttonLoading: false,
}
},
created() {
},
methods: {
init (row) {
let id = row.id;
this.form.id = id || undefined;
this.title = "修改工会成员配置";
this.open = true;
this.$nextTick(() => {
this.$refs['form'].resetFields();
getUnionUser(id).then(response => {
this.form = response.data;
this.form.nickname = row.nickname;
this.form.usercode = row.usercode;
this.form.mobile = row.mobile;
});
})
},
// 表单提交
submitForm () {
this.$refs['form'].validate((valid) => {
if (valid) {
this.buttonLoading = true;
updateUnionUser(this.form).then(data => {
this.$modal.msgSuccess("修改成功");
this.buttonLoading = false;
this.open = false
this.$emit('refreshDataList')
}).finally(() => {
this.buttonLoading = false;
});
}
})
},
}
}
</script>