diff --git a/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml b/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml
index f44c3441..043f6b1b 100644
--- a/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml
+++ b/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml
@@ -35,7 +35,7 @@
/>
<% if(table.tplCategory != 'query'){ %>
- {{ t('新增') }}
+ {{ t('新增') }}
<% } %>
@@ -118,7 +118,7 @@ for(c in table.columnList){
<% } %>
const getTitle = computed(() => ({
- icon: meta.icon || 'ant-design:book-outlined',
+ icon: meta.icon || 'i-ant-design:book-outlined',
value: record.value.isNewRecord ? t('新增${functionNameSimple}') : t('编辑${functionNameSimple}'),
}));
@@ -451,7 +451,7 @@ for (c in table.columnList){
width: 60,
actions: (record: Recordable) => [
{
- icon: 'ant-design:delete-outlined',
+ icon: 'i-ant-design:delete-outlined',
color: 'error',
popConfirm: {
title: '是否确认删除',
diff --git a/modules/core/src/main/resources/templates/modules/gen/crud/vueFormRoute.xml b/modules/core/src/main/resources/templates/modules/gen/crud/vueFormRoute.xml
index 9827f0b8..59bd5f23 100644
--- a/modules/core/src/main/resources/templates/modules/gen/crud/vueFormRoute.xml
+++ b/modules/core/src/main/resources/templates/modules/gen/crud/vueFormRoute.xml
@@ -33,7 +33,7 @@
/>
<% if(table.tplCategory != 'query'){ %>
- {{ t('新增') }}
+ {{ t('新增') }}
<% } %>
@@ -478,7 +478,7 @@ for (c in table.columnList){
width: 60,
actions: (record: Recordable) => [
{
- icon: 'ant-design:delete-outlined',
+ icon: 'i-ant-design:delete-outlined',
color: 'error',
popConfirm: {
title: '是否确认删除',
diff --git a/modules/core/src/main/resources/templates/modules/gen/crud/vueImport.xml b/modules/core/src/main/resources/templates/modules/gen/crud/vueImport.xml
index 93ffe022..d137c030 100644
--- a/modules/core/src/main/resources/templates/modules/gen/crud/vueImport.xml
+++ b/modules/core/src/main/resources/templates/modules/gen/crud/vueImport.xml
@@ -36,7 +36,7 @@
diff --git a/modules/core/src/main/resources/templates/modules/gen/crud/vueList.xml b/modules/core/src/main/resources/templates/modules/gen/crud/vueList.xml
index 3350a24e..0964117f 100644
--- a/modules/core/src/main/resources/templates/modules/gen/crud/vueList.xml
+++ b/modules/core/src/main/resources/templates/modules/gen/crud/vueList.xml
@@ -22,22 +22,22 @@
<% if(table.isTreeEntity){ %>
- {{ t('展开') }}
+ {{ t('展开') }}
- {{ t('折叠') }}
+ {{ t('折叠') }}
<% } %>
<% if(toBoolean(table.optionMap['isImportExport'])){ %>
- {{ t('导出') }}
+ {{ t('导出') }}
- {{ t('导入') }}
+ {{ t('导入') }}
<% } %>
- {{ t('新增') }}
+ {{ t('新增') }}
@@ -173,7 +173,7 @@ for(c in table.columnList){
const { meta } = unref(router.currentRoute);
const getTitle = {
- icon: meta.icon || 'ant-design:book-outlined',
+ icon: meta.icon || 'i-ant-design:book-outlined',
value: meta.title || t('${functionNameSimple}管理'),
};
@@ -340,14 +340,14 @@ for(c in table.columnList){
width: 160,
actions: (record: Recordable) => [
{
- icon: 'clarity:note-edit-line',
+ icon: 'i-clarity:note-edit-line',
title: t('编辑${functionNameSimple}'),
onClick: handleForm.bind(this, { ${idParam} }),
auth: '${permissionPrefix}:edit',
},
<% if(toBoolean(table.optionMap['isHaveDisableEnable'])){ %>
{
- icon: 'ant-design:stop-outlined',
+ icon: 'i-ant-design:stop-outlined',
color: 'error',
title: t('停用${functionNameSimple}'),
popConfirm: {
@@ -358,7 +358,7 @@ for(c in table.columnList){
ifShow: () => record.status === '0',
},
{
- icon: 'ant-design:check-circle-outlined',
+ icon: 'i-ant-design:check-circle-outlined',
color: 'success',
title: t('启用${functionNameSimple}'),
popConfirm: {
@@ -371,7 +371,7 @@ for(c in table.columnList){
<% } %>
<% if(toBoolean(table.optionMap['isHaveDelete'])){ %>
{
- icon: 'ant-design:delete-outlined',
+ icon: 'i-ant-design:delete-outlined',
color: 'error',
title: t('删除${functionNameSimple}'),
popConfirm: {
@@ -386,7 +386,7 @@ for(c in table.columnList){
<% } %>
<% if(table.isTreeEntity){ %>
{
- icon: 'fluent:add-circle-24-regular',
+ icon: 'i-fluent:add-circle-24-regular',
title: t('新增下级${functionNameSimple}'),
onClick: handleForm.bind(this, {
parentCode: record.id,
@@ -397,7 +397,7 @@ for(c in table.columnList){
<% } %>
<% if(toBoolean(table.optionMap['isBpmForm'])){ %>
{
- icon: 'fluent:flowchart-20-regular',
+ icon: 'i-fluent:flowchart-20-regular',
title: t('流程追踪'),
onClick: handleTrace.bind(this, record),
ifShow: () => record.status != '9',