|
@@ -341,7 +341,24 @@ var vm = new Vue({
|
|
|
},
|
|
|
setBook() {
|
|
|
if(this.ptype == 1) {
|
|
|
- this.usedDialog()
|
|
|
+ const _this = this
|
|
|
+ // 当前用户企业信息接口
|
|
|
+ $.ajax({
|
|
|
+ url: '/entbase/ent/entinfo?t=' + Date.now(),
|
|
|
+ type: 'POST',
|
|
|
+ async: false,
|
|
|
+ success: function (res) {
|
|
|
+ if (res) {
|
|
|
+ const data = res.data || {}
|
|
|
+ // 企业分配的超级订阅,直接进入充值采购单位画像包页面,不再提示选择充值方式。
|
|
|
+ if(data.vip_power === 1){
|
|
|
+ location.href = '/jy_mobile/common/order/create/buyerpack?type=1'
|
|
|
+ } else{
|
|
|
+ _this.usedDialog()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
} else {
|
|
|
// location.href = '/front/vipsubscribe/upgradePage'
|
|
|
location.href = '/jy_mobile/common/order/create/svip?type=upgrade'
|