2
0

fix:历史账单界面按钮添加

This commit is contained in:
zhongzm
2024-12-24 18:40:46 +08:00
parent a9777e1f03
commit 4c60b7a6c0

View File

@@ -3,6 +3,11 @@ import { ref, h } from 'vue'
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import type { TableColumnsType } from 'ant-design-vue' import type { TableColumnsType } from 'ant-design-vue'
import { Tag as ATag, Table as ATable } from 'ant-design-vue' import { Tag as ATag, Table as ATable } from 'ant-design-vue'
import { useRouter } from 'vue-router';
const router = useRouter();
const handleBack = () => {
router.push('/billing/billservice');
};
const { t } = useI18n(); const { t } = useI18n();
interface BillDetail { interface BillDetail {
@@ -154,7 +159,12 @@ const columns: TableColumnsType = [
<template> <template>
<div class="p-4"> <div class="p-4">
<div class="text-lg font-bold mb-4">{{ t('page.histories.Historicalbilling') }}</div> <div class="text-lg font-bold mb-4 flex justify-between items-center">
<span>{{ t('page.histories.Historicalbilling') }}</span>
<a-button @click="handleBack">
{{ t('page.login.common.back') }}
</a-button>
</div>
<ATable <ATable
:columns="columns" :columns="columns"
:data-source="billData" :data-source="billData"