Files
geg-gas-web/src/views/secondDev/createFlow.vue
2024-02-19 17:41:26 +08:00

180 lines
5.9 KiB
Vue

<template>
<div class="page-bg-wrap">
<div class="itc-create-flow">
<div class="toolbar">
<a-space :size="10" wrap>
<a-button style="margin-right: 10px">
<slot name="icon">
<close-outlined />
</slot>
关闭
</a-button>
<a-button type="primary">
<slot name="icon">
<send-outlined />
</slot>
提交
</a-button>
<a-button>
<slot name="icon">
<clock-circle-outlined />
</slot>
暂存
</a-button>
<a-button>
<slot name="icon">
<printer-outlined />
</slot>
打印
</a-button>
<a-button @click="openFlowChart">
<slot name="icon">
<apartment-outlined />
</slot>
流程图
</a-button>
</a-space>
</div>
<div class="flow-content">
<FormInformation :key="randKey" ref="formInformation" :disabled="false" :formAssignmentData="data.formAssignmentData" :formInfos="data.formInfos" :opinions="data.opinions" :opinionsComponents="data.opinionsComponents" />
</div>
</div>
<a-modal :visible="showFlowChart" centered class="geg" closable title="流程图" width="1200px">
<process-information :process-id="processId" :xml="data.xml" />
<template #footer>
<a-button type="primary" @click="closeFlowChart">关闭</a-button>
</template>
</a-modal>
</div>
</template>
<script setup>
import { useRouter } from 'vue-router';
import userTaskItem from '/@/views/workflow/task/hooks/userTaskItem';
import FormInformation from '/@/views/secondDev/FormInformation.vue';
import ProcessInformation from '/@/views/workflow/task/components/flow/ProcessInformation.vue';
import { getStartProcessInfo, getReStartProcessInfo } from '/@/api/workflow/task';
import { useMultipleTabStore } from '/@/store/modules/multipleTab';
import { CloseOutlined, SendOutlined, ClockCircleOutlined, PrinterOutlined, ApartmentOutlined } from '@ant-design/icons-vue';
const router = useRouter();
const tabStore = useMultipleTabStore();
import { nextTick, onMounted, ref, toRaw } from 'vue';
const { data, initProcessData } = userTaskItem();
const currentRoute = router.currentRoute;
const rParams = currentRoute.value.query;
const rSchemaId = rParams.schemaId;
let formInformation = ref();
const showFlowChart = ref(false);
let randKey = ref('randkey'); // 强制表单重新渲染
function closeFlowChart() {
showFlowChart.value = false;
}
function openFlowChart() {
showFlowChart.value = true;
}
const props = defineProps({
schemaId: {
type: String,
required: true
},
draftsJsonStr: {
type: String
},
draftsId: {
type: String
},
taskId: {
type: String,
required: false,
default: ''
},
processId: {
type: String,
required: false,
default: ''
},
formData: {
type: Object
},
formId: {
type: String
},
rowKeyData: {
type: String
}
});
onMounted(async () => {
try {
if (props.processId) {
// 重新发起
let res = await getReStartProcessInfo(props.taskId, props.processId);
res.taskApproveOpinions = [];
initProcessData(res);
} else if (props.schemaId && props.formId) {
let res = await getStartProcessInfo(props.schemaId);
if (props.formData && props.formId) {
res.formInfos.map((m) => {
if (m.formConfig.formId === props.formId) {
m.formData = toRaw(props.formData);
}
});
}
initProcessData(res);
} else {
// 发起流程
let res = await getStartProcessInfo(rSchemaId);
const title = res?.schemaInfo?.name;
if (title) {
tabStore.changeTitle('new_' + rSchemaId, '新建 - ' + title);
}
initProcessData(res);
}
} catch (error) {}
await nextTick();
initDraftsFormData();
randKey.value = Math.random() + '';
});
async function initDraftsFormData() {
//isPublish.value = Object.keys(data.formInfos).length > 0 ? false : true;
if (props.draftsJsonStr) {
let formDataJson = JSON.parse(props.draftsJsonStr);
let formData = [];
data.formInfos.forEach((item) => {
if (formDataJson && item.formConfig && item.formConfig.key && formDataJson[item.formConfig.key]) {
formData.push(item.formConfig.key ? formDataJson[item.formConfig.key] : {});
}
});
await formInformation.value.setFormData(formData);
}
}
</script>
<style lang="less">
.itc-create-flow {
padding: 10px;
background-color: #fff;
.toolbar {
padding-bottom: 15px;
border-bottom: 1px solid #eee;
}
}
.page-bg-wrap {
background-color: rgb(246 247 249);
padding: 10px;
}
</style>