|
@@ -24,7 +24,12 @@
|
|
<van-row style="margin-top: 0.1rem">
|
|
<van-row style="margin-top: 0.1rem">
|
|
<van-col
|
|
<van-col
|
|
:span="24">
|
|
:span="24">
|
|
- <van-steps :active="currentStep">
|
|
|
|
|
|
+ <van-steps
|
|
|
|
+ :active="currentStep"
|
|
|
|
+ finish-icon="checked"
|
|
|
|
+ active-color="#19a7fc"
|
|
|
|
+ active-icon="more"
|
|
|
|
+ >
|
|
<van-step v-for="item in nodeList">
|
|
<van-step v-for="item in nodeList">
|
|
{{item.nodeName}}
|
|
{{item.nodeName}}
|
|
</van-step>
|
|
</van-step>
|
|
@@ -68,6 +73,7 @@
|
|
<van-button
|
|
<van-button
|
|
icon="success"
|
|
icon="success"
|
|
type="primary"
|
|
type="primary"
|
|
|
|
+ @click="adoptShow = true"
|
|
size="small">
|
|
size="small">
|
|
审核通过
|
|
审核通过
|
|
</van-button>
|
|
</van-button>
|
|
@@ -101,17 +107,33 @@
|
|
v-model="repulseContent"
|
|
v-model="repulseContent"
|
|
rows="3"
|
|
rows="3"
|
|
autosize
|
|
autosize
|
|
- label="打回理由"
|
|
|
|
type="textarea"
|
|
type="textarea"
|
|
placeholder="请输入打回申请的理由"
|
|
placeholder="请输入打回申请的理由"
|
|
/>
|
|
/>
|
|
</van-dialog>
|
|
</van-dialog>
|
|
|
|
+ <van-dialog
|
|
|
|
+ v-model:show="adoptShow"
|
|
|
|
+ title="通过申请"
|
|
|
|
+ show-cancel-button
|
|
|
|
+ @cancel="adoptShow = false"
|
|
|
|
+ @confirm="confirmAdopt"
|
|
|
|
+ >
|
|
|
|
+ <van-field
|
|
|
|
+ v-model="adoptContent"
|
|
|
|
+ rows="3"
|
|
|
|
+ autosize
|
|
|
|
+ type="textarea"
|
|
|
|
+ placeholder="请输入通过申请的留言(选填)"
|
|
|
|
+ />
|
|
|
|
+ </van-dialog>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
-import { getExamineList, getProjectProcessId } from "@/api/approve";
|
|
|
|
|
|
+import { getExamineList, getProjectProcessId, processApproval } from "@/api/approve";
|
|
import { getProjectFile } from "@/api/project"
|
|
import { getProjectFile } from "@/api/project"
|
|
import { useUserStore } from "@/pinia/modules/user"
|
|
import { useUserStore } from "@/pinia/modules/user"
|
|
|
|
+import { showNotify } from "vant";
|
|
|
|
+import moment from "moment";
|
|
defineOptions({
|
|
defineOptions({
|
|
name: 'approveList',
|
|
name: 'approveList',
|
|
})
|
|
})
|
|
@@ -153,19 +175,26 @@ const fileCondition = reactive({
|
|
})
|
|
})
|
|
const fileList = reactive([])
|
|
const fileList = reactive([])
|
|
const openDetail = (data) => {
|
|
const openDetail = (data) => {
|
|
- const node = data.process.nodes
|
|
|
|
- nodeList.length = 0
|
|
|
|
- nodeList.push(...node)
|
|
|
|
- node.forEach(item => {
|
|
|
|
- if (item.ID === data.currentNodeOrder) {
|
|
|
|
- currentStep.value = item.order - 1
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- infoList.length = 0
|
|
|
|
- infoList.push(...data.descriptions)
|
|
|
|
- getProjectProcessId(data.ID).then(res => {
|
|
|
|
|
|
+ processId.value = data.ID
|
|
|
|
+ queryProjectProcessId(data.ID)
|
|
|
|
+ detailShow.value = true
|
|
|
|
+}
|
|
|
|
+const queryProjectProcessId = (id) => {
|
|
|
|
+ getProjectProcessId(id).then(res => {
|
|
if (res.code === 0) {
|
|
if (res.code === 0) {
|
|
const data = res.data
|
|
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(approvalData.projectProcess, data)
|
|
Object.assign(approvalData.projectProcess, data)
|
|
approvalData.description.projectProcessId = data.ID
|
|
approvalData.description.projectProcessId = data.ID
|
|
approvalData.description.nodeId = data.node.ID
|
|
approvalData.description.nodeId = data.node.ID
|
|
@@ -178,17 +207,32 @@ const openDetail = (data) => {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
})
|
|
})
|
|
- detailShow.value = true
|
|
|
|
}
|
|
}
|
|
-
|
|
|
|
const tabActive = ref(0)
|
|
const tabActive = ref(0)
|
|
-
|
|
|
|
const infoActive = ref(['1'])
|
|
const infoActive = ref(['1'])
|
|
|
|
|
|
|
|
+// 当前流程id
|
|
|
|
+const processId = ref(0)
|
|
// 打回申请
|
|
// 打回申请
|
|
const repulseShow = ref(false)
|
|
const repulseShow = ref(false)
|
|
const repulseContent = ref('')
|
|
const repulseContent = ref('')
|
|
const confirmRepulse = () => {
|
|
const confirmRepulse = () => {
|
|
|
|
+ if (repulseContent.value.length === 0) {
|
|
|
|
+ showNotify({ type: 'danger', message: '请输入打回申请的理由' })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ const date = moment()
|
|
|
|
+ approvalData.description.approvalOpinion = repulseContent.value
|
|
|
|
+ approvalData.description.approvalTime = date.format('YYYY-MM-DD')
|
|
|
|
+ approvalData.description.optionResult = '打回'
|
|
|
|
+ processApproval(approvalData).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ showNotify({ type: 'success', message: '打回成功' })
|
|
|
|
+ queryProjectProcessId(processId.value)
|
|
|
|
+ repulseContent.value = ''
|
|
|
|
+ repulseShow.value = false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
// 审核数据
|
|
// 审核数据
|
|
const approvalData = reactive({
|
|
const approvalData = reactive({
|
|
@@ -201,6 +245,23 @@ const approvalData = reactive({
|
|
optionResult: '通过'
|
|
optionResult: '通过'
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+// 审核通过
|
|
|
|
+const adoptShow = ref(false)
|
|
|
|
+const adoptContent = ref('')
|
|
|
|
+const confirmAdopt = () => {
|
|
|
|
+ const date = moment()
|
|
|
|
+ approvalData.description.approvalOpinion = adoptContent.value
|
|
|
|
+ approvalData.description.approvalTime = date.format('YYYY-MM-DD')
|
|
|
|
+ approvalData.description.optionResult = '通过'
|
|
|
|
+ processApproval(approvalData).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ showNotify({ type: 'success', message: '审核通过' })
|
|
|
|
+ queryProjectProcessId(processId.value)
|
|
|
|
+ adoptContent.value = ''
|
|
|
|
+ adoptShow.value = false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
//计算属性
|
|
//计算属性
|
|
const applyPeople = computed(() => {
|
|
const applyPeople = computed(() => {
|
|
return (name) => "申请人:" + name
|
|
return (name) => "申请人:" + name
|