æ·feat: commplete init process

This commit is contained in:
engigu
2023-12-30 17:40:20 +08:00
parent 9307bec4ab
commit 77af985b76
92 changed files with 12054 additions and 2 deletions
+34
View File
@@ -0,0 +1,34 @@
// 定义一些常量名
const CONSTANT = {
PAGE: 1,
PAGE_SIZE: 6,
TOTAL: 0,
LOG_TASK_ID: "00000000-0000-0000-0000-000000000001",
STORE_TOKEN_NAME: '__message_nest_token__',
NO_AUTH_URL: [
'/auth',
],
WAYS_DATA: [
{
type: 'Email',
label: '邮箱',
inputs: [
{ subLabel: 'smtp服务地址', value: '', col: 'server' },
{ subLabel: 'smtp服务端口', value: '', col: 'port' },
{ subLabel: '邮箱账号', value: '', col: 'account' },
{ subLabel: '邮箱密码', value: '', col: 'passwd' },
{ subLabel: '渠道名', value: '', col: 'name' },
]
},
{
type: 'Dtalk',
label: '钉钉',
inputs: [
{ subLabel: 'webhook地址', value: '', col: 'webhook_url' },
{ subLabel: '渠道名', value: '', col: 'name' },
]
},
]
}
export { CONSTANT }