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

feat:新增文件

parent 15b3908a
<template>
<view>
</view>
</template>
<script>
export default {
name:"NormalGauge",
data() {
return {
};
}
}
</script>
<style>
</style>
<template>
<view>
</view>
</template>
<script>
export default {
name:"NormalPie",
data() {
return {
};
}
}
</script>
<style>
</style>
...@@ -13,6 +13,10 @@ ...@@ -13,6 +13,10 @@
<NormalLine v-if="element.type == 'NormalLine'" :elementInfo="element"></NormalLine> <NormalLine v-if="element.type == 'NormalLine'" :elementInfo="element"></NormalLine>
<!-- 横向柱状图 --> <!-- 横向柱状图 -->
<HorizontalBar v-if="element.type == 'HorizontalBar'" :elementInfo="element"></HorizontalBar> <HorizontalBar v-if="element.type == 'HorizontalBar'" :elementInfo="element"></HorizontalBar>
<!-- 仪表盘 -->
<NormalGauge v-if="element.type == 'NormalGauge'" :elementInfo="element"></NormalGauge>
<!-- 饼图 -->
<NormalPie v-if="element.type == 'NormalPie'" :elementInfo="element"></NormalPie>
</view> </view>
</view> </view>
</template> </template>
......
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