网站使用vip这个功能需要icp许可证吗?
小程序怎么做开通vip?我写的小程序里有一个开通vip的功能 开通后会开放更多功能 但审核被拒绝了 我看别人的小程序是可以这样的
2023-07-26有用
登录电脑微信,打开小程序,提示你的微信版本过低,无法正常使用此小程序的服务,请更新微信到最新版本?我登录电脑微信,是微信 Windows 版打开小程序,提示“你的微信版本过低,无法正常使用此小程序的服务,请更新微信到最新版本”,可是我的电脑微信是最新版本,而且提示要我更新,点《更新微信》也没反应,怎么弄?[图片][图片]
2023-06-26解决了吗
echarts图表的datazoom无法左右滚动?function weeklyCharts(canvas, width, height, dpr) { const chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr // new }); canvas.setChart(chart); let XData = ['道里区','南岗区','道外区','香坊区','松北区','平房区'] let valueData = { jfsbs: [805,860,400,400,400,400], md: [300,390,290,285,290,288], znhbl: [95,78,50,60,85,78], } var option = { backgroundColor: '#fff', grid: { left: '2%', right: '4%', bottom: '14%', top:'16%', containLabel: true }, legend: { bottom:"1%", itemWidth: 10, itemHeight: 10, formatter: ['{a|{name}}'].join('\n'), textStyle: { fontSize: 10, color: '#666666', height: 8, rich: { a: { verticalAlign: 'bottom', }, }, }, }, dataZoom: [{ start:10, end:20 }], xAxis: { type: 'category', data: XData, axisLine: { lineStyle: { color: '#cdd5e2' } }, axisLabel: { textStyle: { color: "#666666" } }, }, yAxis: [{ type: 'value', axisLabel: { textStyle: { color: "#666666" }} , axisLine: { lineStyle: { color: '#cdd5e2' } }, splitLine: { show: true, lineStyle: { color: 'rgba(193, 207, 220, 1)' } }, }, { type: "value", nameTextStyle: { color: "#666666" }, position: "right", axisLine: { lineStyle: { color: '#cdd5e2' } }, splitLine: { show: false, }, axisLabel: { show: true, formatter: "{value} ", //右侧Y轴文字显示 textStyle: { color: "#666666" } } } ], series: [{ name: '供应面积(万m²)', type: 'bar', barWidth: '12px', label: { show: true, position: "top", }, itemStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(123, 200, 255, 1)' }, { offset: 1, color: 'rgba(53, 157, 245, 1)' }]), barBorderRadius: 6, } }, data: valueData.jfsbs }, { name: '成交面积(万m²)', type: 'bar', barWidth: '12px', label: { show: true, position: "top", }, itemStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(171, 218, 83, 1)' }, { offset: 1, color: 'rgba(132, 186, 27, 1)' }]), barBorderRadius: 6, } }, data: valueData.md },{ name: "均价(元/m²)", type: "line", label: { show: true, position: "top", }, yAxisIndex: 1, //使用的 y 轴的 index,在单个图表实例中存在多个 y轴的时候有用 smooth: false, //平滑曲线显示 symbol: "emptycircle", //标记的图形为实心圆 symbolSize: 9, //标记的大小 itemStyle: { normal: { color: 'rgba(255, 119, 74, 1)', borderColor: 'rgba(255, 119, 74, 1)', //圆点透明 边框 borderWidth: 2 }, }, lineStyle: { color: "RGBA(255, 131, 90, 0.9)" }, data: valueData.znhbl } ] }; chart.setOption(option); return chart; }
2023-05-09废物东西
都2022年了,为什么微信开发者工具如此难用?bug这么多?1、微信开发者工具经常性崩溃,wxml文件里的开始标签和结束标签不一致会造成直接崩溃 2、没有文件复制粘贴功能 3、没有多选功能 4、代码还没写完,调试工具就自动运行代码,经常就一堆报错和警告信息 5、创建文件的时候能否别那么固执己见帮我们生成那么多的东西,各种生命周期,还得自己手动删除大部分,不能做成输入相关字母自动提示选择输入? 6、开发方式落后,抄了vue和react,但跟他们相比开发体验相差甚远,如果vue和react 100分,微信小程序的开发体验就只有0.44分。 用微信开发者工具开发了十几天,开发过程及其难受,工具实在难以使用,开发过程中修改代码经常崩溃,是整个工具崩溃,这是最蛋疼的,这辈子第一次用过这么累,这么坑的工具,本来还想坚持下去,但工具和开发的方式都实在让人崩溃,本来写代码就很累了,开发工具还在加重开发的痛苦,弃坑了,浪费我的生命。 腾讯的技术也不过如此!!!
2023-05-04why????
wx.uploadFile成功后自动刷新页面代码如下: [代码]wx.uploadFile({[代码] [代码] [代码][代码]url: api.saveCanvas,[代码] [代码] [代码][代码]filePath: canvas.tempFilePath,[代码] [代码] [代码][代码]name: [代码][代码]'file'[代码][代码],[代码] [代码] [代码][代码]formData: {[代码] [代码] [代码][代码] [代码][代码]'name'[代码][代码]: [代码][代码]this[代码][代码].data.userInfo.nickName,[代码] [代码] [代码][代码] [代码][代码]'avatarUrl'[代码][代码]: [代码][代码]this[代码][代码].data.userInfo.avatarUrl,[代码] [代码] [代码][代码] [代码][代码]'openId'[代码][代码]: app.globalData.openId[代码] [代码] [代码][代码]},[代码] [代码] [代码][代码]success: res => {[代码] [代码] [代码][代码] wx.navigateTo({[代码] [代码] [代码][代码] url: [代码][代码]'/pages/share/share'[代码] [代码] [代码][代码] })[代码] [代码] [代码][代码]}[代码] [代码]})[代码] 成功后的wx.navigateTo总是闪一下就刷新回首页了,两个页面均没有报错。通过预览模式在手机微信客户端上是正常的,求指点
2023-04-30