This commit is contained in:
yangduo 2024-08-19 10:46:24 +08:00
parent e9dc859c28
commit f166b56daf
2 changed files with 5 additions and 13 deletions

View File

@ -2,5 +2,6 @@
ENV = 'production' ENV = 'production'
# base api # base api
VUE_APP_BASE_API = '/prod-api' # VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_API = 'https://adminapi.cebggame.com/api/v1'

View File

@ -45,21 +45,12 @@ export default {
getMailTypeDesc() { getMailTypeDesc() {
switch (this.value) { switch (this.value) {
case MAIL_TYPE_GROUP: case MAIL_TYPE_GROUP:
{
return '邮件类型: 群发' return '邮件类型: 群发'
}
break
case MAIL_TYPE_ALL: case MAIL_TYPE_ALL:
{
return '邮件类型: 全体' return '邮件类型: 全体'
}
break
default: default:
{
return '邮件类型: 无' return '邮件类型: 无'
} }
break
}
} }
} }
} }