| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <!-- icondaizhifu -->
- <appResult :title="'续期成功'">
- <view class="yourAccount">你的帐号已延长至</view>
- <view class="dateLengthen">{{userInfo.deadline}}</view>
- <button class="admin-button-com big" @click="back">返回管理中心</button>
- </appResult>
- </template>
- <script>
- import appResult from "@/components/app-result";
- import { mapGetters, mapState } from 'vuex'
- export default {
- name: "BillingResult", // 开单结果
- components: {
- appResult
- },
- computed: {
- ...mapGetters({ userInfo: "getUser"})
- },
- methods: {
- back() {
- this.pageTo({url:'/admin/home/me', type: 4, queyr: {refresh: '1'}})
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .admin-button-com {
- margin-bottom: 20upx;
- width: 100%;
- }
- .yourAccount{
- color: #666;
- font-size: 28upx;
- }
- .dateLengthen{
- color: #666;
- font-size: 28upx;
- margin: 20upx 0 50upx;
- }
- </style>
|