|
@@ -84,7 +84,6 @@ import Dialog from '@/components/dialog/Dialog.vue'
|
|
import FollowOfficialAccountDialog from '@/components/dialog/FollowOfficialAccountDialog.vue'
|
|
import FollowOfficialAccountDialog from '@/components/dialog/FollowOfficialAccountDialog.vue'
|
|
import { getFreeUserPushInfo } from '@/api/modules/'
|
|
import { getFreeUserPushInfo } from '@/api/modules/'
|
|
import { mapState, mapGetters, mapActions } from 'vuex'
|
|
import { mapState, mapGetters, mapActions } from 'vuex'
|
|
-import { tryCallHooks } from '@jianyu/easy-inject-qiankun'
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'SubPush',
|
|
name: 'SubPush',
|
|
@@ -317,9 +316,16 @@ export default {
|
|
} else if (this.vt === 's') {
|
|
} else if (this.vt === 's') {
|
|
// 商机管理跳转老页面(框架内打开)
|
|
// 商机管理跳转老页面(框架内打开)
|
|
const url = '/entpc/newBus/set_subscribe'
|
|
const url = '/entpc/newBus/set_subscribe'
|
|
- tryCallHooks(this.$BraceHooks, 'openLink', { url }, () => {
|
|
|
|
|
|
+ if (this?.$BRACE?.methods?.open) {
|
|
|
|
+ this.$BRACE.methods.open({
|
|
|
|
+ route: {
|
|
|
|
+ link: url,
|
|
|
|
+ appType: 'qiankun'
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
window.open(url)
|
|
window.open(url)
|
|
- })
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
toBuySvip () {
|
|
toBuySvip () {
|