Compare commits

...

2 Commits

Author SHA1 Message Date
dzl
4dfe0a10bf 修复了上传凭证按钮错误旋转的bug 2025-09-03 13:36:49 +08:00
dzl
e5a2dd2288 修复了图片显示bug 2025-09-03 12:02:56 +08:00
4 changed files with 5 additions and 7 deletions

View File

@@ -1,3 +1,3 @@
# 开发环境配置
VITE_API_BASE_URL=https://minio.zrbjr.com/
VITE_UPLOAD_BASE_URL=https://minio.zrbjr.com/api/upload
VITE_UPLOAD_BASE_URL=/api/upload

View File

@@ -1,5 +1,5 @@
# 生产环境配置
VITE_API_BASE_URL=https://minio.zrbjr.com/
VITE_UPLOAD_BASE_URL=https://minio.zrbjr.com/api/upload
VITE_UPLOAD_BASE_URL=/api/upload
# VITE_API_BASE_URL=http://114.55.111.44:3001/api
# VITE_UPLOAD_BASE_URL=http://114.55.111.44:3001/api/upload

View File

@@ -122,10 +122,8 @@ export default {
},
]);
const newsItems = ref([
'最新活动:双十一特惠',
'最新活动:商城特惠',
'商城新品上架',
'积分兑换规则更新',
'VIP会员特权升级',
]);
// 获取用户积分

View File

@@ -354,7 +354,7 @@
>
<template #placeholder>
<div class="image-slot">
<el-icon class="is-loading"><Loading /></el-icon>
<el-icon class="image-loading"><Loading /></el-icon>
<span>加载中...</span>
</div>
</template>
@@ -1841,7 +1841,7 @@ export default {
text-align: center;
}
.is-loading {
.image-loading {
animation: rotating 2s linear infinite;
}