同样的问题,请问解决了没有?
echart在小程序中层级高过一切,要如何解决?调试器不会出现该问题,但真机调试会出现 底部一排按钮是fixed固定在下方的,但当滚动出现echart折线图时层级会比固定区域更高 要如何处理折线图的层级问题? [图片] [图片] [图片] <view class="container log-list"> <block wx:for="{{logs}}" wx:key="timeStamp" wx:for-item="log"> <view style="height: 500rpx;">1111</view> <view style="height: 500rpx;">2222</view> <view style="height: 500rpx;">3333</view> <view style="height: 500rpx;">4444</view> <view style="width: 100%;border: 1px solid red;height: 400rpx"> <ec-canvas force-use-old-canvas="true" style="width: 100%; height: 220px;" id="mychart-dom-bar" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas> </view> <view style="height: 500rpx;">5555</view> <cover-view class="buttom">哈哈哈哈</cover-view> </block> </view> .log-list { display: flex; flex-direction: column; padding: 40rpx; } .log-item { margin: 10rpx; } .buttom{ height: 100px; line-height: 100px; background-color: pink; width: 100vw; position: fixed; bottom: 0; text-align: center; } // logs.js const util = require('../../utils/util.js') import * as echarts from './ec-canvas/echarts'; let chart = null; const initChart = (canvas, width, height, dpr) => { chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr // 像素 }); canvas.setChart(chart); let option = { grid: { // top: 0, left: '40px', right: '20px', // bottom: 0, width:'auto', height:'auto' }, xAxis: { type: 'category', data: [1, 2, 3,4, 5, 6], axisLine: { lineStyle: { color: '#909090', width: 1, //这里是为了突出显示加上的 } }, splitLine: { show: false, } }, yAxis: { type: 'value', minInterval: 1, axisLine: { lineStyle: { color: '#909090', width: 1, //这里是为了突出显示加上的 } }, splitLine: { show: true, //隐藏或显示 lineStyle:{ color: ['#EBEBEB'], width: 1, type: 'solid' } }, }, series: [ { data: [1, 2, 4, 56,6 ,7 ], type: 'line', symbol:'none', color: '#FC2853' } ] }; chart.setOption(option); return chart; } Page({ data: { logs: [], ec: { onInit: initChart }, }, onLoad() { } })
08-02在很多页面都有使用到radio组件,为了方便代码编写,把公共的放到自定义组件里面了。在自定义组件的wxss中更改radio的样式( !important加了)不生效,在引用组件页面的wxss中就会生效,请问下这是什么原因?三个样式写在自定义组件中均未生效。 radio .wx-radio-input { width: 26rpx !important; height: 26rpx !important; border: 2rpx solid #FFFFFF!important; border-radius: 50% !important; background: #FFFFFF !important; } radio .wx-radio-input.wx-radio-input-checked { border: 2rpx solid #FFFFFF !important; background-color: white !important; } radio .wx-radio-input.wx-radio-input-checked::before { width: 50% !important; height: 50% !important; background: #2080F7 !important; border-radius: 50% !important; content: '' !important; transform: translate(-50%, -50%) scale(1) !important; -webkit-transform: translate(-50%, -50%) scale(1) !important; }
修改单选按钮样式无效?在app.wxss中修改单选按钮的样式无效,但是在页面中的wxss中修改就可以生效 radio .wx-radio-input{ width: 36rpx; height: 36rpx; } radio .wx-radio-input.wx-radio-input-checked::before{ border-radius: 50%; font-size:40rpx; }
07-29FileSystemManager.readFile
wx.chooseImage(OBJECT) 临时路径的问题wx.chooseImage(OBJECT) 图片的临时路径怎么转化为 base64的信息呢? 能拿到吗?
2021-05-12五月份了,频次问题,处理了吗?
wx.onLocationChange能否加个精度选项和上报频率选项?用小程序测试了下wx.onLocationChange, 坐那没动,console.log显示每隔一秒钟就会回调一次,相当于一秒钟回调一次 建议: 可以加个位置变化精度选项,比如移动超过1米,再回调 可以加个回调频率,比如可以选择1ms、1min、5min等 如果有以上两个选项感觉是不是可以能更省电?客户也更愿意使用, 否则客户会以费电抵触使用,导致该API实际用不起来
2021-05-07