Commit 6bd466c2 authored by 何钱贝's avatar 何钱贝

feat:rpx

parent d4a776a0
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
canvas-id="bar-mix-map-chart" canvas-id="bar-mix-map-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -182,6 +183,10 @@ ...@@ -182,6 +183,10 @@
categories, categories,
series series
} }
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
'text-align': elementInfo.option.title.left, 'text-align': elementInfo.option.title.left,
'animation-duration':`${elementInfo.marquee.speed ? elementInfo.marquee.speed : defaultSpeed}s` 'animation-duration':`${elementInfo.marquee.speed ? elementInfo.marquee.speed : defaultSpeed}s`
}" }"
:font-size="getFontSize()"
> >
{{ text }} {{ text }}
</p> </p>
...@@ -29,6 +30,10 @@ export default { ...@@ -29,6 +30,10 @@ export default {
methods: { methods: {
initChart() { initChart() {
this.text = this.elementData.dataList.text || this.elementInfo.option.title.text this.text = this.elementData.dataList.text || this.elementInfo.option.title.text
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
canvas-id="china-map-chart" canvas-id="china-map-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -161,6 +162,10 @@ ...@@ -161,6 +162,10 @@
} }
} }
return res return res
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
ref="dashboardProgressCanvas" ref="dashboardProgressCanvas"
canvas-id="dashboard-progress-chart" canvas-id="dashboard-progress-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -144,6 +145,10 @@ ...@@ -144,6 +145,10 @@
return chart return chart
}) })
}) })
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
canvas-id="horizontal-bar-chart" canvas-id="horizontal-bar-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -80,6 +81,10 @@ export default { ...@@ -80,6 +81,10 @@ export default {
return { ...item, ...config } return { ...item, ...config }
}) })
return newData return newData
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
ref="lineMixBarCanvas" ref="lineMixBarCanvas"
canvas-id="line-mix-bar-chart" canvas-id="line-mix-bar-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -107,6 +108,10 @@ ...@@ -107,6 +108,10 @@
} }
}) })
return newData return newData
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
canvas-id="normal-bar-chart" canvas-id="normal-bar-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -80,6 +81,10 @@ export default { ...@@ -80,6 +81,10 @@ export default {
return { ...item, ...config } return { ...item, ...config }
}) })
return newData return newData
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
canvas-id="normal-gauge-chart" canvas-id="normal-gauge-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -63,6 +64,10 @@ export default { ...@@ -63,6 +64,10 @@ export default {
return chart return chart
}) })
}) })
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -48,6 +48,9 @@ ...@@ -48,6 +48,9 @@
}, },
onLoad() { onLoad() {
},
methods: {
} }
} }
</script> </script>
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
canvas-id="normal-line-chart" canvas-id="normal-line-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -80,6 +81,10 @@ export default { ...@@ -80,6 +81,10 @@ export default {
return { ...item, ...config } return { ...item, ...config }
}) })
return newData return newData
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
canvas-id="normal-pie-chart" canvas-id="normal-pie-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -84,6 +85,10 @@ export default { ...@@ -84,6 +85,10 @@ export default {
data data
}] }]
return series return series
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -37,7 +37,13 @@ export default { ...@@ -37,7 +37,13 @@ export default {
}; };
}, },
methods: { methods: {
initChart() {} initChart() {
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
}
} }
} }
</script> </script>
......
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
ref="normalRadarCanvas" ref="normalRadarCanvas"
canvas-id="normalra-dar-chart" canvas-id="normalra-dar-chart"
:ec="ec" :ec="ec"
:style="[elStyleObject]" :style="[elStyleObject]"
:font-size="getFontSize()"
></uni-ec-canvas> ></uni-ec-canvas>
</view> </view>
</template> </template>
...@@ -83,6 +84,10 @@ ...@@ -83,6 +84,10 @@
} }
}) })
return newData return newData
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -57,6 +57,10 @@ ...@@ -57,6 +57,10 @@
const paramName = this.elementInfo.table.primaryKey const paramName = this.elementInfo.table.primaryKey
const value = e[paramName] const value = e[paramName]
uni.$emit('handleLinkParams', { index, paramName, value: value }) uni.$emit('handleLinkParams', { index, paramName, value: value })
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -67,6 +67,10 @@ ...@@ -67,6 +67,10 @@
}); });
uni.$emit('handleLinkComp', { showData, hideData }) uni.$emit('handleLinkComp', { showData, hideData })
} }
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
}, },
watch: { watch: {
......
...@@ -84,6 +84,10 @@ ...@@ -84,6 +84,10 @@
numberItemsClass() { numberItemsClass() {
return 'numberItems-' + this.elementInfo.id return 'numberItems-' + this.elementInfo.id
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
}, },
} }
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
'font-weight': elementInfo.option.title.textStyle.fontWeight, 'font-weight': elementInfo.option.title.textStyle.fontWeight,
'text-align': elementInfo.option.title.left, 'text-align': elementInfo.option.title.left,
}" }"
:font-size="getFontSize()"
> >
{{ realTime }} {{ realTime }}
</div> </div>
...@@ -36,6 +37,10 @@ export default { ...@@ -36,6 +37,10 @@ export default {
this.timer = setInterval(() => { this.timer = setInterval(() => {
this.realTime = this.$u.common.dateFormat() this.realTime = this.$u.common.dateFormat()
}, 1000) }, 1000)
},
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
} }
} }
} }
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
:src="imageUrl" :src="imageUrl"
width="100%" width="100%"
:height="imageHeight" :height="imageHeight"
:font-size="getFontSize()"
></u-image> ></u-image>
</view> </view>
</template> </template>
...@@ -36,6 +37,9 @@ ...@@ -36,6 +37,9 @@
}) })
}, },
getFontSize() {
return this.$u.common.pxToRpx(this.elementInfo.option.countTo.fontSize)
}
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment