From d37ceed2ad5b94bbfc71a8a4cbdb7b498ddf724d Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Sat, 19 Jul 2025 14:14:18 +0800
Subject: [PATCH] 1
---
src/page/bankCard1/index.vue | 185 ++++++++++++++++++++++------------------------
1 files changed, 89 insertions(+), 96 deletions(-)
diff --git a/src/page/bankCard1/index.vue b/src/page/bankCard1/index.vue
index 0557d8a..5eaee77 100644
--- a/src/page/bankCard1/index.vue
+++ b/src/page/bankCard1/index.vue
@@ -1,5 +1,5 @@
<template>
- <div class="bank_card_page">
+ <div class="bank_card_page">
<van-nav-bar
:placeholder="true"
:safe-area-inset-top="true"
@@ -8,114 +8,107 @@
@click-left="$router.go(-1)"
>
</van-nav-bar>
- <div class="content">
- <!-- <div class="top_back">
+ <div class="content">
+ <!-- <div class="top_back">
<div class="left_back_icon" @click="$router.go(-1)">
<img src="../../assets/img/zuojiantou.png" alt />
</div>
</div> -->
- <div class="titles">
- <span>{{ $t('关于我们') }}</span>
- </div>
- <div class="bank_name">
- {{ $t('关于我们详情') }}{{ $t('关于我们详情1') }}{{ $t('关于我们详情2') }}{{ $t('关于我们详情3') }}
- </div>
- </div>
- </div>
+ <div class="titles">
+ <span>{{ $t("关于我们") }}</span>
+ </div>
+ <div class="bank_name">
+ {{
+ $t(
+ "Duro Capital is an India-focused investment management firm and is the manager for the Duro India Opportunities Fund (the “Fund”). The Fund’s investment objective is to achieve long-term capital appreciation by investing into equity and equity-related securities of fairly priced businesses with a defensible right-to-win in their industries and that are undergoing structural changes, which enables these companies to compound earnings at ~25% over the Fund’s holding period. Duro Capital is regulated by the Monetary Authority of Singapore (MAS) andholds a Capital Markets Services (CMS) License."
+ )
+ }}
+ </div>
+ </div>
+ </div>
</template>
<script>
- import * as api from "@/axios/api";
- import {
- Toast
- } from "mint-ui";
- import {
- isNull,
- bankNoReg,
- isName
- } from '@/utils/utils'
+import * as api from "@/axios/api";
+import { Toast } from "mint-ui";
+import { isNull, bankNoReg, isName } from "@/utils/utils";
- export default {
- name: "bankCard1",
- data() {
- return {
-
- };
- },
- created() {
-
- },
- methods: {
-
- }
- };
+export default {
+ name: "bankCard1",
+ data() {
+ return {};
+ },
+ created() {},
+ methods: {}
+};
</script>
<style scoped lang="less">
- /deep/ .van-nav-bar__content {
- height: 65px;
- }
- /deep/ .van-nav-bar__title {
- font-family: "DINPro";
+/deep/ .van-nav-bar__content {
+ height: 65px;
+}
+
+/deep/ .van-nav-bar__title {
+ font-family: "DINPro";
+ width: 100%;
+ height: 1.17333rem;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-style: normal;
+ font-weight: 500;
+ font-size: 0.48rem;
+ color: #14181f;
+}
+
+.bank_card_page {
+ width: 100%;
+ height: 100%;
+ background: #fff;
+
+ .content {
width: 100%;
- height: 1.17333rem;
- display: flex;
- justify-content: center;
- align-items: center;
- font-style: normal;
- font-weight: 500;
- font-size: 0.48rem;
- color: #14181f;
+ padding: 0 0.6rem;
+
+ .top_back {
+ width: 100%;
+ height: 2rem;
+
+ > div {
+ width: 10%;
+ height: 100%;
+ display: flex;
+ align-items: center;
+ }
+
+ img {
+ width: 0.6rem;
+ height: 0.6rem;
+ }
+ }
+
+ .titles {
+ width: 100%;
+ height: 1.5rem;
+ font-size: 0.641rem;
+ margin-top: 1rem;
+
+ span {
+ font-weight: 600;
+ }
+ }
}
- .bank_card_page {
- width: 100%;
- height: 100%;
- background: #fff;
-
- .content {
- width: 100%;
- padding: 0 0.6rem;
-
- .top_back {
- width: 100%;
- height: 2rem;
-
- >div {
- width: 10%;
- height: 100%;
- display: flex;
- align-items: center;
- }
-
- img {
- width: 0.6rem;
- height: 0.6rem;
- }
- }
-
- .titles {
- width: 100%;
- height: 1.5rem;
- font-size: 0.641rem;
- margin-top: 1rem;
-
- span {
- font-weight: 600;
- }
- }
- }
-
- .bank_name {
- width: 100%;
- height: 1.5rem;
- font-size: 0.5rem;
- display: flex;
- padding: 0 0.2rem;
- background: rgb(247, 247, 247);
- border-radius: 0.2rem;
- margin-top: 0.3rem;
- }
- }
+ .bank_name {
+ width: 100%;
+ height: 1.5rem;
+ font-size: 0.5rem;
+ display: flex;
+ padding: 0 0.2rem;
+ background: rgb(247, 247, 247);
+ border-radius: 0.2rem;
+ margin-top: 0.3rem;
+ }
+}
</style>
--
Gitblit v1.9.3