|
@@ -141,10 +141,14 @@ export default {
|
|
|
this.userids = []
|
|
|
this.nowAccount = res.data[0]
|
|
|
res.data.forEach((item,index)=>{
|
|
|
- name = name + item.name
|
|
|
+ if (index === 0){
|
|
|
+ name = name + item.name
|
|
|
+ }else {
|
|
|
+ name = name + '/' + item.name
|
|
|
+ }
|
|
|
this.userids[index] = item.userid
|
|
|
})
|
|
|
- this.contentMsg = name + '申请账号付费,请前往处理!'
|
|
|
+ this.contentMsg = name + ' 申请账号付费,请前往处理!'
|
|
|
}else {
|
|
|
this.dialogVisible = false
|
|
|
}
|
|
@@ -164,6 +168,7 @@ export default {
|
|
|
apps = item
|
|
|
}
|
|
|
})
|
|
|
+ console.log(this.userids,'付费账号')
|
|
|
sessionStorage.setItem('active_modules',JSON.stringify(apps))
|
|
|
this.activePath = '/pay_orders'
|
|
|
this.$router.replace({path:'/pay_orders',query:{isPay:'2',id:this.nowAccount.sys_site_systempartitionid,userid:this.userids}})
|