修改组件上浮显示比例

master
于肖磊 2025-05-14 17:37:24 +08:00
parent 6462066016
commit d15dc6fefd
1 changed files with 5 additions and 1 deletions

View File

@ -461,7 +461,11 @@
//
let scale = sys_width / 390;
// 2
scale = scale > 2 ? 2 : scale;
if (sys_width <= 800) {
scale = scale > 2 ? 2 : scale;
} else {
scale = scale;
}
//
diy_data.forEach((item, index) => {
//