Bladeren bron

923 JFlow微服务集成完成

LT32820A 2 maanden geleden
bovenliggende
commit
59045e0584

+ 4 - 4
jeecg-boot/jeecg-server-cloud/jeecg-system-cloud-start/pom.xml

@@ -37,10 +37,10 @@
             </exclusions>
         </dependency>
         <!-- 引入lttc-module-systemo依赖 -->
-        <dependency>
-            <groupId>cn.lttc</groupId>
-            <artifactId>lttc-module-system</artifactId>
-        </dependency>
+<!--        <dependency>-->
+<!--            <groupId>cn.lttc</groupId>-->
+<!--            <artifactId>lttc-module-system</artifactId>-->
+<!--        </dependency>-->
 
 
 <!--        <dependency>-->

+ 1 - 1
jeecgboot-vue3/src/views/appmanage/addForm/Step4.vue

@@ -456,8 +456,8 @@ export default defineComponent({
       }else {  // 作为新增表单时的 移除新增用户列表数据
         const index = addForm_newlyUserData.value.findIndex(item => item.key === id); // 查找 id 相等的对象的索引
         if (index !== -1) {
-          data.value.push(addForm_newlyUserData.value[index])
           addForm_newlyUserData.value.splice(index, 1); // 从原集合中移除该对象
+          this.clearConditionAndData()
         }
       }
     },