Files
dvcp_v2_webapp/project/sanjianxi/apps/AppHelpByNeighbours/hbnAuditList.vue
2022-04-15 16:06:29 +08:00

112 lines
3.4 KiB
Vue

<template>
<section class="hbnAuditList mar-t16">
<ai-card hideTitle>
<template #content>
<ai-search-bar class="mar-t8">
<template #left>
<el-date-picker v-model="search.createTime" type="date" placeholder="日期" size="small" clearable
@change="page.current=1,getTableData()"/>
</template>
<template #right>
<el-input size="small" placeholder="搜索党员/四邻信息" v-model="search.name" clearable
@change="page.current=1,getTableData()"/>
</template>
</ai-search-bar>
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
@getList="getTableData" :col-configs="colConfigs" :dict="dict">
<el-table-column slot="options" label="操作" fixed="right" align="center">
<template slot-scope="{row}">
<el-button type="text" @click="handleAudit(row.id)">审批</el-button>
</template>
</el-table-column>
</ai-table>
</template>
</ai-card>
<ai-dialog title="联动记录审核" :visible.sync="dialog" @closed="form={}" @onConfirm="submit" width="600px">
<el-form :model="form" size="small" ref="DialogForm" :rules="rules" label-width="80px">
<el-form-item label="是否通过审核" prop="auditStatus">
<ai-select v-model="form.auditStatus" placeholder="请选择党员" :selectList="dict.getDict('yesOrNo')"/>
</el-form-item>
<el-form-item label="审批意见" prop="remark" v-if="form.auditStatus==0">
<el-input type="textarea" v-model="form.remark" placeholder="请输入审批意见" maxlength="200" show-word-limit
rows="5"/>
</el-form-item>
</el-form>
</ai-dialog>
</section>
</template>
<script>
import {mapState} from "vuex";
export default {
name: "hbnAuditList",
props: {
instance: Function,
dict: Object,
permissions: Function
},
computed: {
...mapState(['user']),
colConfigs() {
return [
{label: "党员", prop: "productName"},
{label: "四邻信息", prop: "productName"},
{label: "描述", prop: "productName"},
{label: "日期", prop: "productName"},
{label: "状态", prop: "status"},
{slot: "options"}
]
}
},
data() {
return {
search: {name: ""},
page: {current: 1, size: 10, total: 0},
tableData: [],
dialog: false,
form: {},
rules: {}
}
},
methods: {
getTableData() {
this.instance.post("/app/appfinancialloanapply/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
this.tableData = res.data?.records
this.page.total = res.data.total
}
})
},
submit() {
this.$refs.DialogForm.validate(v => {
if (v) {
this.instance.post("/app/appfinancialloanapply/addOrUpdate", this.form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.dialog = false
this.getTableData()
}
})
}
})
},
handleAudit(row) {
this.form = JSON.parse(JSON.stringify(row))
this.dialog = true
}
},
created() {
this.getTableData()
}
}
</script>
<style lang="scss" scoped>
.hbnAuditList {
height: fit-content;
}
</style>