| 1234567891011121314151617181920212223 |
- <template>
- <cwg-page-wrapper class="create-page" :isHeaderFixed="true">
- <cwg-header :title="t('Home.page_ib.item9')" />
- <view class="account-section">
- </view>
- </cwg-page-wrapper>
- </template>
- <script setup lang="ts">
- import { ref, reactive, computed, onMounted, onUnmounted } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
- import { useI18n } from 'vue-i18n' // uni-app 中已集成,但需配置
- import { customApi } from '@/service/custom'
- import { financialApi } from '@/service/financial'
- import Config from '@/config/index'
- import AddBankDialog from '@/components/AddBankDialog.vue';
- import PaymentMethodsList from './components/PaymentMethodsList.vue'
- const { t, locale } = useI18n()
- const isZh = computed(() => ['cn', 'zhHant'].includes(locale.value))
- </script>
- <style lang="scss" scoped>
- @import "@/uni.scss";
- </style>
|