|
@@ -361,7 +361,8 @@
|
|
|
<!-- 升级 -->
|
|
|
<!-- 升级 -->
|
|
|
<div class="update_renew" style="display: none">
|
|
|
- <div class="update-tips" data-update-tips>因系统升级,已购买用户可选择原套餐续费,或升级到新版本享受更多权益。</div>
|
|
|
+ <!-- <div class="update-tips" data-update-tips>因系统升级,已购买用户可选择原套餐续费,或升级到新版本享受更多权益。</div> -->
|
|
|
+ <div class="update-tips" data-update-tips style="display: none">超级订阅产品全面升级,为享受更多权益,请您先升级到最新版本后再进行续费。</div>
|
|
|
<div class="footer-button-group j-button-group">
|
|
|
<button class="j-button-confirm" data-bind-renew data-cl-event="c_wx_buy_buttonclick">续费</button>
|
|
|
<button class="j-button-confirm" data-bind-update data-cl-event="c_wx_buy_buttonclick">升级</button>
|
|
@@ -713,7 +714,11 @@
|
|
|
// 跳转到续费页面
|
|
|
$('*[data-bind-renew]').on('click',function() {
|
|
|
// location.href = '/front/vipsubscribe/vipsubscribe_renew'
|
|
|
- window.location.href="/jy_mobile/common/order/create/svip?type=renew"
|
|
|
+ if (subNode.isNewVip != 1) {
|
|
|
+ $('[data-update-tips]').show()
|
|
|
+ } else {
|
|
|
+ window.location.href="/jy_mobile/common/order/create/svip?type=renew"
|
|
|
+ }
|
|
|
})
|
|
|
// 直接跳转到升级页面
|
|
|
$('*[data-bind-update]').on('click',function() {
|