workJc.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. <template>
  2. <div class="workJc">
  3. <div class="echart-workJc" :style="{ height: heightT }">
  4. <div class="workJc-l">
  5. <div class="echart-yh"></div>
  6. <div class="echart-line"></div>
  7. <div class="echart-boxs" ref="ring"></div>
  8. </div>
  9. <div class="workJc-r">
  10. <div class="fx-box" v-for="(item, index) in fxLenged" :key="index">
  11. <div class="fx-label">
  12. <div class="fx-label-l">
  13. <div class="bg-pie"></div>
  14. </div>
  15. <div class="fx-label-r">{{ item.name }}</div>
  16. </div>
  17. <div class="fx-val">{{ item.value }}</div>
  18. <div class="fx-unit" v-if="!item.value"></div>
  19. </div>
  20. </div>
  21. </div>
  22. <div class="card-workJc" :style="{ height: heightB }">
  23. <vue3-seamless-scroll hover-stop="true" :list="cardList" :hover="true" :step="0.15" :copy-num="3"
  24. class="seamless-warp">
  25. <div class="card-box" v-for="(ite, ind) in cardList" :key="ind">
  26. <div class="card-l-label">{{ ite.title }}</div>
  27. <div class="card-l-val">{{ ite.val }}</div>
  28. <div class="card-r-label">{{ ite.label }}</div>
  29. <div class="card-r-content">
  30. <span>{{ `${ite.title1} : ` }}</span>
  31. <span>{{ `${ite.val1} 摄氏度` }}</span>
  32. </div>
  33. <!-- <div class="card-r-content1">
  34. <span>{{ `${ite.title2} : ` }}</span>
  35. <span>{{ ite.val2 }}</span>
  36. </div> -->
  37. </div>
  38. </vue3-seamless-scroll>
  39. </div>
  40. </div>
  41. </template>
  42. <script setup lang="ts">
  43. import { ref, reactive, onMounted, nextTick, defineProps, watch } from 'vue';
  44. import { Vue3SeamlessScroll } from 'vue3-seamless-scroll'
  45. import * as echarts from 'echarts';
  46. let props = defineProps({
  47. heightT: {
  48. type: String,
  49. default: '0%',
  50. },
  51. heightB: {
  52. type: String,
  53. default: '0%',
  54. },
  55. cardData: {
  56. type: Array,
  57. default: () => {
  58. return []
  59. }
  60. },
  61. echartData:{
  62. type:Array,
  63. default:()=>{
  64. return []
  65. }
  66. }
  67. });
  68. //获取dom节点
  69. let ring = ref();
  70. let fxLenged =reactive<any[]>([]);//图表数据
  71. let cardList = ref<any[]>([]);
  72. function getOption() {
  73. nextTick(() => {
  74. let color = ['#1fb3f7', '#3751E6', '#FFC722', '#886EFF', '#008DEC', '#114C90', '#00BFA5'];
  75. let myChart = echarts.init(ring.value);
  76. let option = {
  77. color: color,
  78. tooltip: {
  79. trigger: 'item',
  80. backgroundColor: 'rgba(0, 0, 0, .6)',
  81. formatter: '{b}:{c}',
  82. textStyle: {
  83. color: '#fff',
  84. fontSize: 14,
  85. },
  86. },
  87. grid: {
  88. top: '15%',
  89. left: 0,
  90. right: '1%',
  91. bottom: 5,
  92. containLabel: true,
  93. },
  94. series: [
  95. {
  96. name: '',
  97. type: 'pie',
  98. center: ['50%', '50%'],
  99. radius: ['70%', '88%'],
  100. label: {
  101. normal: {
  102. show: true,
  103. position: 'center',
  104. // formatter: '{value|{c}}\n{label|{b}}',
  105. formatter: '{value|{c}}',
  106. rich: {
  107. value: {
  108. padding: 5,
  109. align: 'center',
  110. verticalAlign: 'middle',
  111. fontSize: 18,
  112. color:'#fff',
  113. },
  114. label: {
  115. align: 'center',
  116. verticalAlign: 'middle',
  117. fontSize: 14,
  118. },
  119. },
  120. },
  121. // emphasis: {
  122. // show: true,
  123. // textStyle: {
  124. // fontSize: '10',
  125. // },
  126. // },
  127. },
  128. labelLine: {
  129. show: false,
  130. length: 0,
  131. length2: 0,
  132. },
  133. data: fxLenged,
  134. },
  135. ],
  136. };
  137. myChart.setOption(option);
  138. window.onresize = function () {
  139. myChart.resize();
  140. };
  141. });
  142. }
  143. watch(() => props.cardData, (newC, oldC) => {
  144. console.log(newC, 'newC-------')
  145. cardList.value = newC
  146. }, { immediate: true, deep: true })
  147. watch(()=>props.echartData,(newV,oldV)=>{
  148. console.log(newV,'图表数据------')
  149. fxLenged.length=0
  150. if(newV.length!=0){
  151. fxLenged.length=0
  152. newV.forEach(el=>{
  153. fxLenged.push({name:el.label,value:el.value})
  154. })
  155. }
  156. },{immediate:true,deep:true})
  157. onMounted(() => {
  158. getOption();
  159. });
  160. </script>
  161. <style lang="less" scoped>
  162. // @font-face {
  163. // font-family: douyuFont;
  164. // src: url('../../../../../assets/font/douyuFont.otf');
  165. // }
  166. .workJc {
  167. width: 100%;
  168. height: 100%;
  169. .echart-workJc {
  170. // height: 45%;
  171. display: flex;
  172. align-items: center;
  173. justify-content: space-between;
  174. width: 100%;
  175. .workJc-l {
  176. @keyframes rotationLine {
  177. 0% {
  178. transform: rotate(0deg);
  179. }
  180. 100% {
  181. transform: rotate(360deg);
  182. }
  183. }
  184. position: relative;
  185. width: 140px;
  186. height: 100%;
  187. .echart-yh {
  188. position: absolute;
  189. top: 50%;
  190. left: 50%;
  191. width: 90px;
  192. height: 90px;
  193. transform: translate(-50%, -50%);
  194. background: url('../../../../../assets/images/fire/firehome/zu-e.png') no-repeat center;
  195. background-size: 100% 100%;
  196. }
  197. .echart-line {
  198. position: absolute;
  199. top: 7%;
  200. left: 10%;
  201. width: 110px;
  202. height: 110px;
  203. animation: rotationLine 10s linear infinite;
  204. background: url('../../../../../assets/images/fire/firehome/ty-e.png') no-repeat center;
  205. background-size: 100% 100%;
  206. }
  207. .echart-boxs {
  208. position: absolute;
  209. top: 50%;
  210. left: 50%;
  211. width: 90px;
  212. height: 90px;
  213. transform: translate(-50%, -50%);
  214. }
  215. }
  216. .workJc-r {
  217. display: flex;
  218. flex-wrap: wrap;
  219. align-items: flex-start;
  220. justify-content: flex-start;
  221. width: calc(100% - 140px);
  222. height: 100%;
  223. // padding-left: 10px;
  224. // box-sizing: border-box;
  225. .fx-box {
  226. display: flex;
  227. flex-direction: column;
  228. align-items: center;
  229. justify-content: center;
  230. width: 50%;
  231. height: 50%;
  232. color: #9da5aa;
  233. .fx-label {
  234. display: flex;
  235. align-items: center;
  236. height: 28px;
  237. .fx-label-l {
  238. position: relative;
  239. box-sizing: border-box;
  240. width: 12px;
  241. height: 12px;
  242. margin-right: 5px;
  243. padding: 1px;
  244. border: 1px solid #1fb3f7;
  245. .bg-pie {
  246. width: 100%;
  247. height: 100%;
  248. border-radius: 50%;
  249. background-color: #1fb3f7;
  250. }
  251. }
  252. .fx-label-r{
  253. font-size: 12px;
  254. }
  255. }
  256. .fx-val {
  257. // font-family: douyuFont;
  258. font-size: 20px;
  259. font-weight: bold;
  260. }
  261. .fx-unit{
  262. width: 20px;
  263. height: 1px;
  264. margin: 2px;
  265. background-color: #a1b6c2;
  266. }
  267. }
  268. }
  269. }
  270. .card-workJc {
  271. position: relative;
  272. // height: 55%;
  273. overflow: hidden;
  274. .seamless-warp {
  275. width: 100%;
  276. height: 100%;
  277. .card-box {
  278. position: relative;
  279. width: 100%;
  280. height: 84px;
  281. background: url('../../../../../assets/images/fire/firehome/work-jc.png') no-repeat center;
  282. background-size: 100% 100%;
  283. .card-l-label {
  284. position: absolute;
  285. top: 12%;
  286. left: 5.5%;
  287. color: #9da5aa;
  288. font-size: 12px;
  289. letter-spacing: 2px;
  290. }
  291. .card-l-val {
  292. position: absolute;
  293. top: 50%;
  294. left: 24px;
  295. color: #a3d5e5;
  296. font-size: 16px;
  297. }
  298. .card-r-label {
  299. position: absolute;
  300. top: 11%;
  301. left: 20%;
  302. border-bottom: 1px solid #d0d2d3;
  303. color: #d0d2d3;
  304. font-size: 12px;
  305. }
  306. .card-r-content {
  307. position: absolute;
  308. // top: 42%;
  309. top: 54%;
  310. left: 20%;
  311. color: #9da5aa;
  312. font-size: 12px;
  313. }
  314. .card-r-content1 {
  315. position: absolute;
  316. top: 68%;
  317. left: 20%;
  318. color: #9da5aa;
  319. }
  320. }
  321. }
  322. }
  323. }
  324. </style>