- 企业选人组件,selectedUserIds 字段会自动排序
企业微信客户端选人(依次审批,顺序是有意义的),但是把上次选中的人id传入后,id会自己重新排序,不再是上次我选择的顺序。 是否可以添加字段以表示针对 selectedUserIds 我不需要自动排序???
2021-11-12 - 模拟器 企业微信模式 Canvas createSelectorQuery 无法获取 node
// 相关代码 wx.createSelectorQuery() .select(`#${this.props.id}`) .fields({ node: true, size: true, context: true, rect: true }).exec(res => { let { node, width, height } = res[0] console.log('res', res, node) if (!node) return const context = node.getContext('2d') const pixelRatio = Taro.getSystemInfoSync().pixelRatio // 高清设置 node.width = width * pixelRatio node.height = height * pixelRatio const config = { context, width, height, pixelRatio } const chart = this.props.onInit(config) if (chart) { this.chart = chart this.canvasEl = chart.get('el') } }) @antv/f2 的图表。在模拟器-微信小程序模式可以展示;企业微信的真机调试可以展示;但是模拟器的企业微信模式死活不可以!!!!!! 企业微信模式: [图片] 微信模式: [图片] 企业微信真机预览: [图片]
2021-11-03