Equipment.vue 5.82 KB
<template>
  <v-container>
    <div>
      Equipment Business: With our self-built high-precision machining center, we possess robust
      design and manufacturing capabilities. We offer comprehensive equipment supply, production
      line planning, and construction services, including battery assembly lines, pouch cell testing
      lines, and more. Our aim is to provide complete equipment solutions that cater to the diverse
      needs of our clients. Expect top-quality equipment and professional services that will help
      you stand out in a fiercely competitive market!
    </div>
    <div class="tw-mb-[64px] tw-m">
      <MainTitleList title="Equipment hardware" :list="equipments" />
    </div>
    <div class="text-blue-darken-2 text-h3 tw-text-center tw-mb-8">Succeed Case</div>
    <v-card class="pb-6 tw-m-[18px] tw-mb-[32px]">
      <div class="text-h4 tw-pt-[24px] tw-text-center">Coin cell</div>
      <v-row>
        <v-col cols="6">
          <v-img class="text-white align-end" src="/succeed_case/coin cell.png" cover />
        </v-col>
        <v-col cols="6">
          <v-card-text class="tw-text-justify"
            >Our coin cell production line comprises a well-established process that includes
            material baking, vacuum mixing, slurry filtration, electrode coating, electrode drying,
            electrode rolling, punching, environmental control, cell assembly, cell sealing, and
            formation testing. Through precise operations and advanced technology, we ensure uniform
            coating of positive and negative electrode materials, precise dimensions, and optimal
            performance. Our production line strictly adheres to quality standards, guaranteeing
            reliable manufacturing of pouch cells. From material preparation to final testing, our
            professional production line ensures outstanding performance and reliable safety,
            meeting the diverse needs of our customers.</v-card-text
          >
        </v-col>
      </v-row>
    </v-card>
    <v-card class="pb-6 tw-m-[18px] tw-mb-[32px]">
      <div class="text-h4 tw-pt-[24px] tw-text-center">Pouch cell pilot line</div>
      <v-row>
        <v-col cols="6">
          <v-card-text class="tw-text-justify"
            >Our pouch cell pilot line is a highly specialized production line that encompasses key
            processes such as vacuum mixing, electrode coating, electrode rolling, electrode
            cutting, electrode stacking, electrode welding, film forming, top-side sealing,
            electrolyte filling, vacuum resting, vacuum sealing, hot pressing formation, vacuum
            final sealing, and pouch cell assembly. Through meticulous operations and advanced
            technology, we ensure the consistency and reliability of the positive and negative
            electrodes. Each step is carefully controlled to guarantee the stability, reliability,
            and high performance of the cells. Our pouch cell pilot line meets industry standards
            and caters to the professional needs of our customers. Whether for research samples or
            small-scale production, we provide high-quality and highly reliable pouch cell
            products.</v-card-text
          >
        </v-col>
        <v-col cols="6">
          <v-img class="text-white align-end" src="/succeed_case/coin cell.png" cover />
        </v-col>
      </v-row>
    </v-card>
    <v-card class="pb-6 tw-m-[18px] tw-mb-[32px]">
      <div class="text-h4 tw-text-center tw-pt-[24px] tw-mb-[24px]">
        Pouch cell pilot line (200m2)
      </div>
      <v-row>
        <v-col cols="6">
          <v-img
            class="text-white align-end"
            src="/succeed_case/Pouch cell pilot line (200m2).png"
            cover
          />
        </v-col>
        <v-col cols="6">
          <v-card-text class="tw-text-justify"
            >Our pouch cell pilot line layout has been meticulously designed, as shown in the
            accompanying diagram, to optimize space utilization, streamline workflow, and control
            temperature and humidity. This layout ensures high production efficiency, convenient
            operation, and precise experimental control. The equipment placement is strategically
            arranged, allowing easy access for operators while prioritizing safety
            considerations.</v-card-text
          >
        </v-col>
      </v-row>
      <v-row>
        <v-slide-group selected-class="bg-primary" show-arrows>
          <v-slide-group-item v-for="img in successCases" :key="img">
            <v-card color="grey-lighten-1" :class="['ma-4']" width="260">
              <v-img :src="img"></v-img>
            </v-card>
          </v-slide-group-item>
        </v-slide-group>
      </v-row>
    </v-card>
    <!-- <MainTitleList title="Customized fixture" :list="fixtures" /> -->
  </v-container>
</template>

<script setup lang="ts">
import MainTitleList from '@/components/MainTitleList.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 successCases = [
  '/succeed_case/device1.png',
  '/succeed_case/device2.png',
  '/succeed_case/device3.png',
  '/succeed_case/device4.png',
  '/succeed_case/device5.png'
]

const fixtures = [
  { imageUrl: '/succeed_case/customized_fixture/fuel-cell-test-fixture.png' },
  { imageUrl: '/succeed_case/customized_fixture/coin-cell.png' },
  { imageUrl: '/succeed_case/customized_fixture/flow-battery-test-fixture.png' },
  { imageUrl: '/succeed_case/customized_fixture/customized-fixture.png' }
]
</script>

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