用户管理,等级配置,任务审核

This commit is contained in:
liuye
2022-11-01 18:27:03 +08:00
parent 4098093a1c
commit 7b085f916b
3 changed files with 65 additions and 255 deletions

View File

@@ -3,22 +3,21 @@
<ai-list>
<ai-title slot="title" title="任务审核" isShowBottomBorder />
<template #content>
<ai-search-bar>
<!-- <ai-search-bar>
<template #right>
<el-input v-model="search.title" class="search-input" size="small" v-throttle="() => {(page.current = 1), getList()} " placeholder="请输入手机号" clearable @change="getList" @clear="page.current = 1, (search.title = ''), getList()" suffix-icon="iconfont iconSearch">
</el-input>
</template>
</ai-search-bar>
</ai-search-bar> -->
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size" @getList="getList" :col-configs="colConfigs"
:dict="dict" @sort-change="sortChange">
<el-table-column slot="title" label="凭证内容" align="left">
<el-table-column slot="accessUrl" label="凭证内容" align="left">
<template slot-scope="{ row }">
<el-image class="row-img" src="https://cdn.cunwuyun.cn/dvcp/h5/defaultAvatar.png"
:preview-src-list="['https://cdn.cunwuyun.cn/dvcp/h5/defaultAvatar.png']"/>
<el-image class="row-img" :src="row.accessUrl" :preview-src-list="[row.accessUrl]"/>
</template>
</el-table-column>
<el-table-column slot="options" label="操作" fixed="right" align="center">
<template slot-scope="{ row }">
<template slot-scope="{ row }" v-if="!row.status">
<el-button type="text" @click="pass(row)">通过</el-button>
<el-button type="text" @click="refuse(row)">拒绝</el-button>
</template>
@@ -75,18 +74,17 @@ export default {
computed: {
colConfigs() {
return [
{slot: "title", align: "left"},
{prop: "organizationName", label: "上传人", align: "center"},
{prop: "electionMethod", label: "任务分类", align: "center",dict:"electionMethod"},
{prop: "chooseNumber", label: "上传时间", align: "center"},
{prop: "chooseNumber", label: "状态", align: "center"},
{prop: "chooseNumber", label: "处理人", align: "center"},
{slot: "accessUrl", align: "left"},
{prop: "userName", label: "上传人", align: "center"},
{prop: "type", label: "任务分类", align: "center",dict:"electionMethod"},
{prop: "createTime", label: "上传时间", align: "center"},
{prop: "status", label: "状态", align: "center"},
{prop: "auditUserName", label: "处理人", align: "center"},
{slot: "options", },
]
},
rules() {
return {
integralCalcType: [{required: true, message: '请选择类型', trigger: 'change'}],
integral: [{required: true, message: '请输入积分', trigger: 'blur' },
{pattern: /^([1-9]\d*|0)(\.\d{1,2})?$/, message: '请输入正数且最多只能保留两位小数'}],
}
@@ -97,13 +95,7 @@ export default {
this.$refs.form.validate((valid)=> {
if(valid) {
this.flag = true
this.instance.post(`/app/appintegraluser/changeIntegral`,{
ids: this.form.ids,
eventDesc: this.form.eventDesc,
enclosure: this.form.enclosure, // 附件
integralCalcType: this.form.integralCalcType,
integral: this.form.integral,
}).then(res => {
this.instance.post(`/appwechatescalation/examine?id=${this.form.id}&pass=1&integral=${this.integral}`).then(res => {
if(res?.code == 0) {
this.$message.success('审核成功')
setTimeout(() =>{
@@ -125,16 +117,16 @@ export default {
},
refuse(row) {
this.$confirm('确定拒绝该任务?').then(() => {
// this.instance.post(`/app/appvillagepicturealbum/delete?ids=${row.id}`).then(res => {
// if (res.code == 0) {
// this.$message.success('审核成功')
// this.getList()
// }
// })
this.instance.post(`/appwechatescalation/examine?id=${row.id}&pass=0`).then(res => {
if (res.code == 0) {
this.$message.success('审核成功')
this.getList()
}
})
})
},
getList() {
this.instance.post(`/app/appgeneralelectioninfo/list`,null,{
this.instance.post(`/appwechatescalation/list`,null,{
params: {
...this.page,
...this.search,