sanmu
authored
2 years ago
1
<template>
sanmu
authored
2 years ago
2
3
<v-rows class="tw-w-full">
<v-carousel hide-delimiter-background show-arrows="hover">
sanmu
authored
2 years ago
4
5
6
7
<v-carousel-item src="/banner/banner1.jpg" cover alt="canrud"> </v-carousel-item>
<v-carousel-item src="/banner/banner2.jpg" cover alt="canrud"> </v-carousel-item>
<v-carousel-item src="/banner/banner3.jpg" cover alt="canrud"> </v-carousel-item>
<v-carousel-item src="/banner/banner4.png" cover alt="canrud"> </v-carousel-item>
sanmu
authored
2 years ago
8
<!-- <v-carousel-item src="/banner3.jpeg" cover> </v-carousel-item> -->
sanmu
authored
2 years ago
9
</v-carousel>
sanmu
authored
2 years ago
10
</v-rows>
sanmu
authored
2 years ago
11
12
13
<!-- 优势 -->
<!-- <div class="tw-mb-[64px]">
<MainTitleList
sanmu
authored
2 years ago
14
15
16
17
18
:cardNum="3"
:title="t('优势')"
:list="strengths"
desc="Canrd is aimed to be the world's top one-stop service provider in the field of new energy research Dedicated, professional, and quick response/solution"
/>
sanmu
authored
2 years ago
19
20
</div> -->
<!-- 能源材料 -->
sanmu
authored
2 years ago
21
22
23
24
25
26
27
28
<div class="tw-py-[64px]">
<v-container>
<MainTitleListOdd
:title="t('材料试剂')"
:list="materials"
desc="Leading global provider of energy storage research materials and providing other professional/universal experimental materials. "
/>
</v-container>
sanmu
authored
2 years ago
29
30
</div>
sanmu
authored
2 years ago
31
<!-- 设备 -->
sanmu
authored
2 years ago
32
33
34
35
36
37
38
39
40
41
<div class="bg-grey-lighten-5 tw-py-[64px]">
<v-container>
<MainTitleList
title="Lab Device"
listType="equipment"
:list="lab.list.map((item) => ({ ...item, href: '/products' }))"
desc="Self-built High-precision Machining Center with Powerful Design and Manufacturing Capabilities. "
href="/equipment"
/>
</v-container>
sanmu
authored
2 years ago
42
43
44
</div>
<!-- Customized Battery -->
sanmu
authored
2 years ago
45
46
47
48
49
50
51
52
53
<div class="tw-py-[64px]">
<v-container>
<MainTitleList
:title="t('Customized Battery')"
:list="batteries"
href="/customize"
desc="200mAh~10Ah, Winding/Stacking, Unfilled/Filled Electrolyte Cells, Three-Electrode, and More. "
/>
</v-container>
sanmu
authored
2 years ago
54
55
</div>
<!-- Testing -->
sanmu
authored
2 years ago
56
57
58
59
60
61
62
63
64
<div class="bg-grey-lighten-5 tw-py-[64px]">
<v-container>
<MainTitleList
:title="t('Testing')"
:list="tests"
href="/test"
desc="Self built testing center and signed strategic cooperation with ATL, Tsinghua and other units. "
/>
</v-container>
sanmu
authored
2 years ago
65
66
</div>
<!-- Pack -->
sanmu
authored
2 years ago
67
68
69
70
71
72
73
74
75
<div class="tw-pt-[64px] tw-pb-[128px]">
<v-container>
<MainTitleList
:title="t('Pack')"
href="/pack"
:list="packs"
desc="Focusing on energy materials/new energy storage systems/modules and other fields, mastering advanced technologies to provide high-quality services. "
/>
</v-container>
sanmu
authored
2 years ago
76
</div>
sanmu
authored
2 years ago
77
78
79
</template>
<script setup lang="ts">
sanmu
authored
2 years ago
80
import MainTitleList from '@/components/MainTitleList.vue'
sanmu
authored
2 years ago
81
import MainTitleListOdd from '@/components/MainTitleListOdd.vue'
sanmu
authored
2 years ago
82
import { useCategoryStore } from '@/stores/category'
sanmu
authored
2 years ago
83
84
85
86
import { useI18n } from 'vue-i18n'
import { computed } from 'vue'
const { t } = useI18n()
sanmu
authored
2 years ago
87
88
const store = useCategoryStore()
sanmu
authored
2 years ago
89
sanmu
authored
2 years ago
90
91
92
93
94
95
96
97
const lab = computed(
() =>
store?.list?.[3] || {
categoryDisplayName: '',
list: []
}
)
const materials = [
sanmu
authored
2 years ago
98
99
{ name: 'Energy materials', imageUrl: '/home/1.jpg', href: '/products' },
{
sanmu
authored
2 years ago
100
name: 'Laboratory consumables',
sanmu
authored
2 years ago
101
102
103
104
imageUrl: '/home/2-Universal-consumables.png',
href: '/products'
},
{
sanmu
authored
2 years ago
105
name: 'Low-dimensional materials',
sanmu
authored
2 years ago
106
107
108
imageUrl: '/home/3-Low-dimensional-materials.png',
href: '/products'
}
sanmu
authored
2 years ago
109
]
sanmu
authored
2 years ago
110
sanmu
authored
2 years ago
111
const tests = [
sanmu
authored
2 years ago
112
113
114
115
116
117
118
119
{
name: 'Electrochemical performance',
imageUrl: '/home/8_Electrochemical_performance.svg',
href: '/test'
},
{ name: 'Reliability testing', imageUrl: '/home/9 Reliability testing.svg', href: '/test' },
{ name: 'Material testing', imageUrl: '/home/10 Material testing.svg', href: '/test' },
{ name: 'Calibration', imageUrl: '/home/11 Calibration.svg', href: '/test' }
sanmu
authored
2 years ago
120
121
]
const batteries = [
sanmu
authored
2 years ago
122
123
124
125
126
127
128
129
{ name: 'Material evaluation', imageUrl: '/home/4-Material-evaluation.png', href: '/customize' },
{ name: 'R&D foundry', imageUrl: '/home/5-R&D-foundry.png', href: '/customize' },
{ name: 'Chemical system', imageUrl: '/home/6-Chemical-system.png', href: '/customize' },
{
name: 'Semi product customization',
imageUrl: '/home/7-Semi-product-customization.png',
href: '/customize'
}
sanmu
authored
2 years ago
130
131
]
const packs = [
sanmu
authored
2 years ago
132
{ name: 'Power bank', imageUrl: '/home/12-power-bank.png', href: '/pack' },
sanmu
authored
2 years ago
133
{ name: 'Energy storage', imageUrl: '/home/13-Energy-storage.png', href: '/pack' },
sanmu
authored
2 years ago
134
135
136
137
138
139
{ name: 'power tool', imageUrl: '/home/3-powertool.png', href: '/pack' },
{
name: 'low-dimensional materials',
imageUrl: '/home/4-portableenergystorage.png',
href: '/pack'
}
sanmu
authored
2 years ago
140
]
sanmu
authored
2 years ago
141
</script>