|
@@ -1,13 +1,233 @@
|
|
|
<template>
|
|
|
-
|
|
|
+ <van-cell-group>
|
|
|
+ <van-cell
|
|
|
+ v-for="item in applyList"
|
|
|
+ :title="item.projectProcessName"
|
|
|
+ :label="processType(item.projectType)"
|
|
|
+ :value="approvePeople(item.node.approver.nickName)"
|
|
|
+ :key="item.ID"
|
|
|
+ @click="openDetail(item)"
|
|
|
+ >
|
|
|
+ </van-cell>
|
|
|
+ </van-cell-group>
|
|
|
+ <van-popup
|
|
|
+ v-model:show="detailShow"
|
|
|
+ position="bottom"
|
|
|
+ style="height: 100%;"
|
|
|
+ >
|
|
|
+ <van-nav-bar
|
|
|
+ title="流程详情"
|
|
|
+ left-text="返回"
|
|
|
+ left-arrow
|
|
|
+ @click-left="detailShow = false"
|
|
|
+ />
|
|
|
+ <van-row style="margin-top: 0.1rem">
|
|
|
+ <van-col
|
|
|
+ :span="24">
|
|
|
+ <van-steps
|
|
|
+ :active="currentStep"
|
|
|
+ finish-icon="checked"
|
|
|
+ active-color="#19a7fc"
|
|
|
+ active-icon="more"
|
|
|
+ >
|
|
|
+ <van-step v-for="item in nodeList">
|
|
|
+ {{item.nodeName}}
|
|
|
+ </van-step>
|
|
|
+ </van-steps>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-tabs v-model:active="tabActive" class="tabsBox">
|
|
|
+ <van-tab title="流程信息" style="margin-top: 0.6rem">
|
|
|
+ <van-collapse v-model="infoActive">
|
|
|
+ <van-collapse-item
|
|
|
+ v-for="(item,index) in infoList"
|
|
|
+ :key="index + 'a'"
|
|
|
+ :title="item.optionResult"
|
|
|
+ :name="index">
|
|
|
+ {{item.approvalOpinion}}
|
|
|
+ </van-collapse-item>
|
|
|
+ </van-collapse>
|
|
|
+ </van-tab>
|
|
|
+ <van-tab title="流程文件">
|
|
|
+ <van-row style="margin-top: 0.7rem" justify="space-around">
|
|
|
+ <van-col>
|
|
|
+ <van-button
|
|
|
+ icon="plus"
|
|
|
+ type="primary"
|
|
|
+ size="small"
|
|
|
+ >
|
|
|
+ 补充文件
|
|
|
+ </van-button>
|
|
|
+ </van-col>
|
|
|
+ <van-col>
|
|
|
+ <van-button
|
|
|
+ icon="success"
|
|
|
+ type="primary"
|
|
|
+ size="small"
|
|
|
+ @click="supplyComplete"
|
|
|
+ >
|
|
|
+ 补充完毕
|
|
|
+ </van-button>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row style="margin-top: 0.7rem">
|
|
|
+ <van-col :span="24">
|
|
|
+ <van-cell-group>
|
|
|
+ <van-cell
|
|
|
+ v-for="item in fileList"
|
|
|
+ :key="item.ID"
|
|
|
+ size="large"
|
|
|
+ :title="item.name"
|
|
|
+ :value="fileId(item.ID)"
|
|
|
+ >
|
|
|
+ </van-cell>
|
|
|
+ </van-cell-group>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ </van-tab>
|
|
|
+ </van-tabs>
|
|
|
+ </van-popup>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
+import { getApplyList, getProjectProcessId, supplyFinish } from "@/api/approve"
|
|
|
+import { useUserStore } from "@/pinia/modules/user"
|
|
|
+import { getProjectFile } from "@/api/project";
|
|
|
+import { showConfirmDialog, showNotify } from "vant"
|
|
|
+const useUser = useUserStore()
|
|
|
defineOptions({
|
|
|
name: 'applyList',
|
|
|
})
|
|
|
+const condition = reactive({
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ },
|
|
|
+ userId: useUser.userInfo.userId
|
|
|
+})
|
|
|
+onMounted(() => {
|
|
|
+ queryApproveList()
|
|
|
+})
|
|
|
+// 获取申请人列表
|
|
|
+const applyList = reactive([])
|
|
|
+const queryApproveList = () => {
|
|
|
+ getApplyList(condition).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ const list = res.data.list
|
|
|
+ console.log('list', list)
|
|
|
+ applyList.length = 0
|
|
|
+ if (list.length !== 0) {
|
|
|
+ applyList.push(...list)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+// 申请步骤
|
|
|
+const currentStep = ref(0)
|
|
|
+// 申请详情.....................................
|
|
|
+const detailShow = ref(false)
|
|
|
+const processId = ref(0)
|
|
|
+const infoList = reactive([])
|
|
|
+const nodeList = reactive([])
|
|
|
+const fileList = reactive([])
|
|
|
+// 项目流程信息
|
|
|
+const comprehensive = reactive({})
|
|
|
+// 查询项目文件条件
|
|
|
+const fileCondition = reactive({
|
|
|
+ code: '',
|
|
|
+ name: '',
|
|
|
+ genre: 0,
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 1000
|
|
|
+ }
|
|
|
+})
|
|
|
+// 审核数据
|
|
|
+const approvalData = reactive({
|
|
|
+ projectProcess: {},
|
|
|
+ description: {
|
|
|
+ projectProcessId: 0,
|
|
|
+ approvalOpinion: '',
|
|
|
+ nodeId: 2,
|
|
|
+ approvalTime: '2024-09-23',
|
|
|
+ optionResult: '通过'
|
|
|
+ }
|
|
|
+})
|
|
|
+const openDetail = (data) => {
|
|
|
+ console.log(data)
|
|
|
+ processId.value = data.ID
|
|
|
+ queryProjectProcessId(data.ID)
|
|
|
+ detailShow.value = true
|
|
|
+}
|
|
|
+// 留言
|
|
|
+const tabActive = ref(0)
|
|
|
+const infoActive = ref(['1'])
|
|
|
+const queryProjectProcessId = (id) => {
|
|
|
+ getProjectProcessId(id).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ const data = res.data
|
|
|
+ infoList.length = 0
|
|
|
+ if (data.descriptions.length !== 0) {
|
|
|
+ infoList.push(...data.descriptions)
|
|
|
+ }
|
|
|
+ const node = data.process.nodes
|
|
|
+ nodeList.length = 0
|
|
|
+ nodeList.push(...node)
|
|
|
+ node.forEach(item => {
|
|
|
+ if (item.ID === data.currentNodeOrder) {
|
|
|
+ currentStep.value = item.order - 1
|
|
|
+ }
|
|
|
+ })
|
|
|
+ Object.assign(comprehensive, data)
|
|
|
+ Object.assign(approvalData.projectProcess, data)
|
|
|
+ approvalData.description.projectProcessId = data.ID
|
|
|
+ approvalData.description.nodeId = data.node.ID
|
|
|
+ fileCondition.code = data.code
|
|
|
+ getProjectFile(fileCondition).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ fileList.length = 0
|
|
|
+ fileList.push(...res.data.list)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const supplyComplete = () => {
|
|
|
+ showConfirmDialog({
|
|
|
+ message:
|
|
|
+ '请确认文件已补充完毕',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ supplyFinish(comprehensive.ID).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ showNotify({
|
|
|
+ type: 'success',
|
|
|
+ message: '申请已再次发送请等待审核结果'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 计算属性
|
|
|
+const processType = computed(() => {
|
|
|
+ return (type) => "类型:" + type
|
|
|
+})
|
|
|
+
|
|
|
+const approvePeople = computed(() => {
|
|
|
+ return (people) => "审批人:" + people
|
|
|
+})
|
|
|
+
|
|
|
+const fileId = computed(() => {
|
|
|
+ return (id) => "id:" + id
|
|
|
+})
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
-
|
|
|
+.tabsBox{
|
|
|
+ width: 100vw;
|
|
|
+}
|
|
|
</style>
|