defaultXML.ts 1.3 KB

1234567891011121314151617181920212223
  1. function generateRandomValue() {
  2. // 生成一个随机数
  3. const randomValue = Math.random().toString(36).slice(2, 12);
  4. return `Process_${randomValue}`;
  5. }
  6. const cartage: string = 'default';
  7. export default `<?xml version="1.0" encoding="UTF-8"?>
  8. <definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:bioc="http://bpmn.io/schema/bpmn/biocolor/1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:flowable="http://flowable.org/bpmn" targetNamespace="http://www.flowable.org/processdef">
  9. <process id="process_${generateRandomValue()}" name="name_${generateRandomValue()}">
  10. <startEvent id="startNode1" name="开始" />
  11. </process>
  12. <bpmndi:BPMNDiagram id="BPMNDiagram_flow">
  13. <bpmndi:BPMNPlane id="BPMNPlane_flow" bpmnElement="T-2d89e7a3-ba79-4abd-9f64-ea59621c258c">
  14. <bpmndi:BPMNShape id="BPMNShape_startNode1" bpmnElement="startNode1" bioc:stroke="">
  15. <omgdc:Bounds x="240" y="200" width="30" height="30" />
  16. <bpmndi:BPMNLabel>
  17. <omgdc:Bounds x="242" y="237" width="23" height="14" />
  18. </bpmndi:BPMNLabel>
  19. </bpmndi:BPMNShape>
  20. </bpmndi:BPMNPlane>
  21. </bpmndi:BPMNDiagram>
  22. </definitions>`;