qa-prevention-gwj-vue/src/views/xgf/flow/components/sendUtil.vue

250 lines
7.2 KiB
Vue
Raw Normal View History

2023-12-18 20:24:01 +08:00
<template>
<div>
2024-01-17 18:43:02 +08:00
<el-dialog v-loading = "loading" :visible.sync="visible" :append-to-body="appendToBody" :before-close="beforeClose" title="审批" width="1200px" destroy-on-close>
2024-01-22 14:39:38 +08:00
<el-form ref="form" :model="form" :rules="rules" label-width="200px" label-position="right" type="flex">
2024-01-17 18:43:02 +08:00
<el-row :gutter="12">
<el-col :span="12">
2024-01-22 14:39:38 +08:00
<el-form-item prop="STATUS" label="是否通过: ">
2024-01-18 13:56:14 +08:00
<el-select v-model="form.STATUS" style="width: 300px" placeholder="请选择">
2024-01-17 18:43:02 +08:00
<el-option label="是" value="1"/>
<el-option label="否" value="0"/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="12">
2024-01-22 15:23:02 +08:00
<el-form-item v-if="form.STATUS === '1' && isShow" prop="APPOINT_DEPARTMENT_ID" label="指定监管部门:">
2024-01-17 18:43:02 +08:00
<Treeselect
:options="departmentTree"
:normalizer="normalizer"
2024-01-18 13:56:14 +08:00
v-model="form.APPOINT_DEPARTMENT_ID"
2024-01-17 18:43:02 +08:00
placeholder="请选择部门"
no-options-text="暂无数据"
no-children-text="暂无数据"
style="width: 100%;"
2024-01-18 13:56:14 +08:00
@select="getPeopleList($event)"
2024-01-17 18:43:02 +08:00
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
2024-01-22 14:39:38 +08:00
<el-col v-if="form.STATUS === '0'" :span="12">
<el-form-item v-if="form.STATUS === '0'" prop="OPINION" label="打回原因:">
<el-input v-model="form.OPINION" :rows="2" type="textarea" placeholder="填写审批意见"/>
</el-form-item>
</el-col>
2024-01-22 15:23:02 +08:00
<el-col v-if="form.STATUS === '1' && isShow" :span="12">
2024-01-22 14:39:38 +08:00
<el-form-item v-if="form.STATUS === '1'" prop="APPOINT_USER_ID" label="指定监管部门审批人:">
2024-01-18 13:56:14 +08:00
<el-select v-model="form.user" style="width: 300px" placeholder="请选择" @change="chooseUser">
<el-option v-for="item in peopleList" :key="item.USER_ID" :value="JSON.stringify(item)" :label="item.NAME"/>
2024-01-17 18:43:02 +08:00
</el-select>
</el-form-item>
</el-col>
</el-row>
2023-12-18 20:24:01 +08:00
</el-form>
2024-01-17 18:43:02 +08:00
2023-12-18 20:24:01 +08:00
<div slot="footer" class="dialog-footer">
2024-01-17 18:43:02 +08:00
<el-button @click="handleClose"> </el-button>
2024-01-22 14:39:38 +08:00
<el-button type="primary" @click="sendMessage('1')"> </el-button>
2023-12-18 20:24:01 +08:00
</div>
</el-dialog>
</div>
</template>
<script>
import vueQr from 'vue-qr'
import Treeselect from '@riophae/vue-treeselect'
import { requestFN } from '@/utils/request'
export default {
components: { Treeselect, vueQr },
props: {
appendToBody: {
type: Boolean,
default: false
}
},
data() {
return {
visible: false,
loading: false,
2024-01-17 18:43:02 +08:00
form: {
2024-01-18 13:56:14 +08:00
STATUS: null,
2024-01-19 20:44:32 +08:00
APPOINT_CORP_ID: '',
APPOINT_CORP_NAME: '',
2024-01-18 13:56:14 +08:00
APPOINT_DEPARTMENT_ID: null,
APPOINT_DEPARTMENT_NAME: '',
APPOINT_USER_ID: null,
APPOINT_USER_NAME: '',
2024-01-22 14:39:38 +08:00
OPINION: '',
2024-01-18 13:56:14 +08:00
user: '',
tm: new Date().getTime(),
2024-01-22 15:23:02 +08:00
list: [],
isShow: true,
info: {}
2024-01-17 18:43:02 +08:00
},
2024-01-22 14:39:38 +08:00
rules: {
STATUS: [
{ required: true, message: '请选择是否通过', trigger: 'change' }
],
APPOINT_DEPARTMENT_ID: [
{ required: true, message: '请选择指定监管部门', trigger: 'change' }
],
APPOINT_USER_ID: [
{ required: true, message: '请选择指定监管部门审批人', trigger: 'change' }
],
OPINION: [
{ required: true, message: '请填写打回原因', trigger: 'change' }
]
},
2024-01-17 18:43:02 +08:00
heirloom: {},
normalizer(node) {
return {
id: node.id,
label: node.name,
children: node.nodes
}
},
departmentTree: [],
2024-01-22 18:11:54 +08:00
peopleList: [],
corpFlag: false
2023-12-18 20:24:01 +08:00
}
},
methods: {
2024-01-17 18:43:02 +08:00
async init(e) {
2024-01-22 15:23:02 +08:00
console.log(e)
2024-01-17 18:43:02 +08:00
this.loading = true
2023-12-18 20:24:01 +08:00
this.visible = true
this.heirloom = JSON.stringify(e)
2024-01-19 18:35:26 +08:00
this.form.list = JSON.stringify(e)
2024-01-22 15:23:02 +08:00
this.info = e[0]
if (this.info.FLOWS_TYPE === '0') {
if (this.info.FLOWS_STEP === 0) {
this.isShow = true
await this.getDepartmentTree()
2024-01-22 18:11:54 +08:00
this.corpFlag = false
2024-01-22 15:23:02 +08:00
} else {
this.isShow = false
}
} else {
this.isShow = true
2024-01-22 18:47:24 +08:00
if (this.info.FLOWS_STEP === 0 || this.info.FLOWS_STEP === 3 || this.info.FLOWS_STEP === 4) {
2024-01-22 18:11:54 +08:00
await this.getDepartmentTree()
this.corpFlag = false
2024-01-22 18:47:24 +08:00
if (this.info.FLOWS_STEP === 4) {
this.isShow = false
}
2024-01-22 18:11:54 +08:00
} else {
await this.getCorpDepartmentTree()
this.corpFlag = true
}
2024-01-22 15:23:02 +08:00
}
2024-01-17 18:43:02 +08:00
this.loading = false
2023-12-18 20:24:01 +08:00
},
2024-01-22 14:39:38 +08:00
sendMessage(e) {
this.$refs.form.validate((valid) => {
if (!valid) {
this.$message.error('请填写完整信息')
} else {
requestFN('/xgf/user/approve', this.form)
.then((data) => {
this.$message.success('推送成功')
this.visible = false
this.$emit('refresh', '')
})
.catch((e) => {
console.log(e)
})
}
})
2024-01-17 18:43:02 +08:00
},
getDepartmentTree() {
return new Promise(resolve => {
requestFN(
'/department/listTree',
{}
).then((data) => {
this.departmentTree = this.removeEmptyChildren(JSON.parse(data.zTreeNodes))
resolve(true)
}).catch((e) => {
})
})
},
2024-01-22 15:23:02 +08:00
getCorpDepartmentTree() {
return new Promise(resolve => {
requestFN(
'/openApi/corpDepartment/listTree',
{}
).then((data) => {
this.departmentTree = this.removeEmptyChildren(JSON.parse(data.zTreeNodes))
resolve(true)
}).catch((e) => {
})
})
},
2024-01-18 13:56:14 +08:00
getPeopleList(e) {
this.form.APPOINT_DEPARTMENT_NAME = e.name
2024-01-22 18:11:54 +08:00
if (!this.corpFlag) {
2024-01-22 15:23:02 +08:00
requestFN(
'/user/listAll',
{
DEPARTMENT_ID: e.id
}
).then((data) => {
this.peopleList = data.userList
}).catch((e) => {
console.log(e)
})
} else {
requestFN(
'/user/listAllManageAndCorp',
{
DEPARTMENT_ID: e.id
}
).then((data) => {
this.peopleList = data.userList
}).catch((e) => {
console.log(e)
})
}
2024-01-17 18:43:02 +08:00
},
2024-01-18 13:56:14 +08:00
chooseUser(e) {
const entity = JSON.parse(e)
this.form.APPOINT_USER_ID = entity.USER_ID
this.form.APPOINT_USER_NAME = entity.NAME
},
2024-01-17 18:43:02 +08:00
handleClose() {
this.form = {
2024-01-18 13:56:14 +08:00
STATUS: '',
2024-01-22 14:39:38 +08:00
APPOINT_DEPARTMENT_ID: null,
2024-01-18 13:56:14 +08:00
APPOINT_DEPARTMENT_NAME: '',
APPOINT_USER_ID: '',
APPOINT_USER_NAME: '',
user: '',
list: [],
tm: new Date().getTime()
2024-01-17 18:43:02 +08:00
}
this.visible = false
2024-01-18 13:56:14 +08:00
},
beforeClose() {
this.visible = false
this.form = {
STATUS: '',
2024-01-22 14:39:38 +08:00
APPOINT_DEPARTMENT_ID: null,
2024-01-18 13:56:14 +08:00
APPOINT_DEPARTMENT_NAME: '',
APPOINT_USER_ID: '',
APPOINT_USER_NAME: '',
user: '',
list: [],
tm: new Date().getTime()
}
2023-12-18 20:24:01 +08:00
}
}
}
</script>
<style lang="scss" scoped>
</style>