callback.vue 895 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <!-- icondaizhifu -->
  3. <appResult :title="'续期成功'">
  4. <view class="yourAccount">你的帐号已延长至</view>
  5. <view class="dateLengthen">{{userInfo.deadline}}</view>
  6. <button class="admin-button-com big" @click="back">返回管理中心</button>
  7. </appResult>
  8. </template>
  9. <script>
  10. import appResult from "@/components/app-result";
  11. import { mapGetters, mapState } from 'vuex'
  12. export default {
  13. name: "BillingResult", // 开单结果
  14. components: {
  15. appResult
  16. },
  17. computed: {
  18. ...mapGetters({ userInfo: "getUser"})
  19. },
  20. methods: {
  21. back() {
  22. this.pageTo({url:'/admin/home/me', type: 4, queyr: {refresh: '1'}})
  23. }
  24. }
  25. };
  26. </script>
  27. <style lang="scss" scoped>
  28. .admin-button-com {
  29. margin-bottom: 20upx;
  30. width: 100%;
  31. }
  32. .yourAccount{
  33. color: #666;
  34. font-size: 28upx;
  35. }
  36. .dateLengthen{
  37. color: #666;
  38. font-size: 28upx;
  39. margin: 20upx 0 50upx;
  40. }
  41. </style>