This commit is contained in:
dute7liang
2024-01-01 21:45:54 +08:00
parent 31d4a3b81a
commit 8ce6b420f1
4 changed files with 289 additions and 1 deletions

View File

@@ -0,0 +1,52 @@
import request from '@/utils/request'
// 查询自拍认证列表
export function listUserCameraAudit(query) {
return request({
url: '/cai/userCameraAudit/list',
method: 'get',
params: query
})
}
// 查询自拍认证详细
export function getUserCameraAudit(id) {
return request({
url: '/cai/userCameraAudit/' + id,
method: 'get'
})
}
// 新增自拍认证
export function addUserCameraAudit(data) {
return request({
url: '/cai/userCameraAudit',
method: 'post',
data: data
})
}
// 修改自拍认证
export function updateUserCameraAudit(data) {
return request({
url: '/cai/userCameraAudit',
method: 'put',
data: data
})
}
export function batchAuditCameraAudit(data) {
return request({
url: '/cai/userCameraAudit/batch/audit',
method: 'put',
data: data
})
}
// 删除自拍认证
export function delUserCameraAudit(id) {
return request({
url: '/cai/userCameraAudit/' + id,
method: 'delete'
})
}

View File

@@ -74,7 +74,8 @@
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="内容" align="center" prop="content" /> <el-table-column label="内容" align="center" prop="content" show-overflow-tooltip/>
<el-table-column label="提交时间" align="center" prop="createTime" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope"> <template v-slot="scope">
<el-button <el-button

View File

@@ -0,0 +1,234 @@
<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 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="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="multiple"
@click="handleBatchAudit(3)"
v-hasPermi="['cai:userCameraAudit:edit']"
>批量审核通过
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="userCameraAuditList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="ID" align="center" prop="id"/>
<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" height="40px" width="40px"/>
</template>
</el-table-column>
<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="动作" align="center" prop="actionImage">
<template v-slot="scope">
<image-preview :src="scope.row.actionImage" width="40px" height="40px"/>
</template>
</el-table-column>
<el-table-column label="审核照片" align="center" prop="photo" >
<template v-slot="scope">
<image-preview :src="scope.row.photo" width="40px" height="40px"/>
</template>
</el-table-column>
<el-table-column label="审核次数" align="center" prop="auditCount" />
<el-table-column label="操作ip" align="center" prop="operateIp" />
<el-table-column label="提交时间" align="center" prop="createTime" />
<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"
v-if="scope.row.auditStatus === 1"
@click="handleAudit(scope.row,3)"
v-hasPermi="['cai:userCameraAudit:edit']"
>通过
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
v-if="scope.row.auditStatus === 1"
@click="handleAudit(scope.row,2)"
v-hasPermi="['cai:userCameraAudit:edit']"
>不通过
</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 {
listUserCameraAudit,
delUserCameraAudit,
updateUserCameraAudit,
batchAuditCameraAudit
} from "@/api/cai/userCameraAudit";
import {auditStatusList} from "@/constant/statusMap";
export default {
name: "UserCameraAudit",
data() {
return {
auditStatusList,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 自拍认证表格数据
userCameraAuditList: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
auditStatus: 1,
mobile: undefined,
usercode: undefined,
},
};
},
created() {
this.getList();
},
methods: {
/** 查询自拍认证列表 */
getList() {
this.loading = true;
listUserCameraAudit(this.queryParams).then(response => {
this.userCameraAuditList = 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
},
handleAudit(row,auditStatus){
let message = auditStatus === 3 ? "通过" : "不通过";
this.$modal.confirm('是否确认'+message+'自拍编号为"' + row.id + '"的数据项?').then(() => {
this.loading = true;
return updateUserCameraAudit({
id: row.id,
auditStatus: auditStatus
});
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("操作成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
handleBatchAudit(auditStatus){
const ids = this.ids;
this.$modal.confirm('是否确认批量审核通过自拍编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return batchAuditCameraAudit({
"ids": ids,
auditStatus: auditStatus
});
}).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 delUserCameraAudit(ids);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
}
};
</script>

View File

@@ -67,6 +67,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="标题" align="center" prop="title" show-overflow-tooltip/> <el-table-column label="标题" align="center" prop="title" show-overflow-tooltip/>
<el-table-column label="提交时间" align="center" prop="createTime" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
<template v-slot="scope"> <template v-slot="scope">
<el-button <el-button