2
0

fix:上网详单界面按钮添加

This commit is contained in:
zhongzm
2024-12-24 18:40:26 +08:00
parent f9fba724fb
commit a9777e1f03

View File

@@ -2,6 +2,11 @@
import { ref, watch } from 'vue'
import { Card, Radio, Statistic } from 'ant-design-vue'
import {useI18n} from "vue-i18n";
import { useRouter } from 'vue-router';
const router = useRouter();
const handleBack = () => {
router.push('/billing/billservice');
};
const {t} = useI18n();
@@ -274,6 +279,12 @@ watch(selectedMonth, (newMonth: string) => {
<template>
<div class="internet-details p-4">
<div class="text-lg font-bold mb-4 flex justify-between items-center">
<span>{{ t('page.Internetdetails.title') }}</span>
<a-button @click="handleBack">
{{ t('page.login.common.back') }}
</a-button>
</div>
<!-- 月份选择 -->
<div class="month-selector-wrapper">
<Radio.Group v-model:value="selectedMonth" class="month-selector">