Pack.vue
2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<template>
<v-img src="/customization_hardware/banner.png"></v-img>
<v-container>
<ContentDescription
content="We are proud to introduce our PACK product to you. As a leader in the market application of
scientific research projects, we focus on transforming scientific achievements into practical
market applications. We provide a variety of cases to meet different project requirements,
such as fast-charging mobile power supplies, smart flashlights, low-speed vehicles, and
small-scale energy storage. We are committed to successfully applying the results of
scientific research projects to the market and providing innovative solutions for our
customers."
/>
<MainTitle title="Customization Hardware" className="tw-mb-[16px]" />
<v-slide-group class="pa-4 tw-w-[110%] tw-ml-[-5%] tw-mb-[32px]" center-active show-arrows>
<v-slide-group-item v-for="n in hardwares" :key="n">
<v-card :class="['ma-4']" width="280">
<v-img width="256" :src="n" class="ma-2"></v-img>
</v-card>
</v-slide-group-item>
</v-slide-group>
<MainTitle title="Succeed Case" />
<v-row class="mb-8">
<v-col cols="8">
<v-img src="/pack_case/8.png"></v-img>
</v-col>
<v-col>
<div class="text-subtitle-1 tw-text-justify tw-items-center tw-flex tw-h-full">
Canrd helps our customer to accomplish the requirement from PET current collector to power
bank;
</div>
</v-col>
</v-row>
<v-divider class="mb-8"></v-divider>
<v-row>
<v-col>
<div class="text-body-1 tw-h-full tw-text-justify">
<p class="mb-3">
1. Canrd helps our customer to accomplish the requirement from sodium cathode to
standard car;
</p>
<p>
2. Canrd is pleased to be the bridge between new material to cell and even to terminal
application product which can accelerate the R&D development;
</p>
</div>
</v-col>
<v-col cols="8">
<v-img src="/pack_case/8.png"></v-img>
</v-col>
</v-row>
</v-container>
</template>
<script setup lang="ts">
import MainTitle from '@/components/MainTitle.vue'
import ContentDescription from '@/components/ContentDescription.vue'
const hardwares = [
'/pack_hardware/1.png',
'/pack_hardware/2.png',
'/pack_hardware/3.png',
'/pack_hardware/4.png',
'/pack_hardware/5.png',
'/pack_hardware/6.png',
'/pack_hardware/7.png'
]
</script>
<style lang="scss" scoped></style>