ProblemArea.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* 问题区 */
  2. <template>
  3. <gy-card
  4. title="问题区"
  5. area-style="problem"
  6. circle-style="green"
  7. content-style="89"
  8. @parentRun="run"
  9. @contextmenu="contextmenu"
  10. >
  11. <ProblemMatrixCard title="故障" :type="5" ref="malfunction"></ProblemMatrixCard>
  12. <ProblemMatrixCard title="维护" :type="6" ref="maintain"></ProblemMatrixCard>
  13. <ProblemMatrixCard title="离线" :type="7" ref="offline"></ProblemMatrixCard>
  14. <ProblemMatrixCard title="挂牌" :type="-1" ref="lock"></ProblemMatrixCard>
  15. </gy-card>
  16. </template>
  17. <script>
  18. import ProblemMatrixCard from "./windturbine/problem/ProblemMatrixCard.vue";
  19. import BackgroundData from "../../assets/script/BackgroundData";
  20. export default {
  21. name: "ProblemArea",
  22. components: {
  23. ProblemMatrixCard,
  24. },
  25. props: {},
  26. data() {
  27. return {
  28. ls: {
  29. maintain: { key: "维护", value: [] },
  30. malfunction: { key: "故障", value: [] },
  31. offline: { key: "离线", value: [] },
  32. lockd: { key: "挂牌", value: [] },
  33. },
  34. };
  35. },
  36. computed: {},
  37. created: function () {
  38. },
  39. methods: {
  40. /* 右键菜单 */
  41. contextmenu() {
  42. const { remote } = require("electron");
  43. var that = this;
  44. const menuTemplate = [
  45. {
  46. label: "标注",
  47. click() {
  48. that.menuClicked({ type: "marking" });
  49. },
  50. },
  51. {
  52. label: "挂牌",
  53. submenu: [
  54. {
  55. label: "检修",
  56. click() {
  57. that.menuClicked({ type: "lock", value: "CheckLock" });
  58. },
  59. },
  60. {
  61. label: "故障维修",
  62. click() {
  63. that.menuClicked({ type: "lock", value: "FaultLock" });
  64. },
  65. },
  66. {
  67. label: "场内受累检修",
  68. click() {
  69. that.menuClicked({ type: "lock", value: "StationCheckLock" });
  70. },
  71. },
  72. {
  73. label: "场内受累故障",
  74. click() {
  75. that.menuClicked({ type: "lock", value: "StationFaulLock" });
  76. },
  77. },
  78. {
  79. label: "场外受累电网",
  80. click() {
  81. that.menuClicked({ type: "lock", value: "StationPowerLineLock" });
  82. },
  83. },
  84. {
  85. label: "场外受累天气",
  86. click() {
  87. that.menuClicked({ type: "lock", value: "StationWeatherLock" });
  88. },
  89. },
  90. ],
  91. },
  92. {
  93. label: "取消挂牌",
  94. click() {
  95. that.menuClicked({ type: "lock",value:"UnLock" });
  96. },
  97. },
  98. ];
  99. const menu = remote.Menu.buildFromTemplate(menuTemplate);
  100. menu.popup(remote.getCurrentWindow());
  101. },
  102. menuClicked(msg) {
  103. var bd = BackgroundData.getInstance();
  104. if (!bd.LoginUser) {
  105. bd.showdialog("提示", "请登录:", "在控制之前需要先登录!");
  106. return;
  107. }
  108. if (msg.type == "lock") {
  109. // 挂牌
  110. var los = this.getSelectedItems();
  111. for(var id in los){
  112. los[id].lockType=msg.value;
  113. }
  114. bd.windturbineControl(los,true);
  115. } else if (msg.type == "marking") {
  116. // 标注
  117. var vs = this.getSelectedItems();
  118. bd.marking(vs);
  119. }
  120. this.clearSelected();
  121. },
  122. /* 获取选中的项目,isControl:是否是控制 */
  123. getSelectedItems(){
  124. var ls = new Array();
  125. this.$refs.malfunction.outputSelectedItems(ls);
  126. this.$refs.maintain.outputSelectedItems(ls);
  127. this.$refs.offline.outputSelectedItems(ls);
  128. this.$refs.lock.outputSelectedItems(ls);
  129. return ls;
  130. },
  131. /* 清除所有选择 */
  132. clearSelected(){
  133. this.$refs.malfunction.clearSelected();
  134. this.$refs.maintain.clearSelected();
  135. this.$refs.offline.clearSelected();
  136. this.$refs.lock.clearSelected();
  137. },
  138. },
  139. };
  140. </script>