pack.vue
5.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
<v-img src="/banner/pack.jpg" v-if="!isMobile()"></v-img>
<v-img src="/mobile/banner-pack.png" v-if="isMobile()"></v-img>
<div class="font-weight-bold tw-leading-[30px] text-white tw-bg-[url('/banner/top2.png')] tw-p-4 sm:tw-p-8">
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."
</div>
<div class="tw-p-[32px] sm:tw-pt-[64px] sm:tw-px-[128px]">
<div class="mb-8 text-blue-darken-1 tw-text-center text-h5 text-sm-h4 mb-sm-6">
<b>Pack Hardware</b>
</div>
<v-slide-group class="pa-4 tw-w-[110%] tw-ml-[-5%] tw-mb-[32px]" center-active show-arrows v-model="equipSlide"
v-if="!isMobile()">
<v-slide-group-item v-for="n in hardwares" :key="n.title">
<v-card :class="['ma-4']" width="300">
<v-img :src="n.imageUrl" class="ma-2"></v-img>
<v-card-title class="tw-text-center text-subtitle-1">11{{ n.title }}</v-card-title>
</v-card>
</v-slide-group-item>
</v-slide-group>
<v-carousel height="310" width="318" interval="3000" cycle :continuous="false" :show-arrows="false"
hide-delimiter-background v-if="isMobile()">
<v-carousel-item v-for="n in hardwares" :key="n.imageUrl">
<v-sheet color="grey-lighten-1" height="310" width="318" class="mx-auto" border="none">
<v-card-title class="tw-text-center text-subtitle-1">{{ n.title }}</v-card-title>
<v-img :src="n.imageUrl" alt="canrud"></v-img>
</v-sheet>
</v-carousel-item>
</v-carousel>
</div>
<div class="tw-p-[32px] sm:tw-py-[64px] sm:tw-px-[128px] bg-grey-lighten-5">
<div class="mb-4 mb-sm-16 text-blue-darken-1 text-h5 text-sm-h4 tw-text-center">
<b>Succeed Case</b>
</div>
<v-row class="mb-8">
<v-col cols="12" sm="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 font-weight-medium text-grey-darken-1">
Canrd helps our customer to accomplish the requirement from PET current collector to power
bank;
</div>
</v-col>
</v-row>
<v-divider class="my-8 my-sm-16"></v-divider>
<v-row class="mb-16">
<v-col>
<div class="text-body-1 tw-h-full tw-text-justify font-weight-medium text-grey-darken-1">
<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="12" sm="8">
<v-img src="/pack_case/9.png"></v-img>
</v-col>
</v-row>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted, onUnmounted } from 'vue'
import { isMobile } from '~/utils'
useHead({
title: 'canrud',
meta: [{
name: 'title',
content:
'科路得,PACK product,Market application,Scientific research projects,Practical market applications,Fast-charging mobile power supplies,Smart flashlights,Low-speed vehicles,Small-scale energy storage,Innovative solutions,Customer satisfaction',
}, {
name: 'keywords',
content:
'科路得,PACK product,Market application,Scientific research projects,Practical market applications,Fast-charging mobile power supplies,Smart flashlights,Low-speed vehicles,Small-scale energy storage,Innovative solutions,Customer satisfaction',
},
{
name: 'description',
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."'
}
]
})
const hardwares = [
{ title: '2000w laser-beam welding machine', imageUrl: '/pack_hardware/1.png' },
{ title: '5000A resistance welding machine', imageUrl: '/pack_hardware/2.png' },
{ title: 'Numerical control machine', imageUrl: '/pack_hardware/3.png' },
{ title: '5V 60A', imageUrl: '/pack_hardware/4.png' },
{ title: '5V3A', imageUrl: '/pack_hardware/5.png' },
{ title: '100V/120A', imageUrl: '/pack_hardware/6.png' },
{ title: 'Oscilloscope', imageUrl: '/pack_hardware/7.png' }
]
const equipSlide = ref(1)
let equipTimer: any = null
onMounted(() => {
equipTimer = setInterval(() => {
if (equipSlide.value > hardwares.length) {
equipSlide.value = 0
} else {
equipSlide.value = equipSlide.value + 1
}
}, 2000)
})
onUnmounted(() => {
clearInterval(equipTimer)
equipTimer = null
})
</script>
<style lang="scss" scoped></style>