修改
This commit is contained in:
parent
fdec408674
commit
1eaf1f1d51
@ -2,5 +2,5 @@
|
||||
ENV = 'development'
|
||||
|
||||
# base api
|
||||
VUE_APP_BASE_API = 'http://adminapi-test.kingsome.cn/api/v1'
|
||||
VUE_APP_BASE_API = 'https://adminapi-test.kingsome.cn/api/v1'
|
||||
#VUE_APP_BASE_API = '/dev-api'
|
||||
|
@ -4,5 +4,6 @@ NODE_ENV = production
|
||||
ENV = 'staging'
|
||||
|
||||
# base api
|
||||
VUE_APP_BASE_API = '/stage-api'
|
||||
#VUE_APP_BASE_API = '/stage-api'
|
||||
VUE_APP_BASE_API = 'https://adminapi-test.kingsome.cn/api/v1'
|
||||
|
||||
|
@ -217,7 +217,7 @@ export const asyncRoutes = [
|
||||
path: 'user_group/member',
|
||||
component: () => import('@/views/email/group_member'),
|
||||
name: 'GroupMember',
|
||||
meta: { title: '组成员' },
|
||||
meta: { title: '组成员', pername: 'emailgroupmember' },
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
|
@ -145,9 +145,11 @@ export default {
|
||||
this.postForm = editEmail
|
||||
|
||||
let str = ''
|
||||
editEmail.attachments.forEach((item) => {
|
||||
str += item['itemid'] + ':' + item['itemnum'] + '\n'
|
||||
})
|
||||
if (editEmail.attachments != null) {
|
||||
editEmail.attachments.forEach((item) => {
|
||||
str += item['itemid'] + ':' + item['itemnum'] + '\n'
|
||||
})
|
||||
}
|
||||
this.postForm.attachments = str.slice(0, -1)
|
||||
this.postForm.sendtime = editEmail.sendtime * 1000
|
||||
this.postForm.expiretime = editEmail.expiretime * 1000
|
||||
|
Loading…
x
Reference in New Issue
Block a user