|
@@ -2,21 +2,25 @@
|
|
|
<!-- icondaizhifu -->
|
|
<!-- icondaizhifu -->
|
|
|
<appResult :title="'充值成功'">
|
|
<appResult :title="'充值成功'">
|
|
|
<view class="yourAccount">你的账号已延长至</view>
|
|
<view class="yourAccount">你的账号已延长至</view>
|
|
|
- <view class="dateLengthen">2021-05-14</view>
|
|
|
|
|
|
|
+ <view class="dateLengthen">{{userInfo.deadline}}</view>
|
|
|
<button class="admin-button-com big" @click="back">返回管理中心</button>
|
|
<button class="admin-button-com big" @click="back">返回管理中心</button>
|
|
|
</appResult>
|
|
</appResult>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
import appResult from "@/components/app-result";
|
|
import appResult from "@/components/app-result";
|
|
|
|
|
+import { mapGetters, mapState } from 'vuex'
|
|
|
export default {
|
|
export default {
|
|
|
name: "BillingResult", // 开单结果
|
|
name: "BillingResult", // 开单结果
|
|
|
components: {
|
|
components: {
|
|
|
appResult
|
|
appResult
|
|
|
},
|
|
},
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ ...mapGetters({ userInfo: "getUser"})
|
|
|
|
|
+ },
|
|
|
methods: {
|
|
methods: {
|
|
|
back() {
|
|
back() {
|
|
|
- this.pageTo({url:'/admin/home/me', type: 3})
|
|
|
|
|
|
|
+ this.pageTo({url:'/admin/home/me', type: 4, queyr: {refresh: '1'}})
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|