Mytask.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view class="OutermostLayer">
  3. <view style="width: 100%; height:350rpx">
  4. <l-echart ref="mychart"></l-echart>
  5. </view>
  6. <h4>任务列表</h4>
  7. <u-subsection :list="list" :current="curNow" @change="sectionChange"></u-subsection>
  8. <u-cell-group v-for="(item,index) in taskList" :key="index">
  9. <u-cell :title="item.tiname" :label="item.tilable" center :isLink="true" @click="taskdetal(item)">
  10. <u-icon slot="icon" :color="item.completecolor" size="45" :name="item.completeicon"></u-icon>
  11. </u-cell>
  12. </u-cell-group>
  13. </view>
  14. </template>
  15. <script>
  16. import * as echarts from 'echarts';
  17. export default {
  18. data() {
  19. return {
  20. teskdata: [150, 230, 224, 218, 135, 147, 260],
  21. list: ['所有任务', '已完成', '未完成'],
  22. curNow: 0,
  23. taskList: [{
  24. tiname: '水表维修',
  25. tilable: 'A栋1304卫生间水表漏水',
  26. complete: true,
  27. completecolor: '#4CC417',
  28. completeicon: 'thumb-up-fill'
  29. },
  30. {
  31. tiname: '电表监测',
  32. tilable: 'B栋13层电表监测',
  33. complete: true,
  34. completecolor: '#4CC417',
  35. completeicon: 'thumb-up-fill'
  36. },
  37. {
  38. tiname: '水表维修',
  39. tilable: 'B栋305卫生间水表停转',
  40. complete: false,
  41. completecolor: '#E41B17',
  42. completeicon: 'thumb-down'
  43. },
  44. {
  45. tiname: '灯泡监测',
  46. tilable: 'B栋13层灯泡监测',
  47. complete: true,
  48. completecolor: '#4CC417',
  49. completeicon: 'thumb-up-fill'
  50. },
  51. {
  52. tiname: '水表监测',
  53. tilable: 'B栋13层监测',
  54. complete: false,
  55. completecolor: '#E41B17',
  56. completeicon: 'thumb-down'
  57. },
  58. ],
  59. };
  60. },
  61. mounted() {
  62. this.getdata()
  63. },
  64. methods: {
  65. sectionChange(index) {
  66. this.curNow = index;
  67. },
  68. taskdetal(e){
  69. console.log('111111111111111111',e)
  70. uni.navigateTo({
  71. url: 'Taskdetails/Taskdetails'
  72. })
  73. },
  74. getdata() {
  75. let option = {
  76. color:['#4CC417','#E41B17'],
  77. tooltip: {
  78. trigger: 'item'
  79. },
  80. legend: {
  81. top: '1',
  82. left: 'center'
  83. },
  84. series: [{
  85. name: 'Access From',
  86. type: 'pie',
  87. radius: '50%',
  88. data: [
  89. {
  90. value: 35,
  91. name: '已完成'
  92. },
  93. {
  94. value: 10,
  95. name: '未完成'
  96. },
  97. ],
  98. label: {
  99. formatter: '{b}: ({d}%)'
  100. },
  101. emphasis: {
  102. itemStyle: {
  103. shadowBlur: 10,
  104. shadowOffsetX: 0,
  105. shadowColor: 'rgba(0, 0, 0, 0.5)'
  106. }
  107. }
  108. }]
  109. };
  110. this.$refs.mychart.init(echarts, chart => {
  111. chart.setOption(option);
  112. });
  113. },
  114. }
  115. }
  116. </script>
  117. <style>
  118. .OutermostLayer h4 {
  119. padding-bottom: 30rpx;
  120. }
  121. </style>