index.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <template>
  2. <div>
  3. <el-row>
  4. <el-col :span="6"> </el-col>
  5. <el-col :span="18">
  6. <div class="operation">
  7. <div class="title">操作面板</div>
  8. <div class="condition">
  9. <div class="query">
  10. <div class="lable">使用模板:</div>
  11. <div class="search">
  12. <el-select
  13. v-model="model"
  14. clearable
  15. placeholder="请选择"
  16. popper-class="select"
  17. style="width: 120px;"
  18. >
  19. <el-option
  20. v-for="item in modelList"
  21. :key="item.value"
  22. :value="item.value"
  23. :label="item.label"
  24. />
  25. </el-select>
  26. </div>
  27. </div>
  28. <div class="query1">
  29. <div class="lable">最大风速:</div>
  30. <el-input size="middle" v-model="wind" clearable></el-input>
  31. </div>
  32. <div class="query1">
  33. <div class="lable">最小风速:</div>
  34. <el-input size="middle" v-model="wind" clearable></el-input>
  35. </div>
  36. <div class="query1">
  37. <div class="lable">最大功率:</div>
  38. <el-input size="middle" v-model="wind" clearable></el-input>
  39. </div>
  40. <div class="query1">
  41. <div class="lable">最小功率:</div>
  42. <el-input size="middle" v-model="wind" clearable></el-input>
  43. </div>
  44. </div>
  45. <div class="condition">
  46. <el-checkbox-group v-model="checkList">
  47. <el-checkbox label="非并网"></el-checkbox>
  48. <el-checkbox label="非合理值"></el-checkbox>
  49. <el-checkbox label="并网后十分钟"></el-checkbox>
  50. <el-checkbox label="停机前十分钟"></el-checkbox>
  51. <el-checkbox label="功率曲线偏差"></el-checkbox>
  52. <el-checkbox label="欠符合等级"></el-checkbox>
  53. </el-checkbox-group>
  54. <div class="level">
  55. <el-select
  56. v-model="level"
  57. clearable
  58. placeholder="请选择"
  59. popper-class="select"
  60. style="width: 80px"
  61. >
  62. <el-option
  63. v-for="item in levelList"
  64. :key="item.value"
  65. :value="item.value"
  66. :label="item.label"
  67. />
  68. </el-select>
  69. </div>
  70. </div>
  71. </div>
  72. <div>
  73. <div class="chart" id="linechart3"></div>
  74. </div>
  75. </el-col>
  76. </el-row>
  77. </div>
  78. </template>
  79. <script>
  80. import util from "@/helper/util.js";
  81. import partten from "@/helper/partten.js";
  82. import * as echarts from "echarts";
  83. export default {
  84. data() {
  85. return {
  86. wind: "",
  87. model: "进阶模板",
  88. modelList: [
  89. {
  90. label: "进阶模板",
  91. value: "0",
  92. },
  93. ],
  94. checkList: [
  95. "非并网",
  96. "非合理值",
  97. "并网后十分钟",
  98. "停机前十分钟",
  99. "功率曲线偏差",
  100. "欠符合等级",
  101. ],
  102. level: "1级",
  103. levelList: [
  104. {
  105. label: "1级",
  106. value: "1",
  107. },
  108. {
  109. label: "2级",
  110. value: "2",
  111. },
  112. ],
  113. wtId: "MG01_01",
  114. };
  115. },
  116. created() {
  117. this.$nextTick(() => {
  118. this.getChart3();
  119. });
  120. },
  121. methods: {
  122. async getChart3() {
  123. console.log(111111111);
  124. const res = await this.API.requestData({
  125. method: "POST",
  126. subUrl: "yaw/getTotalRanges",
  127. data: {
  128. wtId: this.wtId,
  129. beginDate: new Date(new Date().getTime() - 86400000).formatDate("yyyy-MM-dd"),
  130. endDate: new Date().formatDate("yyyy-MM-dd"),
  131. type: 1,
  132. },
  133. });
  134. if (res && res.data && res.data.data) {
  135. const xData = [];
  136. const lData = [];
  137. const dataMap = res.data.data;
  138. for (let key in dataMap) {
  139. let tmpKey = key.replace(/r/, "");
  140. tmpKey = tmpKey.replace(/_/, "-");
  141. if (tmpKey < 100) {
  142. xData.push(tmpKey);
  143. lData.push(dataMap[key]);
  144. }
  145. }
  146. this.line3Data = lData;
  147. let option = {
  148. color: ["#05bb4c", "#4b55ae", "#fa8c16", "#f8de5b"],
  149. tooltip: {
  150. trigger: "axis",
  151. backgroundColor: "rgba(0,0,0,0.4)",
  152. borderColor: partten.getColor("gray"),
  153. textStyle: {
  154. color: "#fff",
  155. fontSize: util.vh(16),
  156. },
  157. },
  158. legend: {
  159. show: false,
  160. data: ["偏航次数"],
  161. right: 56,
  162. icon: "circle",
  163. itemWidth: 6,
  164. inactiveColor: "#606769",
  165. textStyle: {
  166. color: partten.getColor("grayl"),
  167. fontSize: 12,
  168. },
  169. },
  170. grid: {
  171. top: util.vh(40),
  172. left: util.vh(60),
  173. right: util.vh(130),
  174. bottom: util.vh(24),
  175. },
  176. xAxis: [
  177. {
  178. name: "对风偏差(度)",
  179. type: "category",
  180. boundaryGap: false,
  181. axisLabel: {
  182. formatter: "{value}",
  183. fontSize: util.vh(14),
  184. textStyle: {
  185. color: partten.getColor("gray"),
  186. },
  187. },
  188. data: xData,
  189. },
  190. ],
  191. yAxis: [
  192. {
  193. type: "value",
  194. name: "数量",
  195. axisLabel: {
  196. formatter: "{value}",
  197. fontSize: util.vh(14),
  198. },
  199. splitLine: {
  200. lineStyle: {
  201. color: partten.getColor("gray") + 55,
  202. type: "dashed",
  203. },
  204. },
  205. },
  206. ],
  207. series: [
  208. {
  209. name: "数量",
  210. type: "line",
  211. smooth: true,
  212. zlevel: 0,
  213. lineStyle: {
  214. normal: {
  215. color: "#05bb4c",
  216. width: 1,
  217. },
  218. },
  219. yAxisIndex: 0,
  220. data: lData,
  221. },
  222. ],
  223. };
  224. const chart = echarts.init(document.getElementById("linechart3"));
  225. chart.clear();
  226. chart.setOption(option);
  227. this.resize = function () {
  228. chart.resize();
  229. };
  230. window.addEventListener("resize", this.resize);
  231. }
  232. },
  233. },
  234. };
  235. </script>
  236. <style lang="less" scoped>
  237. .operation {
  238. width: 95%;
  239. border: 1px solid #ffffff;
  240. margin-top: 20px;
  241. .title {
  242. display: flex;
  243. align-items: center;
  244. justify-content: center;
  245. font-size: 20px;
  246. margin-left: 10px;
  247. width: 100px;
  248. padding: 10px;
  249. margin-top: -30px;
  250. background-image: url("../../../assets/background.png");
  251. }
  252. .condition {
  253. display: flex;
  254. flex-direction: row;
  255. align-items: center;
  256. margin-left: 20px;
  257. margin-bottom: 10px;
  258. .query {
  259. display: flex;
  260. flex-direction: row;
  261. align-items: center;
  262. }
  263. .query1 {
  264. width: 130px;
  265. display: flex;
  266. flex-direction: row;
  267. align-items: center;
  268. margin-left: 20px;
  269. .lable {
  270. width: 150px;
  271. }
  272. }
  273. .level {
  274. margin-left: 10px;
  275. }
  276. }
  277. }
  278. .chart {
  279. width: 100%;
  280. height: 220px;
  281. display: block;
  282. margin: auto;
  283. }
  284. </style>