ruoyi-nbcio-plus基于vue3的flowable增加开始节点的表单绑定修改

更多ruoyi-nbcio功能请看演示系统

gitee源代码地址

前后端代码: https://gitee.com/nbacheng/ruoyi-nbcio

演示地址:RuoYi-Nbcio后台管理系统 http://122.227.135.243:9666/

更多nbcio-boot功能请看演示系统 

gitee源代码地址

后端代码: https://gitee.com/nbacheng/nbcio-boot

前端代码:https://gitee.com/nbacheng/nbcio-vue.git

在线演示(包括H5) : http://122.227.135.243:9888

1、原先vue2代码如下:

<template>
  <div class="panel-tab__content">
    <el-form size="mini" label-width="90px" @submit.native.prevent>
      <el-form-item label="表单" prop="formKey">
        <el-select v-model="formKey" v-if = "appType[0].id === 'OA'" placeholder="请选择表单" @change="updateElementFormKey" clearable>
          <el-option v-for="item in formOptions" :key="item.formId" :label="item.formName" :value="`key_${item.formId}`" />
        </el-select>
        <el-select v-model="formKey" v-if = "appType[0].id === 'ZDYYW'" placeholder="请选择自定义业务表单" @change="updateElementFormKey" clearable>
          <el-option v-for="item in formOptions" :key="item.id" :label="item.businessName" :value="`key_${item.id}`" />
        </el-select>
      </el-form-item>
      <el-form-item prop="localScope">
        <span slot="label">
          <el-tooltip content="若为节点表单,则表单信息仅在此节点可用,默认为全局表单,表单信息在整个流程实例中可用" placement="top-start">
            <i class="header-icon el-icon-info"></i>
          </el-tooltip>
          <span>节点表单</span>
        </span>
        <el-switch :disabled="type === 'StartEvent'" v-model="localScope" active-text="是" inactive-text="否" @change="updateElementFormScope()" />
      </el-form-item>
    </el-form>

    <el-dialog :visible.sync="fieldOptionModelVisible" :title="optionModelTitle" width="600px" append-to-body destroy-on-close>
      <el-form :model="fieldOptionForm" size="mini" label-width="96px" @submit.native.prevent>
        <el-form-item label="编号/ID" v-if="fieldOptionType !== 'constraint'" key="option-id">
          <el-input v-model="fieldOptionForm.id" clearable />
        </el-form-item>
        <el-form-item label="名称" v-if="fieldOptionType !== 'property'" key="option-name">
          <el-input v-model="fieldOptionForm.name" clearable />
        </el-form-item>
        <el-form-item label="配置" v-if="fieldOptionType === 'constraint'" key="option-config">
          <el-input v-model="fieldOptionForm.config" clearable />
        </el-form-item>
        <el-form-item label="值" v-if="fieldOptionType === 'property'" key="option-value">
          <el-input v-model="fieldOptionForm.value" clearable />
        </el-form-item>
      </el-form>
      <template slot="footer">
        <el-button size="mini" @click="fieldOptionModelVisible = false">取 消</el-button>
        <el-button size="mini" type="primary" @click="saveFieldOption">确 定</el-button>
      </template>
    </el-dialog>
  </div>
</template>

<script>
import { listForm } from "@/api/workflow/form";
import { listCustomForm } from "@/api/workflow/customForm";

export default {
  name: "ElementForm",
  props: {
    id: String,
    type: String,
    appType: {
      type: Array,
      default: () => []
    }
  },
  inject: {
    prefix: "prefix",
    width: "width"
  },
  data() {
    return {
      formOptions: [],
      formKey: "",
      localScope: false,
      businessKey: "",
      optionModelTitle: "",
      fieldList: [],
      formFieldForm: {},
      fieldType: {
        long: "长整型",
        string: "字符串",
        boolean: "布尔类",
        date: "日期类",
        enum: "枚举类",
        custom: "自定义类型"
      },
      formFieldIndex: -1, // 编辑中的字段, -1 为新增
      formFieldOptionIndex: -1, // 编辑中的字段配置项, -1 为新增
      fieldModelVisible: false,
      fieldOptionModelVisible: false,
      fieldOptionForm: {}, // 当前激活的字段配置项数据
      fieldOptionType: "", // 当前激活的字段配置项弹窗 类型
      fieldEnumList: [], // 枚举值列表
      fieldConstraintsList: [], // 约束条件列表
      fieldPropertiesList: [] // 绑定属性列表
    };
  },
  watch: {
    id: {
      immediate: true,
      handler(val) {
        val && val.length && this.$nextTick(() => this.resetFormList());
      }
    }
  },
  created() {
    /** 查询流程分类列表 */
    this.getFormList();
  },
  methods: {
    /** 查询表单列表 */
    getFormList() {
      if(this.appType[0].id === 'OA' ) {
        listForm().then(response => {
          this.formOptions = response.rows;
          console.log("listForm this.formOptions=",this.formOptions);
        });
      }
      else if(this.appType[0].id === 'ZDYYW') {
        listCustomForm().then(response => {
          this.formOptions = response.rows;
          console.log("listCustomForm this.formOptions=",this.formOptions);
        });
      }

    },
    resetFormList() {
      this.bpmnELement = window.bpmnInstances.bpmnElement;
      this.formKey = this.bpmnELement.businessObject.formKey;
      this.localScope = this.bpmnELement.businessObject.localScope;
      // 获取元素扩展属性 或者 创建扩展属性
      this.elExtensionElements =
        this.bpmnELement.businessObject.get("extensionElements") || window.bpmnInstances.moddle.create("bpmn:ExtensionElements", { values: [] });
      // 获取元素表单配置 或者 创建新的表单配置
      // this.formData =
      //   this.elExtensionElements.values.filter(ex => ex.$type === `${this.prefix}:FormData`)?.[0] ||
      //   window.bpmnInstances.moddle.create(`${this.prefix}:FormData`, { fields: [] });
      // 业务标识 businessKey, 绑定在 formData 中
      // this.businessKey = this.formData.businessKey;

      // 保留剩余扩展元素,便于后面更新该元素对应属性
      this.otherExtensions = this.elExtensionElements.values.filter(ex => ex.$type !== `${this.prefix}:FormData`);

      // 复制原始值,填充表格
      // this.fieldList = JSON.parse(JSON.stringify(this.formData.fields || []));

      // 更新元素扩展属性,避免后续报错
      // this.updateElementExtensions();
    },
    updateElementFormKey() {
      window.bpmnInstances.modeling.updateProperties(this.bpmnELement, { formKey: this.formKey });
      if(this.type != 'StartEvent') {
        this.localScope = true;
        window.bpmnInstances.modeling.updateProperties(this.bpmnELement, { localScope: this.localScope });
      }
    },
    updateElementFormScope() {
      window.bpmnInstances.modeling.updateProperties(this.bpmnELement, { localScope: this.localScope });
    },
    updateElementBusinessKey() {
      window.bpmnInstances.modeling.updateModdleProperties(this.bpmnELement, this.formData, { businessKey: this.businessKey });
    },
    // 根据类型调整字段type
    changeFieldTypeType(type) {
      this.$set(this.formFieldForm, "type", type === "custom" ? "" : type);
    },

    // 打开字段详情侧边栏
    openFieldForm(field, index) {
      this.formFieldIndex = index;
      if (index !== -1) {
        const FieldObject = this.formData.fields[index];
        this.formFieldForm = JSON.parse(JSON.stringify(field));
        // 设置自定义类型
        this.$set(this.formFieldForm, "typeType", !this.fieldType[field.type] ? "custom" : field.type);
        // 初始化枚举值列表
        field.type === "enum" && (this.fieldEnumList = JSON.parse(JSON.stringify(FieldObject?.values || [])));
        // 初始化约束条件列表
        this.fieldConstraintsList = JSON.parse(JSON.stringify(FieldObject?.validation?.constraints || []));
        // 初始化自定义属性列表
        this.fieldPropertiesList = JSON.parse(JSON.stringify(FieldObject?.properties?.values || []));
      } else {
        this.formFieldForm = {};
        // 初始化枚举值列表
        this.fieldEnumList = [];
        // 初始化约束条件列表
        this.fieldConstraintsList = [];
        // 初始化自定义属性列表
        this.fieldPropertiesList = [];
      }
      this.fieldModelVisible = true;
    },
    // 打开字段 某个 配置项 弹窗
    openFieldOptionForm(option, index, type) {
      this.fieldOptionModelVisible = true;
      this.fieldOptionType = type;
      this.formFieldOptionIndex = index;
      if (type === "property") {
        this.fieldOptionForm = option ? JSON.parse(JSON.stringify(option)) : {};
        return (this.optionModelTitle = "属性配置");
      }
      if (type === "enum") {
        this.fieldOptionForm = option ? JSON.parse(JSON.stringify(option)) : {};
        return (this.optionModelTitle = "枚举值配置");
      }
      this.fieldOptionForm = option ? JSON.parse(JSON.stringify(option)) : {};
      return (this.optionModelTitle = "约束条件配置");
    },

    // 保存字段 某个 配置项
    saveFieldOption() {
      if (this.formFieldOptionIndex === -1) {
        if (this.fieldOptionType === "property") {
          this.fieldPropertiesList.push(this.fieldOptionForm);
        }
        if (this.fieldOptionType === "constraint") {
          this.fieldConstraintsList.push(this.fieldOptionForm);
        }
        if (this.fieldOptionType === "enum") {
          this.fieldEnumList.push(this.fieldOptionForm);
        }
      } else {
        this.fieldOptionType === "property" && this.fieldPropertiesList.splice(this.formFieldOptionIndex, 1, this.fieldOptionForm);
        this.fieldOptionType === "constraint" && this.fieldConstraintsList.splice(this.formFieldOptionIndex, 1, this.fieldOptionForm);
        this.fieldOptionType === "enum" && this.fieldEnumList.splice(this.formFieldOptionIndex, 1, this.fieldOptionForm);
      }
      this.fieldOptionModelVisible = false;
      this.fieldOptionForm = {};
    },
    // 保存字段配置
    saveField() {
      const { id, type, label, defaultValue, datePattern } = this.formFieldForm;
      const Field = window.bpmnInstances.moddle.create(`${this.prefix}:FormField`, { id, type, label });
      defaultValue && (Field.defaultValue = defaultValue);
      datePattern && (Field.datePattern = datePattern);
      // 构建属性
      if (this.fieldPropertiesList && this.fieldPropertiesList.length) {
        const fieldPropertyList = this.fieldPropertiesList.map(fp => {
          return window.bpmnInstances.moddle.create(`${this.prefix}:Property`, { id: fp.id, value: fp.value });
        });
        Field.properties = window.bpmnInstances.moddle.create(`${this.prefix}:Properties`, { values: fieldPropertyList });
      }
      // 构建校验规则
      if (this.fieldConstraintsList && this.fieldConstraintsList.length) {
        const fieldConstraintList = this.fieldConstraintsList.map(fc => {
          return window.bpmnInstances.moddle.create(`${this.prefix}:Constraint`, { name: fc.name, config: fc.config });
        });
        Field.validation = window.bpmnInstances.moddle.create(`${this.prefix}:Validation`, { constraints: fieldConstraintList });
      }
      // 构建枚举值
      if (this.fieldEnumList && this.fieldEnumList.length) {
        Field.values = this.fieldEnumList.map(fe => {
          return window.bpmnInstances.moddle.create(`${this.prefix}:Value`, { name: fe.name, id: fe.id });
        });
      }
      // 更新数组 与 表单配置实例
      if (this.formFieldIndex === -1) {
        this.fieldList.push(this.formFieldForm);
        this.formData.fields.push(Field);
      } else {
        this.fieldList.splice(this.formFieldIndex, 1, this.formFieldForm);
        this.formData.fields.splice(this.formFieldIndex, 1, Field);
      }
      this.updateElementExtensions();
      this.fieldModelVisible = false;
    },

    // 移除某个 字段的 配置项
    removeFieldOptionItem(option, index, type) {
      if (type === "property") {
        this.fieldPropertiesList.splice(index, 1);
        return;
      }
      if (type === "enum") {
        this.fieldEnumList.splice(index, 1);
        return;
      }
      this.fieldConstraintsList.splice(index, 1);
    },
    // 移除 字段
    removeField(field, index) {
      this.fieldList.splice(index, 1);
      this.formData.fields.splice(index, 1);
      this.updateElementExtensions();
    },

    updateElementExtensions() {
      // 更新回扩展元素
      const newElExtensionElements = window.bpmnInstances.moddle.create(`bpmn:ExtensionElements`, {
        values: this.otherExtensions.concat(this.formData)
      });
      // 更新到元素上
      window.bpmnInstances.modeling.updateProperties(this.bpmnELement, {
        extensionElements: newElExtensionElements
      });
    }
  }
};
</script>

2、修改成vue3代码如下:

<template>
  <div class="panel-tab__content">
    <el-form size="mini" label-width="90px" @submit.native.prevent>
      <el-form-item label="表单" prop="formKey">
        <el-select v-model="formKey" v-if = "appType[0].id === 'OA'" placeholder="请选择表单" @change="updateElementFormKey" clearable>
          <el-option v-for="item in formOptions" :key="item.formId" :label="item.formName" :value="`key_${item.formId}`" />
        </el-select>
        <el-select v-model="formKey" v-if = "appType[0].id === 'ZDYYW'" placeholder="请选择自定义业务表单" @change="updateElementFormKey" clearable>
          <el-option v-for="item in formOptions" :key="item.id" :label="item.businessName" :value="`key_${item.id}`" />
        </el-select>
      </el-form-item>
      <el-form-item prop="localScope">
        <span slot="label">
          <el-tooltip content="若为节点表单,则表单信息仅在此节点可用,默认为全局表单,表单信息在整个流程实例中可用" placement="top-start">
            <i class="header-icon el-icon-info"></i>
          </el-tooltip>
          <span>节点表单</span>
        </span>
        <el-switch :disabled="type === 'StartEvent'" v-model="localScope" active-text="是" inactive-text="否" @change="updateElementFormScope()" />
      </el-form-item>
    </el-form>

    <el-dialog :visible.sync="fieldOptionModelVisible" :title="optionModelTitle" width="600px" append-to-body destroy-on-close>
      <el-form :model="fieldOptionForm" size="mini" label-width="96px" @submit.native.prevent>
        <el-form-item label="编号/ID" v-if="fieldOptionType !== 'constraint'" key="option-id">
          <el-input v-model="fieldOptionForm.id" clearable />
        </el-form-item>
        <el-form-item label="名称" v-if="fieldOptionType !== 'property'" key="option-name">
          <el-input v-model="fieldOptionForm.name" clearable />
        </el-form-item>
        <el-form-item label="配置" v-if="fieldOptionType === 'constraint'" key="option-config">
          <el-input v-model="fieldOptionForm.config" clearable />
        </el-form-item>
        <el-form-item label="值" v-if="fieldOptionType === 'property'" key="option-value">
          <el-input v-model="fieldOptionForm.value" clearable />
        </el-form-item>
      </el-form>
      <template slot="footer">
        <el-button size="mini" @click="fieldOptionModelVisible = false">取 消</el-button>
        <el-button size="mini" type="primary" @click="saveFieldOption">确 定</el-button>
      </template>
    </el-dialog>
  </div>
</template>

<script lang="ts" setup>
  import { listForm } from "@/api/workflow/form";
  import { listCustomForm } from "@/api/workflow/customForm";

  defineOptions({ name: 'ElementForm' })
  const props = defineProps({
    id: String,
    type: String,
    appType: {
        type: Array,
        default: () => []
    }
  })

  const prefix = inject('prefix')
  //const width = inject('width')

  const formOptions = ref<any[]>([])
  const formKey = ref('')
  const localScope= ref(false)
  const businessKey = ref('')
  const optionModelTitle = ref('')
  const fieldList = ref<any[]>([])
  const formFieldForm = ref<any>({})
  const fieldType = ref({
    long: '长整型',
    string: '字符串',
    boolean: '布尔类',
    date: '日期类',
    enum: '枚举类',
    custom: '自定义类型'
  })

  const formFieldIndex = ref(-1) // 编辑中的字段, -1 为新增
  const formFieldOptionIndex = ref(-1) // 编辑中的字段配置项, -1 为新增
  const fieldModelVisible = ref(false)
  const fieldOptionModelVisible = ref(false)
  const fieldOptionForm = ref<any>({}) // 当前激活的字段配置项数据
  const fieldOptionType = ref('') // 当前激活的字段配置项弹窗 类型
  const fieldEnumList = ref<any[]>([]) // 枚举值列表
  const fieldConstraintsList = ref<any[]>([]) // 约束条件列表
  const fieldPropertiesList = ref<any[]>([]) // 绑定属性列表
  const bpmnELement = ref()
  const elExtensionElements = ref()
  const formData = ref()
  const otherExtensions = ref()


  watch(
    () => props.id,
    (val) => {
      val &&
        val.length &&
        nextTick(() => {
          resetFormList()
        })
    },
    { immediate: true }
  )

  /** 查询表单列表 */
  const getFormList = () => {
    console.log("getFormList appType",props.appType);
    const appType = toRaw(props.appType);
    console.log("getFormList appType",appType);
    if(appType && appType[0].id === 'OA' ) {
      listForm().then(response => {
        formOptions.value = response.rows;
        console.log("listForm formOptions=",formOptions);
      });
    }
    else if(appType && appType[0].id === 'ZDYYW') {
      listCustomForm().then(response => {
        formOptions.value = response.rows;
        console.log("listCustomForm formOptions=",formOptions);
      });
    }
  }

  const bpmnInstances = () => (window as any)?.bpmnInstances
  const resetFormList = () => {
    bpmnELement.value = bpmnInstances().bpmnElement
    formKey.value = bpmnELement.value.businessObject.formKey
    localScope.value = bpmnELement.value.businessObject.localScope;
    // 获取元素扩展属性 或者 创建扩展属性
    elExtensionElements.value =
      bpmnELement.value.businessObject.get('extensionElements') ||
      bpmnInstances().moddle.create('bpmn:ExtensionElements', { values: [] })
    // 获取元素表单配置 或者 创建新的表单配置
    formData.value =
      elExtensionElements.value.values.filter((ex) => ex.$type === `${prefix}:FormData`)?.[0] ||
      bpmnInstances().moddle.create(`${prefix}:FormData`, { fields: [] })

    // 业务标识 businessKey, 绑定在 formData 中
    businessKey.value = formData.value.businessKey

    // 保留剩余扩展元素,便于后面更新该元素对应属性
    otherExtensions.value = elExtensionElements.value.values.filter(
      (ex) => ex.$type !== `${prefix}:FormData`
    )

    // 复制原始值,填充表格
    fieldList.value = JSON.parse(JSON.stringify(formData.value.fields || []))

    // 更新元素扩展属性,避免后续报错
    updateElementExtensions()
  }
  const updateElementFormKey = () => {
    bpmnInstances().modeling.updateProperties(toRaw(bpmnELement.value), {
      formKey: formKey.value
    })
    if(props.type != 'StartEvent') {
      localScope.value = true;
      bpmnInstances().modeling.updateProperties(toRaw(bpmnELement.value), { localScope: localScope.value });
    }
  }

  const updateElementFormScope = () => {
        bpmnInstances().modeling.updateModdleProperties(toRaw(bpmnELement.value), { localScope: localScope.value });
  }

  const updateElementBusinessKey = () => {
    bpmnInstances().modeling.updateModdleProperties(toRaw(bpmnELement.value), formData.value, {
      businessKey: businessKey.value
    })
  }
  // 根据类型调整字段type
  const changeFieldTypeType = (type) => {
    // this.$set(this.formFieldForm, "type", type === "custom" ? "" : type);
    formFieldForm.value['type'] = type === 'custom' ? '' : type
  }

  // 打开字段详情侧边栏
  const openFieldForm = (field, index) => {
    formFieldIndex.value = index
    if (index !== -1) {
      const FieldObject = formData.value.fields[index]
      formFieldForm.value = JSON.parse(JSON.stringify(field))
      // 设置自定义类型
      // this.$set(this.formFieldForm, "typeType", !this.fieldType[field.type] ? "custom" : field.type);
      formFieldForm.value['typeType'] = !fieldType.value[field.type] ? 'custom' : field.type
      // 初始化枚举值列表
      field.type === 'enum' &&
        (fieldEnumList.value = JSON.parse(JSON.stringify(FieldObject?.values || [])))
      // 初始化约束条件列表
      fieldConstraintsList.value = JSON.parse(
        JSON.stringify(FieldObject?.validation?.constraints || [])
      )
      // 初始化自定义属性列表
      fieldPropertiesList.value = JSON.parse(JSON.stringify(FieldObject?.properties?.values || []))
    } else {
      formFieldForm.value = {}
      // 初始化枚举值列表
      fieldEnumList.value = []
      // 初始化约束条件列表
      fieldConstraintsList.value = []
      // 初始化自定义属性列表
      fieldPropertiesList.value = []
    }
    fieldModelVisible.value = true
  }
  // 打开字段 某个 配置项 弹窗
  const openFieldOptionForm = (option, index, type) => {
    fieldOptionModelVisible.value = true
    fieldOptionType.value = type
    formFieldOptionIndex.value = index
    if (type === 'property') {
      fieldOptionForm.value = option ? JSON.parse(JSON.stringify(option)) : {}
      return (optionModelTitle.value = '属性配置')
    }
    if (type === 'enum') {
      fieldOptionForm.value = option ? JSON.parse(JSON.stringify(option)) : {}
      return (optionModelTitle.value = '枚举值配置')
    }
    fieldOptionForm.value = option ? JSON.parse(JSON.stringify(option)) : {}
    return (optionModelTitle.value = '约束条件配置')
  }

  // 保存字段 某个 配置项
  const saveFieldOption = () => {
    if (formFieldOptionIndex.value === -1) {
      if (fieldOptionType.value === 'property') {
        fieldPropertiesList.value.push(fieldOptionForm.value)
      }
      if (fieldOptionType.value === 'constraint') {
        fieldConstraintsList.value.push(fieldOptionForm.value)
      }
      if (fieldOptionType.value === 'enum') {
        fieldEnumList.value.push(fieldOptionForm.value)
      }
    } else {
      fieldOptionType.value === 'property' &&
        fieldPropertiesList.value.splice(formFieldOptionIndex.value, 1, fieldOptionForm.value)
      fieldOptionType.value === 'constraint' &&
        fieldConstraintsList.value.splice(formFieldOptionIndex.value, 1, fieldOptionForm.value)
      fieldOptionType.value === 'enum' &&
        fieldEnumList.value.splice(formFieldOptionIndex.value, 1, fieldOptionForm.value)
    }
    fieldOptionModelVisible.value = false
    fieldOptionForm.value = {}
  }
  // 保存字段配置
  const saveField = () => {
    const { id, type, label, defaultValue, datePattern } = formFieldForm.value
    const Field = bpmnInstances().moddle.create(`${prefix}:FormField`, { id, type, label })
    defaultValue && (Field.defaultValue = defaultValue)
    datePattern && (Field.datePattern = datePattern)
    // 构建属性
    if (fieldPropertiesList.value && fieldPropertiesList.value.length) {
      const fieldPropertyList = fieldPropertiesList.value.map((fp) => {
        return bpmnInstances().moddle.create(`${prefix}:Property`, {
          id: fp.id,
          value: fp.value
        })
      })
      Field.properties = bpmnInstances().moddle.create(`${prefix}:Properties`, {
        values: fieldPropertyList
      })
    }
    // 构建校验规则
    if (fieldConstraintsList.value && fieldConstraintsList.value.length) {
      const fieldConstraintList = fieldConstraintsList.value.map((fc) => {
        return bpmnInstances().moddle.create(`${prefix}:Constraint`, {
          name: fc.name,
          config: fc.config
        })
      })
      Field.validation = bpmnInstances().moddle.create(`${prefix}:Validation`, {
        constraints: fieldConstraintList
      })
    }
    // 构建枚举值
    if (fieldEnumList.value && fieldEnumList.value.length) {
      Field.values = fieldEnumList.value.map((fe) => {
        return bpmnInstances().moddle.create(`${prefix}:Value`, { name: fe.name, id: fe.id })
      })
    }
    // 更新数组 与 表单配置实例
    if (formFieldIndex.value === -1) {
      fieldList.value.push(formFieldForm.value)
      formData.value.fields.push(Field)
    } else {
      fieldList.value.splice(formFieldIndex.value, 1, formFieldForm.value)
      formData.value.fields.splice(formFieldIndex.value, 1, Field)
    }
    updateElementExtensions()
    fieldModelVisible.value = false
  }

  // 移除某个 字段的 配置项
  const removeFieldOptionItem = (option, index, type) => {
    console.log(option, 'option')
    if (type === 'property') {
      fieldPropertiesList.value.splice(index, 1)
      return
    }
    if (type === 'enum') {
      fieldEnumList.value.splice(index, 1)
      return
    }
    fieldConstraintsList.value.splice(index, 1)
  }
  // 移除 字段
  const removeField = (field, index) => {
    fieldList.value.splice(index, 1)
    formData.value.fields.splice(index, 1)
    updateElementExtensions()
  }

  const updateElementExtensions = () => {
    // 更新回扩展元素
    const newElExtensionElements = bpmnInstances().moddle.create(`bpmn:ExtensionElements`, {
      values: otherExtensions.value.concat(formData.value)
    })
    // 更新到元素上
    bpmnInstances().modeling.updateProperties(toRaw(bpmnELement.value), {
      extensionElements: newElExtensionElements
    })
  }

  onMounted(() => {
    /** 查询流程分类列表 */
    getFormList();
  })

</script>

3、效果图如下:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/481341.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

Python文件读写操作

文件操作注意点 注意点&#xff1a; 1. for line in file --> 会将偏移量移到末尾 2. buffering1 --> 缓冲区中遇到换行就刷新&#xff0c;即向磁盘中写入 3. 读操作结束后&#xff0c;文本偏移量就会移动到读操作结束位置 """编写一个程序,循环不停的写入…

快速区分清楚图形渲染中的AABB,KD树和BVH这些概念

快速区分清楚图形渲染中的AABB&#xff0c;KD树和BVH这些概念 主要想形象去区分好这些术语&#xff0c;目的是扫盲&#xff0c;先开好坑&#xff0c;内容持续填充。 0.先摆出这些词的全称 AABB&#xff1a; 原名&#xff1a;axis aligned bounding box&#xff1b;中文直译名…

Java语法学习八之认识String类

String类的重要性 在C语言中已经涉及到字符串了&#xff0c;但是在C语言中要表示字符串只能使用字符数组或者字符指针&#xff0c;可以使用标准库提供的字符串系列函数完成大部分操作&#xff0c;但是这种将数据和操作数据方法分离开的方式不符合面相对象的思想&#xff0c;而…

高效的Gitlab Flow最佳实践

文章目录 一、git flow二、github flow三、gitlab flow四、基于gitlab flow的最佳实践1.语义化版本号2.测试发布3.bug修复 参考 业界包含三种flow&#xff1a; Git flowGithub flowGitlab flow 三种工作流程&#xff0c;有一个共同点&#xff1a;都采用"功能驱动式开发&…

计算机二级Python基础操作题

题目来源&#xff1a;计算机二级Python半个月抱佛脚大法&#xff08;内呈上真题版&#xff09; - 知乎 第4&#xff0c;5&#xff0c;6&#xff0c;7&#xff0c;9&#xff0c;10&#xff0c;11套 1. 基础题1 sinput() print("{:\"^30x}".format(eval(s))) b …

xilinx linux AXI GPIO 驱动学习

vivado工程 vivado 配置一个 AXI GPIO&#xff0c; 全输出&#xff0c;宽度为1 设备树解读 生成的对应pl.dtsi设备树文件如下 axi_gpio: gpio40020000 {#gpio-cells <2>;clock-names "s_axi_aclk";clocks <&clkc 15>;compatible "xlnx,…

海外盲盒App开发:探索惊喜与乐趣的跨国新体验

在全球化日益加速的今天&#xff0c;人们对新鲜、有趣、充满惊喜的体验需求不断增长。盲盒作为一种充满神秘与乐趣的玩法&#xff0c;正迅速在全球范围内走红。为了满足广大海外用户的盲盒体验需求&#xff0c;我们致力于开发一款海外盲盒App&#xff0c;为用户带来跨国界的惊喜…

C#,图论与图算法,计算无向连通图中长度为n环的算法与源代码

1 无向连通图中长度为n环 给定一个无向连通图和一个数n,计算图中长度为n的环的总数。长度为n的循环仅表示该循环包含n个顶点和n条边。我们必须统计存在的所有这样的环。 为了解决这个问题,可以有效地使用DFS(深度优先搜索)。使用DFS,我们可以找到特定源(或起点)的长度…

高精度AI火灾烟雾检测算法,助力打造更加安全的楼宇环境

一、方案背景 近日&#xff0c;南京居民楼火灾事故导致15人死亡的新闻闹得沸沸扬扬&#xff0c;这一事件又激起了大家对楼宇火灾隐患的进一步担忧。事后我们除了思考政府、消防及物业部门应对此事的解决办法&#xff0c;我们还应该思考如何利用现有的技术帮助人们减少此类事情的…

手撕算法-无重复字符的最长子串

描述 分析 滑动窗口&#xff0c;记录窗口中的所有出现的字符&#xff0c;然后窗口左边界固定&#xff0c;右边界右滑&#xff0c;如果&#xff0c;窗口中不存在新的字符&#xff0c;则右滑成功&#xff0c;否则左边界右滑&#xff0c;直到窗口中不存在右边界的值。 描述感觉不…

Linux初学(八)磁盘管理

一、磁盘管理 1.1 简介 磁盘的工作原理&#xff1a; 添加磁盘对磁盘进行分区格式化磁盘挂载和使用磁盘 磁盘的类型&#xff1a; 固态机械 磁盘的接口类型&#xff1a; IDESTSTSCSI 磁盘工作的原理&#xff1a; 磁盘&#xff0c;特别是硬盘&#xff0c;和内存不同&#xff0c;…

【网络基础】网络层基本协议介绍

目录 一、IP数据包 1.1 网络层的功能 1.2 IP数据包格式 二、ICMP协议介绍 2.1 作用 2.2 常用命令 2.2.1 Ping命令 2.2.2 tracert命令 2.3 广播域 三、ARP协议介绍 3.1 作用 3.2 原理 一、IP数据包 1.1 网络层的功能 定义了基于IP协议的逻辑地址&#xff0c;就是I…

IDEA使用手册

天行健&#xff0c;君子以自强不息&#xff1b;地势坤&#xff0c;君子以厚德载物。 每个人都有惰性&#xff0c;但不断学习是好好生活的根本&#xff0c;共勉&#xff01; 文章均为学习整理笔记&#xff0c;分享记录为主&#xff0c;如有错误请指正&#xff0c;共同学习进步。…

优化选址问题 | 基于禁忌搜索算法求解基站选址问题含Matlab源码

目录 问题代码问题 禁忌搜索算法(Tabu Search)是一种局部搜索算法的扩展,它通过引入一个禁忌列表来避免陷入局部最优解,并允许在一定程度上接受较差的解来跳出局部最优。在基站选址问题中,我们可以使用禁忌搜索算法来寻找满足覆盖要求且基站数量最少的选址方案。 以下是…

无人机采集图像的相关知识

1.飞行任务规划 一般使用飞行任务规划软件进行飞行任务的设计&#xff0c;软件可以自动计算相机覆盖和图像重叠情况。比如ArduPilot (ArduPilot - Versatile, Trusted, Open) 和UgCS (http://www.ugcs.com)是两个飞行任务规划软件&#xff0c;可以适用大多数无人机系统。 2.图…

Java 模拟Spring,实现IOC和AOP的核心(二)

接着上一篇&#xff0c;在上一篇完成了有关IOC的注解实现&#xff0c;这一篇用XML的方式实现IOC&#xff0c;并且完成AOP。 简易的IOC框图 注解的方式实现了左边的分支&#xff0c;那么就剩下右边的XML分支&#xff1a; XmlContext&#xff1a; 这个类是也是AbstractApplicat…

海量数据处理项目-技术Leader必备方法论-SMART衡量需求-工作的利器

海量数据处理项目-技术Leader必备方法论-SMART衡量需求-工作的利器

阿里的库存秒杀是如何实现的?

一、阿里的库存秒杀的实现 阿里有很多业务&#xff0c;几十上百个业务线&#xff0c;各自都有一些需要做抢购、秒杀、热点扣将的场景。他们都用哪些方案呢? 我看了很多资料&#xff0c;也找了很多人做交流&#xff0c;最终得到的结论是啥都有&#xff0c;主要总结几个主流的&…

STM32 ESP8266模块的曲折探索

这是本文的配套资料&#xff0c;最终工程请参考 新_ESP8266资料\stm32f103成功移植的项目 【免费】stm32f103c8t6esp8266资料资源-CSDN文库 一、等到了ready 产品参数 我使用的是ai-thinker的esp8266-01s&#xff0c;以下为产品规格书 引脚定义&#xff1a; 依据引脚定义&…

【深度学习目标检测】二十四、基于深度学习的疲劳驾驶检测系统-含数据集、GUI和源码(python,yolov8)

设计一个疲劳驾驶检测系统的重要性主要体现在以下几个方面&#xff1a; 提高道路安全&#xff1a;疲劳驾驶是引发交通事故的重要因素之一。驾驶员在长时间驾驶或缺乏休息的情况下&#xff0c;反应速度和判断能力会显著下降&#xff0c;从而增加事故风险。通过实时检测驾驶员的疲…