已经恢复了哈
orc预计什么时候能恢复orc预计什么时候能恢复呢
12-11用户说下单下不了, 公司的测试机都没问题, 等了一个多月才发现是这个问题.....................
picker组件 mode="time",手机是12小时制的时候,返回值问题?iphone手机,最近几天发现,手机设置的是12小时制的话,picker组件 mode="time" 有问题 例如选择时间【03:00】返回的是【上午3:00】 选择【14:30】返回的是 【下午2:30】 之前一直都是24小时制返回的,是不是 bug了 当然官方要是坚持12小时制返回也行,我只能做兼容了 如果是兼容的话,提醒一下大家,目前有两个特殊的时间点需要特别注意,凌晨0点 和 中午12点 1、凌晨【00:30】 返回的是【上午12:30】 2、中午【12:30】返回的是【下午12:30】 最后还是希望官方统一返回24小时制的格式
2023-09-19我也遇到了同样的问题, 真的很无语
开发者工具的光标自动修改同名变量的功能怎么关闭啊?[图片] 如题,点击fileStream后修改名称,会把上面的一起修改了,这功能好烦啊
2022-12-13.swiper-item { .movable-area { width: 100vw; height: 100vh; } > .cloak { z-index: 1; } > .item { z-index: 100; } } .w00 { width: 100%; } .h00 { height: 100%; } .pos-rel { position: relative; } .fx-al-center { display: flex; align-items: center; } .fx-center { display: flex; justify-content: center; align-items: center; }
在阻止了事件冒泡的情况下改变swiper的current时, swiper被 touch事件滑动通过js改变current滑动到第四个, 已经阻止了事件冒泡, swiper理应不被touch, 但是swiper被touch事件改变回了第三个 此代码是通过uniapp 编译到微信小程序运行的 [图片][图片] <swiper class="w00 h00" @change="swiperChange" :current="checked" :duration="200" :touchable="false" disable-touch > <swiper-item v-for="(item, index) of data" class="swiper-item pos-rel" :key="index" > <movable-area scale-area class="movable-area" @touchmove.stop="() => {}" > <movable-view scale inertia :scale-min="1" out-of-bounds direction="all" class="fx-al-center fx-center w00 h00" @click="$emit('exit')" @change.stop="move" :friction="5" > <image class="w00" @click.stop="" mode="widthFix" :src="item.img" ></image> </movable-view> </movable-area> </swiper-item> </swiper> methods: { move(e) { if (this.inSwiper) return; if (e.detail.source === 'touch-out-of-bounds') { let temp = this.checked; if (!this.startSwipers) { // 保存x轴初始坐标 this.x = e.detail.x; this.startSwipers = true; } else if (this.startSwipers) { if (e.detail.x - this.x < 0) { if (this.checked < this.data.length - 1) { temp = this.checked + 1; console.log(); } } else { if (this.checked > 0) { temp = this.checked - 1; } } this.checked = temp; this.startSwipers = false; this.inSwiper = true; let timer = setTimeout(() => { this.inSwiper = false; clearTimeout(timer); }, 300); console.log('x:', e.detail.x - this.x); console.log('setCurrent:', this.checked + 1); } } }, swiperChange(e) { if (e.detail.source === 'touch') { this.checked = e.detail.current; } console.log(e.detail.source); console.log('swiperChange:', e.detail.current + 1); }, }
2022-07-15