当选择控件未设置查询列的时候没有生成office接口问题
This commit is contained in:
@@ -70,7 +70,7 @@
|
|||||||
var companyselectExists = false;
|
var companyselectExists = false;
|
||||||
var areaselectExists = false;
|
var areaselectExists = false;
|
||||||
for(c in table.columnList){
|
for(c in table.columnList){
|
||||||
if(c.isQuery == "1" && !c.isTreeEntityColumn){
|
if(c.isEdit == "1" && !c.isTreeEntityColumn){
|
||||||
if(c.showType == 'userselect'){
|
if(c.showType == 'userselect'){
|
||||||
userselectExists = true;
|
userselectExists = true;
|
||||||
}else if(c.showType == 'officeselect'){
|
}else if(c.showType == 'officeselect'){
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
var companyselectExists = false;
|
var companyselectExists = false;
|
||||||
var areaselectExists = false;
|
var areaselectExists = false;
|
||||||
for(c in table.columnList){
|
for(c in table.columnList){
|
||||||
if(c.isQuery == "1" && !c.isTreeEntityColumn){
|
if(c.isEdit == "1" && !c.isTreeEntityColumn){
|
||||||
if(c.showType == 'userselect'){
|
if(c.showType == 'userselect'){
|
||||||
userselectExists = true;
|
userselectExists = true;
|
||||||
}else if(c.showType == 'officeselect'){
|
}else if(c.showType == 'officeselect'){
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
const { t } = useI18n('${moduleName}${isNotEmpty(subModuleName)?'.'+subModuleName:''}.${className}');
|
const { t } = useI18n('${moduleName}${isNotEmpty(subModuleName)?'.'+subModuleName:''}.${className}');
|
||||||
const record = ref<TestData>({} as ${ParentClassName});
|
const record = ref<${ParentClassName}>({} as ${ParentClassName});
|
||||||
|
|
||||||
const tableColumns: BasicColumn[] = [
|
const tableColumns: BasicColumn[] = [
|
||||||
<%
|
<%
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ var officeselectExists = false;
|
|||||||
var companyselectExists = false;
|
var companyselectExists = false;
|
||||||
var areaselectExists = false;
|
var areaselectExists = false;
|
||||||
for(c in table.columnList){
|
for(c in table.columnList){
|
||||||
if(c.isQuery == "1" && !c.isTreeEntityColumn){
|
if(c.isEdit == "1" && !c.isTreeEntityColumn){
|
||||||
if(c.showType == 'userselect'){
|
if(c.showType == 'userselect'){
|
||||||
userselectExists = true;
|
userselectExists = true;
|
||||||
}else if(c.showType == 'officeselect'){
|
}else if(c.showType == 'officeselect'){
|
||||||
|
|||||||
Reference in New Issue
Block a user