diff --git a/src/views/billing/histories/index.vue b/src/views/billing/histories/index.vue index 29a4bdd..06f1ed3 100644 --- a/src/views/billing/histories/index.vue +++ b/src/views/billing/histories/index.vue @@ -3,6 +3,11 @@ import { ref, h } from 'vue' import { useI18n } from 'vue-i18n'; import type { TableColumnsType } 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(); interface BillDetail { @@ -154,7 +159,12 @@ const columns: TableColumnsType = [