fix: 将封面图片从png格式替换为jpg格式

更新首页和产品列表页面的封面图片引用,从cover.png改为cover.jpg。同时删除旧的png图片文件并添加新的jpg图片文件。
This commit is contained in:
dzq 2025-11-04 16:27:02 +08:00
parent a0904da41b
commit 0cd0264daf
5 changed files with 5 additions and 4 deletions

View File

@ -13,7 +13,8 @@
"Bash(mkdir -p 'E:\\\\code\\\\智柜宝\\\\wx\\\\src\\\\pages\\\\me')", "Bash(mkdir -p 'E:\\\\code\\\\智柜宝\\\\wx\\\\src\\\\pages\\\\me')",
"Bash(ls -la 'E:\\\\code\\\\智柜宝\\\\wx\\\\static')", "Bash(ls -la 'E:\\\\code\\\\智柜宝\\\\wx\\\\static')",
"Bash(ls -la 'E:\\\\code\\\\智柜宝\\\\wx\\\\src\\\\static')", "Bash(ls -la 'E:\\\\code\\\\智柜宝\\\\wx\\\\src\\\\static')",
"Bash(tree -L 3 -I 'node_modules|dist' /E/code/智柜宝/wx)" "Bash(tree -L 3 -I 'node_modules|dist' /E/code/智柜宝/wx)",
"Bash(tree 'E:\\code\\智柜宝\\wx\\src\\pages\\order' -L 3)"
], ],
"deny": [], "deny": [],
"ask": [] "ask": []

View File

@ -148,7 +148,7 @@ async function handleAb98Bind() {
<template> <template>
<div v-if="showShopList" class="shop-list"> <div v-if="showShopList" class="shop-list">
<div class="shop-header" :style="{ height: `${headerHeight}px` }"> <div class="shop-header" :style="{ height: `${headerHeight}px` }">
<van-image :src="`${publicPath}cover.png`" class="shop-cover" fit="cover" /> <van-image :src="`${publicPath}cover.jpg`" class="shop-cover" fit="cover" />
</div> </div>
<div class="shop-prompt"> <div class="shop-prompt">
<van-cell title="请选择机柜地址:" center /> <van-cell title="请选择机柜地址:" center />
@ -168,7 +168,7 @@ async function handleAb98Bind() {
</div> </div>
<div v-if="!showShopList" class="shop"> <div v-if="!showShopList" class="shop">
<div class="shop-header" :style="{ height: `${headerHeight}px` }"> <div class="shop-header" :style="{ height: `${headerHeight}px` }">
<van-image :src="`${publicPath}cover.png`" class="shop-cover" fit="cover" /> <van-image :src="`${publicPath}cover.jpg`" class="shop-cover" fit="cover" />
</div> </div>
<template v-if="productStore.selectedShop?.mode === 3"> <template v-if="productStore.selectedShop?.mode === 3">
<RentingCabinetContainer :shop-id="productStore.selectedShop.shopId" <RentingCabinetContainer :shop-id="productStore.selectedShop.shopId"

View File

@ -94,7 +94,7 @@ function handleCheckout() {
<view class="shop-list"> <view class="shop-list">
<view class="shop-header"> <view class="shop-header">
<wd-img <wd-img
:src="`/static/cover.png`" :src="`/static/cover.jpg`"
width="100%" width="100%"
height="150" height="150"
mode="aspectFill" mode="aspectFill"

BIN
src/static/cover.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB