consumerm模块完成度90%,完善消费者和商家端数据库表,商品、聊天、订单数据对接好了supabase,和商家端对接了聊天功能,安卓端编译通过了css样式,剩余几个页面在处理函数规范问题

This commit is contained in:
cyh666666
2026-02-24 17:17:49 +08:00
parent e2f1dfb097
commit e606c597ca
174 changed files with 37917 additions and 4444 deletions

View File

@@ -139,14 +139,15 @@
.spinner {
width: 88rpx;
height: 88rpx;
border-radius: 50%; /* 如果不支持 50%,可以用 44rpx */
border-radius: 44rpx; /* 如果不支持 50%,可以用 44rpx */
border-width: 8rpx;
border-style: solid;
border-color: #f3f4f6;
border-top-color: #ff6b6b;
/* animation: spin 1s linear infinite; UVUE CSS动画需要特定写法或 transform */
transform: rotate(360deg);
transition-duration: 1000ms;
/* transform: rotate(360deg); */
/* transition-duration: 1000ms; */
/* 简单的无限旋转在原生 CSS 中可能需要写关键帧但 App-UVUE 支持有限,
这里暂时保留样式但不指望它自动动起来,或者应该用 loading 组件 */
}
@@ -178,7 +179,7 @@
padding: 24rpx;
border-radius: 16rpx;
font-size: 28rpx;
font-weight: 600;
font-weight: 700;
}
.action.primary {
@@ -192,6 +193,7 @@
background: #ffffff;
}
/*
@keyframes spin {
from {
transform: rotate(0deg);
@@ -200,4 +202,5 @@
transform: rotate(360deg);
}
}
*/
</style>