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