|
|
@@ -82,11 +82,10 @@
|
|
|
</div>
|
|
|
<!-- <fab-module /> -->
|
|
|
<!-- 续费遮罩层 -->
|
|
|
- <modal-module :show="renewMask" :custom="true" :maskClosable="false" padding="30rpx 30rpx">
|
|
|
+ <modal-module :show="renewMask" :custom="true" :maskClosable="true" padding="30rpx 30rpx">
|
|
|
<template>
|
|
|
<div class="renew-wrap">
|
|
|
<div class="renew-wrap-text">你的账号已到期</div>
|
|
|
- <!-- <button class="admin-button-com middle" @click="pageTo('/admin/renew/index')">立即续费</button> -->
|
|
|
<button class="admin-button-com middle" @click="renewFn()">立即续费</button>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -308,9 +307,13 @@ export default {
|
|
|
},
|
|
|
// 续费
|
|
|
renewFn() {
|
|
|
- // #ifdef H5
|
|
|
- location.href = `${window.location.protocol}//www.${this.$constant.firstHost}.com/#/?merchantId=${this.userInfo.extend.merchantId}&pay=1`;
|
|
|
- // #endif
|
|
|
+ this.$util.pageTo({
|
|
|
+ url: "/admin/official/index",
|
|
|
+ query: {
|
|
|
+ pay: 1
|
|
|
+ },
|
|
|
+ type: 2
|
|
|
+ });
|
|
|
},
|
|
|
goToItem(item) {
|
|
|
if (item.name == "数据统计") {
|