diff --git a/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/Vue.txt b/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/Vue.txt
index acc5069..53424e6 100644
--- a/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/Vue.txt
+++ b/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/Vue.txt
@@ -98,13 +98,12 @@ $if(replaceDto.ShowBtnExport)
$end
-
+
-
$foreach(column in genTable.Columns)
$set(labelName = "")
$set(checkboxHtml = "")
@@ -120,7 +119,7 @@ $set(labelName = column.CsharpFieldFl)
$end
$if(column.IsList == true)
$if(column.HtmlType == "customInput" && column.IsPk == false)
-
+
{{scope.row.${columnName}}}
$elseif(column.HtmlType == "imageUpload")
-
+
@@ -139,7 +138,7 @@ $elseif(column.HtmlType == "imageUpload")
$elseif(column.HtmlType == "checkbox" || column.HtmlType == "select" || column.HtmlType == "radio")
-
+
$if(column.HtmlType == "checkbox")
@@ -149,7 +148,7 @@ $end
$else
-
+
$end
$end
$end
@@ -304,7 +303,15 @@ $if(item.IsQuery == true)
$end
$end
})
-
+const columns = ref([
+$set(index = 0)
+$foreach(column in genTable.Columns)
+$set(index = index + 1)
+$if(index > 6 && column.IsList)
+ { visible: ${if(index < 9)}true${else}false${end}, prop: '${column.CsharpFieldFl}', label: '${column.ColumnComment}' },
+$end
+$end
+])
const title = ref("")
// 操作类型 1、add 2、edit 3、view
const opertype = ref(0)