@aks-dev/easyui 1.0.145 → 1.0.146
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: shiguo
|
|
3
3
|
* @Date: 2022-05-05 14:52:53
|
|
4
4
|
* @LastEditors: shiguo
|
|
5
|
-
* @LastEditTime:
|
|
5
|
+
* @LastEditTime: 2023-01-03 17:22:12
|
|
6
6
|
* @FilePath: /@aks-dev/easyui/lib/Echarts/EchartsView.tsx
|
|
7
7
|
*/
|
|
8
8
|
import * as React from 'react'
|
|
@@ -146,7 +146,10 @@ const EchartsView: React.FC<EchartsViewProps> = (props) => {
|
|
|
146
146
|
if (props.renderLoading) return props.renderLoading()
|
|
147
147
|
return <View style={{ backgroundColor: (props.style as ViewStyle)?.backgroundColor || 'transparent' }} />
|
|
148
148
|
}} // 设置空View,修复ioswebview闪白
|
|
149
|
-
style={{
|
|
149
|
+
style={{
|
|
150
|
+
backgroundColor: (props.style as ViewStyle)?.backgroundColor || 'transparent',
|
|
151
|
+
opacity: 0.99,//解决删除的办法
|
|
152
|
+
}} // 设置背景色透明,修复android闪白
|
|
150
153
|
scrollEnabled={false}
|
|
151
154
|
// onMessage={e=>{
|
|
152
155
|
// console.log(e)
|