From 4f59ed78dba62ec92a892dc02dbbb2eee905b4fa Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Fri, 5 Nov 2021 10:03:37 +0800 Subject: [PATCH] cxw-010203 --- src/components/index.js | 6 +- src/components/v-percent/index.vue | 193 ++++++++++++++++++ .../weiboTonalDistribution/index.vue | 55 ++++- 3 files changed, 247 insertions(+), 7 deletions(-) create mode 100644 src/components/v-percent/index.vue diff --git a/src/components/index.js b/src/components/index.js index 08c9540..ae23eca 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-12 10:28:00 - * @LastEditTime: 2021-10-21 13:21:05 + * @LastEditTime: 2021-11-04 18:31:15 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/components/index.js @@ -16,6 +16,7 @@ import vLabelCtx from "@/components/v-label-ctx" import vPagination from "@/components/v-pagination" import vRanking from "@/components/v-ranking"; import vEcharsMap from "@/components/v-echars-map" +import vPercent from "@/components/v-percent" export default { install(Vue) { Vue.mixin({ @@ -29,7 +30,8 @@ export default { vLabelCtx, vPagination, vRanking, - vEcharsMap + vEcharsMap, + vPercent } }) } diff --git a/src/components/v-percent/index.vue b/src/components/v-percent/index.vue new file mode 100644 index 0000000..50dce65 --- /dev/null +++ b/src/components/v-percent/index.vue @@ -0,0 +1,193 @@ + + + + + + + \ No newline at end of file diff --git a/src/views/WeiboDetails/weiboTonalDistribution/index.vue b/src/views/WeiboDetails/weiboTonalDistribution/index.vue index b6d128d..4b196c5 100644 --- a/src/views/WeiboDetails/weiboTonalDistribution/index.vue +++ b/src/views/WeiboDetails/weiboTonalDistribution/index.vue @@ -1,7 +1,7 @@