Test.vue 4.46 KB
<template>
  <v-img src="/customization_hardware/banner.png"></v-img>
  <v-container>
    <ContentDescription
      content="We have an independent battery testing center that provides comprehensive testing services for you! Whether it's ambient temperature, high-temperature cycling, rate testing, high and low-temperature testing, high-temperature storage testing, or EIS/CV testing, we can meet your needs. Our reverse analysis experimental plan covers various dimensions, including non-destructive testing, disassembly analysis, size, capacity, internal resistance, EIS, rate, high and low-temperature analysis. Through techniques such as capacity testing, SEM, EDS, Mapping, CP, TG, GC-MS, ICP, we conduct in-depth reverse analysis, including elemental analysis and morphology analysis. Finally, we prepare detailed reverse analysis reports, combining market conditions to provide you with research and development directions. Choose us for reliable testing and limitless innovation!"
    />
    <MainTitle title="Customization Hardware" />
    <ContentDescription
      className="tw-mb-[16px]"
      content="Coin cell preparation line with differentmachine such as mixing, coating, calendaring,
      cutting, assembly and testing."
    />
    <v-row>
      <v-col>
        <v-img src="/customization_hardware/1.png"></v-img>
      </v-col>
      <v-col>
        <v-img src="/customization_hardware/2.png"></v-img>
      </v-col>
    </v-row>
    <v-divider class="tw-mt-[24px] tw-mb-[24px]"></v-divider>
    <div class="text-subtitle-1 tw-text-justify">
      1、Pouch cell pilot line with different humidity control requirement
    </div>
    <div class="text-subtitle-1 tw-text-justify">2、Dry room for other process</div>
    <div class="text-subtitle-1 tw-text-justify">
      3、Dry room for mixing and coating with -30℃ humidity
    </div>
    <div class="text-subtitle-1 tw-text-justify">
      4、(before electrolyte injection)with -40℃ humidity
    </div>
    <v-slide-group class="pa-4" selected-class="bg-success" show-arrows>
      <v-slide-group-item v-for="slide in slides" :key="slide">
        <v-card :class="['ma-2']" width="360">
          <v-img :src="slide"></v-img>
        </v-card>
      </v-slide-group-item>
    </v-slide-group>
    <v-divider class="tw-mt-[24px] tw-mb-[24px]"></v-divider>

    <div class="tw-mb-[24px]">
      <div class="text-subtitle-1 tw-text-justify">
        1、There are different capacity for mixing(5L,10L and 30L)
      </div>
      <div class="text-subtitle-1 tw-text-justify">
        2、Dry room for high Ni cathode pouch cell preparation(-30℃ humidity)
      </div>
      <div class="text-subtitle-1 tw-text-justify">
        3、Different solution to prepare lithium metal pouch cell(glove box with 0.1ppm condition or
        -50℃ dry room)
      </div>
    </div>
    <v-row>
      <v-col><v-img src="/customization_hardware/9.png"></v-img></v-col>
      <v-col><v-img src="/customization_hardware/10.png"></v-img></v-col>
      <v-col><v-img src="/customization_hardware/11.png"></v-img></v-col>
    </v-row>
    <MainTitle title="Succeed Case" className="tw-mb-[32px] tw-mt-[64px]" />
    <ContentDescription className="tw-mb-[16px]" content="Customized types." />
    <v-slide-group class="pa-0" selected-class="bg-success" show-arrows>
      <v-slide-group-item v-for="slide in slideCases" :key="slide">
        <v-card :class="['ma-2']" width="360">
          <v-img :src="slide"></v-img>
        </v-card>
      </v-slide-group-item>
    </v-slide-group>
  </v-container>
</template>

<script setup lang="ts">
import MainTitleList from '@/components/MainTitleList.vue'
import MainTitle from '@/components/MainTitle.vue'
import ContentDescription from '@/components/ContentDescription.vue'

const equipments = [
  { name: 'Precision grinder', imageUrl: '/equipment/precision-grinder.png' },
  { name: 'Numerical control machine', imageUrl: '/equipment/numerical-control-machine.png' },
  { name: 'Arm brace', imageUrl: '/equipment/arm-brace.png' },
  {
    name: 'CNC high-speed precision carving machine',
    imageUrl: '/equipment/cnc-high-speed-precision-carving-machine.png'
  }
]

const slides = [
  '/customization_hardware/3.png',
  '/customization_hardware/4.png',
  '/customization_hardware/5.png',
  '/customization_hardware/6.png'
]

const slideCases = [
  '/customization_case/1.png',
  '/customization_case/2.png'
  // '/customization_case/3.png',
  // '/customization_case/4.png',
  // '/customization_case/5.png'
]
</script>

<style lang="less" scoped></style>