jhzh
2024-10-29 0d762cd8aa1d28c3b8e0302934c167d9b8008f39
src/page/bankCard1/index.vue
@@ -1,61 +1,67 @@
<template>
   <div class="bank_card_page">
    <van-nav-bar
      :placeholder="true"
      :safe-area-inset-top="true"
      :title="$t('关于我们')"
      left-arrow
      @click-left="$router.go(-1)"
    >
  <div class="bank_card_page">
    <van-nav-bar :placeholder="true" :safe-area-inset-top="true" :title="$t('关于我们')" left-arrow
      @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">
        Our diverse team includes CS, CA, MBA, CFA and other professionals.
        AMBARA CAPITAL provides a one-stop service, providing integrated business, legal and financial solutions to all
        segments of society.
        AMBARA CAPITAL Stock Brokerage is the division of AMBARA CAPITAL that deals with equities, derivatives, mutual
        funds, provides a stock brokerage platform to its investor groups as well as internal depository participant
        services in the currency sector, etc. Our team has a rich and diverse experience, including some historical
        transactions and corporate litigation. Involved in internal research and knowledge management setup, promotes
        the group's internal approach to provide innovative out-of-the-box solutions for dynamic business requirements
        as well as turnkey execution support. Our tagline "Progressive by Values" reflects our progressive approach,
        which is driven by the fundamental values for any ecosystem to thrive. Ethics, integrity, transaction
        transparency, timely delivery and stakeholder satisfaction are the cornerstones of our defined value system.
      </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 {
  export default {
    name: "bankCard1",
    data() {
      return {
         };
      },
      created() {
      };
    },
    created() {
      },
      methods: {
    },
    methods: {
      }
   };
    }
  };
</script>
<style scoped lang="less">
  /deep/ .van-nav-bar__content {
    height: 65px;
  }
  /deep/ .van-nav-bar__title {
    font-family: "DINPro";
    width: 100%;
@@ -69,53 +75,53 @@
    color: #14181f;
  }
   .bank_card_page {
      width: 100%;
      height: 100%;
      background: #fff;
  .bank_card_page {
    width: 100%;
    height: 100%;
    background: #fff;
      .content {
         width: 100%;
         padding: 0 0.6rem;
    .content {
      width: 100%;
      padding: 0 0.6rem;
         .top_back {
            width: 100%;
            height: 2rem;
      .top_back {
        width: 100%;
        height: 2rem;
            >div {
               width: 10%;
               height: 100%;
               display: flex;
               align-items: center;
            }
        >div {
          width: 10%;
          height: 100%;
          display: flex;
          align-items: center;
        }
            img {
               width: 0.6rem;
               height: 0.6rem;
            }
         }
        img {
          width: 0.6rem;
          height: 0.6rem;
        }
      }
         .titles {
            width: 100%;
            height: 1.5rem;
            font-size: 0.641rem;
            margin-top: 1rem;
      .titles {
        width: 100%;
        height: 1.5rem;
        font-size: 0.641rem;
        margin-top: 1rem;
            span {
               font-weight: 600;
            }
         }
      }
        span {
          font-weight: 600;
        }
      }
    }
      .bank_name {
         width: 100%;
         height: 1.5rem;
    .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;
      }
   }
      display: flex;
      padding: 0 0.2rem;
      background: rgb(247, 247, 247);
      border-radius: 0.2rem;
      margin-top: 0.3rem;
    }
  }
</style>