File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const { query } = useRoute() // 查询参数
30
30
const { delView } = useTagsViewStore () // 视图操作
31
31
32
32
const formLoading = ref (false ) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
33
- const activeName = ref (' basicInfo ' ) // Tag 激活的窗口
33
+ const activeName = ref (' colum ' ) // Tag 激活的窗口
34
34
const basicInfoRef = ref <ComponentRef <typeof BasicInfoForm >>()
35
35
const columInfoRef = ref <ComponentRef <typeof ColumInfoForm >>()
36
36
const generateInfoRef = ref <ComponentRef <typeof GenerateInfoForm >>()
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export const rules = reactive({
19
19
sslEnable : [ required ]
20
20
} )
21
21
22
- // CrudSchema:https://kailong110120130.gitee.io/vue-element-plus-admin-doc/hooks/useCrudSchemas.html
22
+ // CrudSchema:https://doc.iocoder.cn/vue3/crud-schema/
23
23
const crudSchemas = reactive < CrudSchema [ ] > ( [
24
24
{
25
25
label : '邮箱' ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ import MailAccountDetail from './MailAccountDetail.vue'
72
72
73
73
// tableObject:表格的属性对象,可获得分页大小、条数等属性
74
74
// tableMethods:表格的操作对象,可进行获得分页、删除记录等操作
75
- // 详细可见:https://kailong110120130.gitee.io/vue-element-plus-admin-doc/components/table.html#usetable
75
+ // 详细可见:https://doc.iocoder.cn/vue3/crud-schema/
76
76
const { tableObject, tableMethods } = useTable ({
77
77
getListApi: MailAccountApi .getMailAccountPage , // 分页接口
78
78
delListApi: MailAccountApi .deleteMailAccount // 删除接口
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ import MailLogDetail from './MailLogDetail.vue'
41
41
42
42
// tableObject:表格的属性对象,可获得分页大小、条数等属性
43
43
// tableMethods:表格的操作对象,可进行获得分页、删除记录等操作
44
- // 详细可见:https://kailong110120130.gitee.io/vue-element-plus-admin-doc/components/table.html#usetable
44
+ // 详细可见:https://doc.iocoder.cn/vue3/crud-schema/
45
45
const { tableObject, tableMethods } = useTable ({
46
46
getListApi: MailLogApi .getMailLogPage // 分页接口
47
47
})
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import * as MailAccountApi from '@/api/system/mail/account'
5
5
// 邮箱账号的列表
6
6
const accountList = await MailAccountApi . getSimpleMailAccountList ( )
7
7
8
- // CrudSchema:https://kailong110120130.gitee.io/vue-element-plus-admin-doc/hooks/useCrudSchemas.html
8
+ // CrudSchema:https://doc.iocoder.cn/vue3/crud-schema/
9
9
const crudSchemas = reactive < CrudSchema [ ] > ( [
10
10
{
11
11
label : '编号' ,
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ import MailTemplateSendForm from './MailTemplateSendForm.vue'
73
73
74
74
// tableObject:表格的属性对象,可获得分页大小、条数等属性
75
75
// tableMethods:表格的操作对象,可进行获得分页、删除记录等操作
76
- // 详细可见:https://kailong110120130.gitee.io/vue-element-plus-admin-doc/components/table.html#usetable
76
+ // 详细可见:https://doc.iocoder.cn/vue3/crud-schema/
77
77
const { tableObject, tableMethods } = useTable ({
78
78
getListApi: MailTemplateApi .getMailTemplatePage , // 分页接口
79
79
delListApi: MailTemplateApi .deleteMailTemplate // 删除接口
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export const rules = reactive({
17
17
status : [ required ]
18
18
} )
19
19
20
- // CrudSchema:https://kailong110120130.gitee.io/vue-element-plus-admin-doc/hooks/useCrudSchemas.html
20
+ // CrudSchema:https://doc.iocoder.cn/vue3/crud-schema/
21
21
const crudSchemas = reactive < CrudSchema [ ] > ( [
22
22
{
23
23
label : '模板编码' ,
You can’t perform that action at this time.
0 commit comments