data_origin.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <template>
  2. <div class="saga-fill">
  3. <div class="mess-view">
  4. <div class="saga-title">{{renderData.Name}}</div>
  5. <div class="point-type">通讯协议:{{renderData.ProtocolType}}</div>
  6. <div class="point-des">
  7. <p class="p">{{renderData.Description}}</p>
  8. </div>
  9. </div>
  10. <div class="doughnut-view">
  11. <doughnut v-if="renderData.Sum" type="type" width="200" height="200" :sum="renderData.Sum" :name="renderData.Name" :renderData="echartsData" :id="id"></doughnut>
  12. <div v-else class="center">
  13. <i class="iconwushuju iconfont"></i>
  14. 暂无数据
  15. </div>
  16. </div>
  17. <slot></slot>
  18. </div>
  19. </template>
  20. <script>
  21. import doughnut from "@/components/echarts/doughnut"
  22. export default {
  23. name: "dataOrgin",
  24. components: {
  25. doughnut
  26. },
  27. props: {
  28. id: {
  29. type: String,
  30. default: function createRandomId() {
  31. return (Math.random() * 10000000).toString(16).substr(0, 4) + '-' + (new Date()).getTime() + '-' + Math.random().toString().substr(2, 5);
  32. }
  33. },
  34. renderData: {
  35. type: Object,
  36. default: function() {
  37. return {}
  38. }
  39. }
  40. },
  41. data() {
  42. return {
  43. echartsData: []
  44. }
  45. },
  46. created() {
  47. console.log(this.renderData)
  48. this.changeData()
  49. },
  50. mounted() {},
  51. methods: {
  52. changeData() {
  53. this.echartsData = [{
  54. name: "未使用:" + this.renderData.Notused,
  55. value: this.renderData.Notused
  56. },
  57. {
  58. name: "未关联:" + this.renderData.Notrelated,
  59. value: this.renderData.Notrelated
  60. },
  61. {
  62. name: "已关联:" + this.renderData.Related ,
  63. value: this.renderData.Related
  64. }
  65. ]
  66. }
  67. },
  68. watch: {
  69. renderData: {
  70. deep: true,
  71. handler: function() {
  72. this.changeData()
  73. }
  74. }
  75. }
  76. }
  77. </script>
  78. <style lang="scss" scoped>
  79. .mess-view {
  80. height: 90px;
  81. box-sizing: border-box;
  82. border-bottom: 1px solid #ddd;
  83. overflow: hidden;
  84. padding: 10px 20px 10px 15px;
  85. .saga-title {
  86. font-size: 14px;
  87. color: #333;
  88. font-weight: 600;
  89. line-height: 14px;
  90. }
  91. .point-type{
  92. font-size: 12px;
  93. height: 17px;
  94. line-height: 17px;
  95. margin-top: 5px;
  96. margin-bottom: 10px;
  97. color: #999;
  98. }
  99. .point-des{
  100. font-size: 12px;
  101. height: 17px;
  102. line-height: 17px;
  103. p{
  104. overflow: hidden;
  105. text-overflow:ellipsis;
  106. white-space: nowrap;
  107. color: #999;
  108. }
  109. }
  110. }
  111. .saga-fill {
  112. .doughnut-view {
  113. height: 165px;
  114. width: 100%;
  115. padding: 0 5px;
  116. box-sizing: border-box;
  117. }
  118. }
  119. </style>