Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/static/pictures/丝巾.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/pictures/书签.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/pictures/手机壳.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/pictures/抱枕.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/pictures/笔记本.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/pictures/装饰画.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
<div class="elegant-card" @click="router.push('/peripheral')">
<div class="elegant-image">
<div class="image-frame">
<img src="https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg" alt="湘绣丝巾" loading="lazy">
<img src="/static/pictures/丝巾.jpg" alt="湘绣丝巾" loading="lazy">
</div>
<div class="hover-overlay">
<span class="view-detail">查看细节</span>
Expand All @@ -351,7 +351,7 @@
<div class="elegant-card" @click="router.push('/peripheral')">
<div class="elegant-image">
<div class="image-frame">
<img src="https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg" alt="湘绣书签" loading="lazy">
<img src="/static/pictures/书签.jpg" alt="湘绣书签" loading="lazy">
</div>
<div class="hover-overlay">
<span class="view-detail">查看细节</span>
Expand All @@ -367,7 +367,7 @@
<div class="elegant-card" @click="router.push('/peripheral')">
<div class="elegant-image">
<div class="image-frame">
<img src="https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg" alt="湘绣抱枕" loading="lazy">
<img src="/static/pictures/抱枕.jpg" alt="湘绣抱枕" loading="lazy">
</div>
<div class="hover-overlay">
<span class="view-detail">查看细节</span>
Expand Down
12 changes: 6 additions & 6 deletions src/views/PeripheralView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,47 +87,47 @@ const products = ref([
name: '湘绣丝巾',
description: '采用优质桑蚕丝,手工绣制的精美丝巾',
price: 398,
image: 'https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg',
image: '/static/pictures/丝巾.jpg',
categoryId: 1 // 服饰配饰
},
{
id: 2,
name: '湘绣笔记本',
description: '封面采用湘绣工艺,内页优质纸张',
price: 158,
image: 'https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg',
image: '/static/pictures/笔记本.jpg',
categoryId: 2 // 文具用品
},
{
id: 3,
name: '湘绣书签套装',
description: '精美湘绣书签,一套四枚',
price: 88,
image: 'https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg',
image: '/static/pictures/书签.jpg',
categoryId: 2 // 文具用品
},
{
id: 4,
name: '湘绣抱枕',
description: '舒适面料,精致湘绣图案',
price: 268,
image: 'https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg',
image: '/static/pictures/抱枕.jpg',
categoryId: 3 // 家居装饰
},
{
id: 5,
name: '湘绣手机壳',
description: '时尚手机壳,点缀湘绣元素',
price: 128,
image: 'https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg',
image: '/static/pictures/手机壳.jpg',
categoryId: 4 // 数码配件
},
{
id: 6,
name: '湘绣装饰画',
description: '小型湘绣装饰画,适合家居装饰',
price: 598,
image: 'https://pic1.imgdb.cn/item/67fe2d5688c538a9b5d1b561.jpg',
image: '/static/pictures/装饰画.jpg',
categoryId: 3 // 家居装饰
}
])
Expand Down