Commit f6f79321a61d3bf464a2cde66f024084d2e5316f

Authored by zhangdaiscott
1 parent 50572167

【issues/I515ZE】online代码生成vue3,activeKey.value不需要ref赋值]

jeecg-boot/jeecg-boot-module-system/src/main/resources/jeecg/code-template-online/inner-table/onetomany/java/${bussiPackage}/${entityPackage}/vue3/components/${entityName}Modal.vuei
... ... @@ -110,7 +110,7 @@
110 110  
111 111 async function reset(){
112 112 await resetFields();
113   - activeKey.value = ref('${subTables[0].entityName?uncap_first}');
  113 + activeKey.value = '${subTables[0].entityName?uncap_first}';
114 114 <#list subTables as sub>
115 115 <#if sub.foreignRelationType =='0'>
116 116 ${sub.entityName?uncap_first}Table.dataSource = [];
... ...
jeecg-boot/jeecg-boot-module-system/src/main/resources/jeecg/code-template-online/jvxe/onetomany/java/${bussiPackage}/${entityPackage}/vue3/components/${entityName}Modal.vuei
... ... @@ -110,7 +110,7 @@
110 110  
111 111 async function reset(){
112 112 await resetFields();
113   - activeKey.value = ref('${subTables[0].entityName?uncap_first}');
  113 + activeKey.value = '${subTables[0].entityName?uncap_first}';
114 114 <#list subTables as sub>
115 115 <#if sub.foreignRelationType =='0'>
116 116 ${sub.entityName?uncap_first}Table.dataSource = [];
... ...
jeecg-boot/jeecg-boot-module-system/src/main/resources/jeecg/code-template-online/tab/onetomany/java/${bussiPackage}/${entityPackage}/vue3/components/${entityName}Modal.vuei
... ... @@ -114,7 +114,7 @@
114 114  
115 115 async function reset(){
116 116 await resetFields();
117   - activeKey.value = ref('${tableVo.entityName?uncap_first}');
  117 + activeKey.value = '${tableVo.entityName?uncap_first}';
118 118 <#list subTables as sub>
119 119 <#if sub.foreignRelationType =='0'>
120 120 ${sub.entityName?uncap_first}Table.dataSource = [];
... ...
jeecg-boot/jeecg-boot-module-system/src/main/resources/jeecg/code-template/onetomany/java/${bussiPackage}/${entityPackage}/vue3/modules/${entityName}Modal.vuei
... ... @@ -80,7 +80,7 @@
80 80  
81 81 async function reset(){
82 82 await resetFields();
83   - activeKey.value = ref('${subTables[0].entityName?uncap_first}');
  83 + activeKey.value = '${subTables[0].entityName?uncap_first}';
84 84 <#list subTables as sub>
85 85 ${sub.entityName?uncap_first}Table.dataSource = [];
86 86 </#list>
... ...