Browse Source

img path

master
maochaoying 2 years ago
parent
commit
fcbf216fcf
  1. 2
      src/components/AboutUs.vue
  2. 2
      src/components/Bottom.vue
  3. 8
      src/components/Contact.vue
  4. 8
      src/components/FourCard.vue
  5. 2
      src/components/Header.vue
  6. 4
      src/components/HomeScreen.vue
  7. 2
      src/components/Product.vue
  8. 10
      src/components/detail/Overview.vue
  9. 13
      src/pages/Product.vue
  10. 0
      src/static/img/index/1.png
  11. 0
      src/static/img/index/10.png
  12. 0
      src/static/img/index/11.png
  13. 0
      src/static/img/index/12.png
  14. 0
      src/static/img/index/2.png
  15. 0
      src/static/img/index/3.png
  16. 0
      src/static/img/index/4.png
  17. 0
      src/static/img/index/5.png
  18. 0
      src/static/img/index/6.png
  19. 0
      src/static/img/index/7.png
  20. 0
      src/static/img/index/8.png
  21. 0
      src/static/img/index/9.png
  22. 0
      src/static/img/index/a1.png
  23. 0
      src/static/img/index/a2.png
  24. 0
      src/static/img/index/a3.png
  25. 0
      src/static/img/index/jiantou.png
  26. BIN
      src/static/img/lianxi/1.png
  27. BIN
      src/static/img/lianxi/2.png
  28. BIN
      src/static/img/lianxi/a1.png
  29. BIN
      src/static/img/lianxi/a2.png
  30. BIN
      src/static/img/lianxi/a3.png
  31. BIN
      src/static/img/zhongxin/a1.png
  32. BIN
      src/static/img/zhongxin/a2.png
  33. BIN
      src/static/img/zhongxin/a3.png
  34. BIN
      src/static/img/zhongxin/cuo.png
  35. BIN
      src/static/img/zhongxin/dui.png
  36. BIN
      src/static/img/zhongxin/duibi1.png
  37. BIN
      src/static/img/zhongxin/duibi2.png
  38. BIN
      src/static/img/zhongxin/li.png
  39. BIN
      src/static/img/zhongxin/lianxi.png
  40. BIN
      src/static/img/zhongxin/logo.png
  41. BIN
      src/static/img/zhongxin/logo2.png
  42. BIN
      src/static/img/zhongxin/shipin.png
  43. BIN
      src/static/img/zhongxin/shipin2.png

2
src/components/AboutUs.vue

@ -15,7 +15,7 @@
<script setup>
import HeadLine from '@/components/HeadLine'
import RightArrow from '@/static/img/jiantou.png'
import RightArrow from '@/static/img/index/jiantou.png'
import FourCard from '@/components/FourCard'
</script>

2
src/components/Bottom.vue

@ -45,7 +45,7 @@
</template>
<script setup>
import Logo from '@/static/img/12.png'
import Logo from '@/static/img/index/12.png'
</script>
<style lang="scss" scoped>

8
src/components/Contact.vue

@ -60,15 +60,15 @@
</template>
<script setup>
import Phone from '@/static/img/8.png'
import Address from '@/static/img/9.png'
import Email from '@/static/img/10.png'
import Phone from '@/static/img/index/8.png'
import Address from '@/static/img/index/9.png'
import Email from '@/static/img/index/10.png'
</script>
<style lang="scss" scoped>
.contact_container {
padding: 152px 260px;
background: url(../static/img/7.png) no-repeat;
background: url(../static/img/index/7.png) no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;

8
src/components/FourCard.vue

@ -43,10 +43,10 @@
</template>
<script setup>
import Hardware from '@/static/img/3.png'
import Software from '@/static/img/4.png'
import Structure from '@/static/img/5.png'
import Temp from '@/static/img/6.png'
import Hardware from '@/static/img/index/3.png'
import Software from '@/static/img/index/4.png'
import Structure from '@/static/img/index/5.png'
import Temp from '@/static/img/index/6.png'
</script>
<style lang="scss" scoped>

2
src/components/Header.vue

@ -21,7 +21,7 @@
<script setup>
import { ref } from 'vue'
import { useRouter } from 'vue-router'
import Logo from '@/static/img/2.png'
import Logo from '@/static/img/index/2.png'
const activeTab = ref(0)
const router = useRouter()
const changeActiveTab = index => {

4
src/components/HomeScreen.vue

@ -12,7 +12,7 @@
<script setup>
import Header from '@/components/Header'
import Arrow from '@/static/img/jiantou.png'
import Arrow from '@/static/img/index/jiantou.png'
const toNextPage = () => {
document.getElementById('about_us').scrollIntoView({
behavior: 'smooth',
@ -25,7 +25,7 @@ const toNextPage = () => {
position: relative;
width: 100vw;
height: 100vh;
background: url(../static/img/1.png) no-repeat;
background: url(../static/img/index/1.png) no-repeat;
background-size: 100% 100%;
.main_title {
font-size: 76px;

2
src/components/Product.vue

@ -36,7 +36,7 @@
<script setup>
import HeadLine from '@/components/HeadLine'
import A1 from '@/static/img/a1.png'
import A1 from '@/static/img/index/a1.png'
</script>
<style lang="scss" scoped>

10
src/components/detail/Overview.vue

@ -0,0 +1,10 @@
<template>
<div class="overview_container">overview</div>
</template>
<script setup></script>
<style lang="scss" scoped>
.overview_container {
}
</style>

13
src/pages/Product.vue

@ -1,7 +1,14 @@
<template>
<div>pro</div>
<div class="product_main_container">
<Overview />
</div>
</template>
<script setup></script>
<script setup>
import Overview from '@/components/detail/Overview'
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
.product_main_container {
}
</style>

0
src/static/img/1.png → src/static/img/index/1.png

Before

Width: 1920  |  Height: 1080  |  Size: 2.0 MiB

After

Width: 1920  |  Height: 1080  |  Size: 2.0 MiB

0
src/static/img/10.png → src/static/img/index/10.png

Before

Width: 55  |  Height: 56  |  Size: 1.7 KiB

After

Width: 55  |  Height: 56  |  Size: 1.7 KiB

0
src/static/img/11.png → src/static/img/index/11.png

Before

Width: 1920  |  Height: 300  |  Size: 206 KiB

After

Width: 1920  |  Height: 300  |  Size: 206 KiB

0
src/static/img/12.png → src/static/img/index/12.png

Before

Width: 106  |  Height: 93  |  Size: 2.6 KiB

After

Width: 106  |  Height: 93  |  Size: 2.6 KiB

0
src/static/img/2.png → src/static/img/index/2.png

Before

Width: 216  |  Height: 44  |  Size: 2.5 KiB

After

Width: 216  |  Height: 44  |  Size: 2.5 KiB

0
src/static/img/3.png → src/static/img/index/3.png

Before

Width: 60  |  Height: 60  |  Size: 1.1 KiB

After

Width: 60  |  Height: 60  |  Size: 1.1 KiB

0
src/static/img/4.png → src/static/img/index/4.png

Before

Width: 61  |  Height: 50  |  Size: 1.7 KiB

After

Width: 61  |  Height: 50  |  Size: 1.7 KiB

0
src/static/img/5.png → src/static/img/index/5.png

Before

Width: 63  |  Height: 62  |  Size: 2.7 KiB

After

Width: 63  |  Height: 62  |  Size: 2.7 KiB

0
src/static/img/6.png → src/static/img/index/6.png

Before

Width: 53  |  Height: 60  |  Size: 2.5 KiB

After

Width: 53  |  Height: 60  |  Size: 2.5 KiB

0
src/static/img/7.png → src/static/img/index/7.png

Before

Width: 1920  |  Height: 850  |  Size: 242 KiB

After

Width: 1920  |  Height: 850  |  Size: 242 KiB

0
src/static/img/8.png → src/static/img/index/8.png

Before

Width: 55  |  Height: 55  |  Size: 1.2 KiB

After

Width: 55  |  Height: 55  |  Size: 1.2 KiB

0
src/static/img/9.png → src/static/img/index/9.png

Before

Width: 54  |  Height: 54  |  Size: 1.4 KiB

After

Width: 54  |  Height: 54  |  Size: 1.4 KiB

0
src/static/img/a1.png → src/static/img/index/a1.png

Before

Width: 700  |  Height: 393  |  Size: 314 KiB

After

Width: 700  |  Height: 393  |  Size: 314 KiB

0
src/static/img/a2.png → src/static/img/index/a2.png

Before

Width: 700  |  Height: 393  |  Size: 359 KiB

After

Width: 700  |  Height: 393  |  Size: 359 KiB

0
src/static/img/a3.png → src/static/img/index/a3.png

Before

Width: 1400  |  Height: 393  |  Size: 175 KiB

After

Width: 1400  |  Height: 393  |  Size: 175 KiB

0
src/static/img/jiantou.png → src/static/img/index/jiantou.png

Before

Width: 17  |  Height: 10  |  Size: 276 B

After

Width: 17  |  Height: 10  |  Size: 276 B

BIN
src/static/img/lianxi/1.png

After

Width: 1920  |  Height: 520  |  Size: 1011 KiB

BIN
src/static/img/lianxi/2.png

After

Width: 1400  |  Height: 546  |  Size: 528 KiB

BIN
src/static/img/lianxi/a1.png

After

Width: 40  |  Height: 40  |  Size: 857 B

BIN
src/static/img/lianxi/a2.png

After

Width: 40  |  Height: 40  |  Size: 878 B

BIN
src/static/img/lianxi/a3.png

After

Width: 40  |  Height: 40  |  Size: 1.1 KiB

BIN
src/static/img/zhongxin/a1.png

After

Width: 55  |  Height: 55  |  Size: 1.2 KiB

BIN
src/static/img/zhongxin/a2.png

After

Width: 54  |  Height: 54  |  Size: 1.4 KiB

BIN
src/static/img/zhongxin/a3.png

After

Width: 56  |  Height: 56  |  Size: 1.7 KiB

BIN
src/static/img/zhongxin/cuo.png

After

Width: 30  |  Height: 30  |  Size: 717 B

BIN
src/static/img/zhongxin/dui.png

After

Width: 30  |  Height: 30  |  Size: 665 B

BIN
src/static/img/zhongxin/duibi1.png

After

Width: 500  |  Height: 365  |  Size: 188 KiB

BIN
src/static/img/zhongxin/duibi2.png

After

Width: 774  |  Height: 406  |  Size: 211 KiB

BIN
src/static/img/zhongxin/li.png

After

Width: 100  |  Height: 100  |  Size: 18 KiB

BIN
src/static/img/zhongxin/lianxi.png

After

Width: 1920  |  Height: 852  |  Size: 499 KiB

BIN
src/static/img/zhongxin/logo.png

After

Width: 216  |  Height: 44  |  Size: 2.5 KiB

BIN
src/static/img/zhongxin/logo2.png

After

Width: 1699  |  Height: 1856  |  Size: 38 KiB

BIN
src/static/img/zhongxin/shipin.png

After

Width: 1400  |  Height: 788  |  Size: 953 KiB

BIN
src/static/img/zhongxin/shipin2.png

After

Width: 110  |  Height: 110  |  Size: 3.2 KiB

Loading…
Cancel
Save