- 请问如何通过小程序连接打印机进行订单打印?
请问是用https://developers.weixin.qq.com/miniprogram/dev/framework/device/bluetooth.html这个接口来对接蓝牙搜索打印机,然后配对绑定再打印吗?
2020-07-15 - 订单可以永远不关闭吗?
是否可以用户每点击一次支付就生成一次预付单id,之前的无论是否支付成功都不管了?微信是否会自动关闭‘旧’的订单?
2020-12-16 - scroll-view 组件子元素高度不够无法刷新解决办法
方案1 主要就是给 scroll-view 添加一个比它大1个像素的子元素,然后在子元素中进行列表的渲染。这1px,虽不尽人意,但是也解决了卡着不能刷新的问题。 [代码]<scroll-view scroll-y style="width: 100%;height: calc(100vh - 205rpx);" refresher-enabled="{{true}}" refresher-threshold="{{100}}" refresher-default-style="black" refresher-triggered="{{listTopLoading}}" bindrefresherrefresh="onResetLoadList" bindscrolltolower="onPageLoadList" lower-threshold="0"> <view style="width: 100%;height: calc(100vh - 205rpx + 1px);overflow: auto;"> <block wx:for="{{dataList}}" wx:key="index"> <view>{{item.id}}</view> </block> <view wx:if="{{listNoMore}}" style="text-align: center;display: flex;justify-content: center;align-items: center;margin: 30rpx 0"> <wux-icon type="md-happy" color="#999" size="18"/> <text style="color: #999;margin-left: 5px">没有更多数据了</text> </view> </view> </scroll-view> [代码] 继该方案之后又出现问题了,就是有时刷新下拉和列表下拉冲突,导致不能列表下拉,所以,最后我选择了把比 scroll-view 大一个像素的子元素放到了没有更多数据上,列表的渲染还在 scroll-view 里。 [代码]<scroll-view scroll-y style="width: 100%;height: calc(100vh - 205rpx);" refresher-enabled="{{true}}" refresher-threshold="{{100}}" refresher-default-style="black" refresher-triggered="{{listTopLoading}}" bindrefresherrefresh="onResetLoadList" bindscrolltolower="onPageLoadList" lower-threshold="0"> <block wx:for="{{dataList}}" wx:key="index"> <view>{{item.id}}</view> </block> <view wx:if="{{listNoMore}}" style="width: 100%;height: calc(100vh - 205rpx + 1px);overflow: auto;"> <view style="text-align: center;display: flex;justify-content: center;align-items: center;margin: 30rpx 0"> <wux-icon type="md-happy" color="#999" size="18"/> <text style="color: #999;margin-left: 5px">没有更多数据了</text> </view> </view> </scroll-view> [代码] 方案2 这个比较好 [代码]<scroll-view ...> <block wx:for="{{dataList}}" wx:key="index"> <view>{{item.id}}</view> </block> <view style="width:2rpx;height:2rpx;bottom:-2rpx;position:absolute;" /> </scroll-view> [代码] code by @eric 方案3 [代码]<scroll-view ...> <view style="width:100%;height:100%;padding-bottom: 20vw;"> </view> </scroll-view> [代码] code by @Br🐳uce
2020-03-20