Newer
Older
xc-business-system / src / views / equipement / standardStateMaintenance / revocation / detail.vue
<!-- 撤销申请 -->
<script lang="ts" name="standardStateMaintenanceChange" setup>
import templateEdit from '../commonComponents/templateEdit.vue'
import { SCHEDULE } from '@/utils/scheduleDict'
const $route = useRoute()
const processId = ref('')
onMounted(() => {
  processId.value = $route.query.processId as string // 流程实例id.value = $route.query.processId as string // 流程实例id
})
</script>

<template>
  <template-edit
    title="撤销"
    approval-type="3"
    :form-id="SCHEDULE.STANDARD_REVERT_APPROVAL"
    :process-id="processId"
  />
</template>