LabelArea.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* 标注区 */
  2. <template>
  3. <gy-card
  4. title="标注区"
  5. area-style="label"
  6. circle-style="yellow"
  7. content-style="25"
  8. >
  9. <div
  10. v-for="mk in values"
  11. :key="mk"
  12. @contextmenu="contextmenu(mk)"
  13. style="width: 120px; margin-left: 10px; margin-top: 10px"
  14. >
  15. <img
  16. src="../../assets/img/LabelArea/flag.png"
  17. style="float: left; margin-top: 5px; margin-left: 15px"
  18. />
  19. <div style="text-align: center">{{ mk.title }}</div>
  20. <input
  21. v-model="mk.value"
  22. style="
  23. border: none;
  24. background-color: #292929;
  25. height: 30px;
  26. border-radius: 6px;
  27. text-align: center;
  28. outline: none;
  29. width: 120px;
  30. color: rgb(220, 220, 220);
  31. "
  32. />
  33. </div>
  34. </gy-card>
  35. </template>
  36. <script>
  37. import BackgroundData from "../../assets/script/BackgroundData";
  38. export default {
  39. name: "LabelArea",
  40. data() {
  41. return {
  42. values: new Array(),
  43. };
  44. },
  45. created() {
  46. this.refreshTimer = setInterval(this.refreshData, 1000);
  47. },
  48. methods: {
  49. refreshData() {
  50. this.values = new Array();
  51. this.values = BackgroundData.getInstance().Marks;
  52. },
  53. contextmenu(mk) {
  54. const { remote } = require("electron");
  55. var that = this;
  56. const menuTemplate = [
  57. {
  58. label: "删除",
  59. click() {
  60. that.remove(mk);
  61. },
  62. },
  63. ];
  64. const menu = remote.Menu.buildFromTemplate(menuTemplate);
  65. menu.popup(remote.getCurrentWindow());
  66. },
  67. remove(mk) {
  68. var indx = -1;
  69. for (var ind in this.values) {
  70. if (this.values[ind].id == mk.id) {
  71. indx = ind;
  72. break;
  73. }
  74. }
  75. if (indx < 0) return;
  76. this.values.splice(indx, 1);
  77. BackgroundData.getInstance().removeMarked(mk);
  78. },
  79. },
  80. };
  81. </script>
  82. <style scoped>
  83. </style>