mirror of https://github.com/jeecgboot/jeecg-boot
【issues/I515ZE】online代码生成vue3,activeKey.value不需要ref赋值]
parent
b17908b581
commit
948e1668b6
|
@ -131,7 +131,7 @@ spring:
|
||||||
connectionProperties: druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000
|
connectionProperties: druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000
|
||||||
datasource:
|
datasource:
|
||||||
master:
|
master:
|
||||||
url: jdbc:mysql://127.0.0.1:3306/jeecg-boot-os-re?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://127.0.0.1:3306/jeecg-boot?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||||
username: root
|
username: root
|
||||||
password: root
|
password: root
|
||||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
|
|
|
@ -110,7 +110,7 @@
|
||||||
|
|
||||||
async function reset(){
|
async function reset(){
|
||||||
await resetFields();
|
await resetFields();
|
||||||
activeKey.value = ref('${subTables[0].entityName?uncap_first}');
|
activeKey.value = '${subTables[0].entityName?uncap_first}';
|
||||||
<#list subTables as sub>
|
<#list subTables as sub>
|
||||||
<#if sub.foreignRelationType =='0'>
|
<#if sub.foreignRelationType =='0'>
|
||||||
${sub.entityName?uncap_first}Table.dataSource = [];
|
${sub.entityName?uncap_first}Table.dataSource = [];
|
||||||
|
|
|
@ -110,7 +110,7 @@
|
||||||
|
|
||||||
async function reset(){
|
async function reset(){
|
||||||
await resetFields();
|
await resetFields();
|
||||||
activeKey.value = ref('${subTables[0].entityName?uncap_first}');
|
activeKey.value = '${subTables[0].entityName?uncap_first}';
|
||||||
<#list subTables as sub>
|
<#list subTables as sub>
|
||||||
<#if sub.foreignRelationType =='0'>
|
<#if sub.foreignRelationType =='0'>
|
||||||
${sub.entityName?uncap_first}Table.dataSource = [];
|
${sub.entityName?uncap_first}Table.dataSource = [];
|
||||||
|
|
|
@ -114,7 +114,7 @@
|
||||||
|
|
||||||
async function reset(){
|
async function reset(){
|
||||||
await resetFields();
|
await resetFields();
|
||||||
activeKey.value = ref('${tableVo.entityName?uncap_first}');
|
activeKey.value = '${tableVo.entityName?uncap_first}';
|
||||||
<#list subTables as sub>
|
<#list subTables as sub>
|
||||||
<#if sub.foreignRelationType =='0'>
|
<#if sub.foreignRelationType =='0'>
|
||||||
${sub.entityName?uncap_first}Table.dataSource = [];
|
${sub.entityName?uncap_first}Table.dataSource = [];
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
|
|
||||||
async function reset(){
|
async function reset(){
|
||||||
await resetFields();
|
await resetFields();
|
||||||
activeKey.value = ref('${subTables[0].entityName?uncap_first}');
|
activeKey.value = '${subTables[0].entityName?uncap_first}';
|
||||||
<#list subTables as sub>
|
<#list subTables as sub>
|
||||||
${sub.entityName?uncap_first}Table.dataSource = [];
|
${sub.entityName?uncap_first}Table.dataSource = [];
|
||||||
</#list>
|
</#list>
|
||||||
|
|
Loading…
Reference in New Issue