Browse Source

优化节点提示信息

lph 1 year ago
parent
commit
45015eda54

+ 2 - 2
zkqy-ui/src/views/system/bpmnPro/components/Panel/components/ElementAfterNode.vue

@@ -298,11 +298,11 @@ export default {
 
       console.log(fId, formType);
       if (!fId) {
-        this.$message.warning(`请在'常规信息'中绑定表单`);
+        this.$message.warning(`请在'流程常规信息'中绑定表单`);
         return;
       }
       if (formType == "") {
-        this.$message.warning(`请在'常规信息'中选择表单类型`);
+        this.$message.warning(`请在'流程常规信息'中选择表单类型`);
         return;
       }
       if (formType == "dragForm") {

+ 1 - 1
zkqy-ui/src/views/system/bpmnPro/components/Panel/components/ElementGenerations.vue

@@ -1,7 +1,7 @@
 <template>
   <el-collapse-item name="base-info">
     <template #title>
-      <collapse-title title="常规信息">
+      <collapse-title :title="`${isProcess ? '流程' : '节点'}常规信息`">
         <lucide-icon name="Info" />
       </collapse-title>
     </template>