analystViews.vue 865 B

1234567891011121314151617181920212223
  1. <template>
  2. <cwg-page-wrapper class="create-page" :isHeaderFixed="true">
  3. <cwg-header :title="t('Home.page_ib.item9')" />
  4. <view class="account-section">
  5. </view>
  6. </cwg-page-wrapper>
  7. </template>
  8. <script setup lang="ts">
  9. import { ref, reactive, computed, onMounted, onUnmounted } from 'vue'
  10. import { onLoad } from '@dcloudio/uni-app'
  11. import { useI18n } from 'vue-i18n' // uni-app 中已集成,但需配置
  12. import { customApi } from '@/service/custom'
  13. import { financialApi } from '@/service/financial'
  14. import Config from '@/config/index'
  15. import AddBankDialog from '@/components/AddBankDialog.vue';
  16. import PaymentMethodsList from './components/PaymentMethodsList.vue'
  17. const { t, locale } = useI18n()
  18. const isZh = computed(() => ['cn', 'zhHant'].includes(locale.value))
  19. </script>
  20. <style lang="scss" scoped>
  21. @import "@/uni.scss";
  22. </style>