This commit is contained in:
张良(004796)
2024-02-01 19:06:54 +08:00
parent 91628c2f01
commit 2ae56472ac
4 changed files with 328 additions and 19 deletions

View File

@@ -0,0 +1,239 @@
<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="systemName+'号'" prop="usercode">
<el-input
v-model="queryParams.usercode"
:placeholder="'请输入'+systemName+'号'"
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 label="审核状态" prop="auditStatus">
<el-select v-model="queryParams.auditStatus" placeholder="审核状态" clearable size="small">
<el-option
v-for="dict in auditStatusList"
:key="dict.value"
:label="dict.label"
:value="dict.value"
@keyup.enter.native="handleQuery"
/>
</el-select>
</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="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['cai:userPictureAudit:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="userPictureAuditList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="审核状态" align="center" prop="auditStatus">
<template v-slot="scope">
<cai-dict-tag :options="auditStatusList" :value="scope.row.auditStatus"/>
</template>
</el-table-column>
<el-table-column :label="systemName+'号'" 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="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="beforeUrl" >
<template v-slot="scope">
<image-preview :src="scope.row.beforeUrl" width="30px" height="30px"/>
</template>
</el-table-column>
<el-table-column label="修改后" align="center" prop="url">
<template v-slot="scope">
<image-preview :src="scope.row.url" width="30px" height="30px"/>
</template>
</el-table-column>
<el-table-column label="审核时间" align="center" prop="auditTime" width="180" />
<!-- <el-table-column label="审核备注" align="center" prop="auditRemark" />-->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="150">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
v-if="scope.row.auditStatus === 1"
@click="handleAuditSuccess(scope.row)"
v-hasPermi="['cai:userPictureAudit:edit']"
>通过
</el-button>
<el-button
size="mini"
type="text"
v-if="scope.row.auditStatus === 1"
@click="handleAuditFail(scope.row)"
v-hasPermi="['cai:userPictureAudit:edit']"
>不通过
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['cai:userPictureAudit: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 {
auditFailUserPictureAudit,
auditSuccessUserPictureAudit,
delUserPictureAudit,
listUserPictureAudit
} from '@/api/cai/userPictureAudit'
import { auditStatusList, genderList, isAnchorList, userStatusList, yesOrNoList } from '@/constant/statusMap'
export default {
name: "UserPictureAudit",
data() {
return {
systemName: process.env.VUE_APP_SYSTEM_HOME,
genderList, userStatusList, yesOrNoList, isAnchorList,auditStatusList,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 头像审核表格数据
userPictureAuditList: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
auditStatus: 1,
mobile: undefined,
usercode: undefined,
},
};
},
created() {
this.getList();
},
methods: {
/** 查询头像审核列表 */
getList() {
this.loading = true;
listUserPictureAudit(this.queryParams).then(response => {
this.userPictureAuditList = 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
},
handleAuditSuccess(row){
this.$modal.confirm('是否确认通过用户为"' + row.nickname + '"的头像审核?').then(() => {
this.loading = true;
return auditSuccessUserPictureAudit({
id: row.id
});
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("操作成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
handleAuditFail(row){
this.$modal.confirm('是否不确认通过用户为"' + row.nickname + '"的头像审核?').then(() => {
this.loading = true;
return auditFailUserPictureAudit({
id: row.id
});
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("操作成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除头像审核编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return delUserPictureAudit(ids);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
}
};
</script>