<list-item type="header" class="top-header" style="{{bgColor}}">
...
</list-item>
data:{
bgColor: JSON.stringify({"values":[{"type":"linearGradient","directions":["0deg"],"values":["rgba(169,93,93,1)","rgba(200,148,148,1)"]}]}),
}
onShow() {
this.getDetailInfo()
},
getDetailInfo(){
$fetch.json(...).then((data) => {
if(data.bgColor){
self.bgColor = data.bgColor;
}
}).catch(()=>{
...
})
} 网络请求出来的bgColor如下: 手机调试器渲染出来的style如下: 实际上手机显示出来渲染成一片黑色(我使用的手机是小米11),快应用的调试器显示正常。 |