index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <div>
  3. <EditRowTableVue
  4. v-if="refreshParent"
  5. ref="ParentRef"
  6. :columns="warningColumns"
  7. :list="list"
  8. :params="{ deviceid: deviceId }"
  9. @save-or-update="saveOrUpdateParent"
  10. @delete-by-id="parentDeleteById"
  11. @row-change="changeParentRow"
  12. :isAdd="true"
  13. :isRadio="true"
  14. :scroll="{ y: 200 }"
  15. >
  16. <template #filterCell="{ column, record }">
  17. <template v-if="column.dataIndex === 'monitorcode'">
  18. <div v-if="record.editable" style="position: relative">
  19. <Select
  20. :options="options"
  21. v-model:value="record['monitorcode']"
  22. :fieldNames="{ label: 'valuename', value: 'valuecode' }"
  23. size="small"
  24. style="min-width: 100px"
  25. />
  26. </div>
  27. <div v-else>{{ getLabel(record['monitorcode']) }}</div>
  28. </template>
  29. </template>
  30. </EditRowTableVue>
  31. <div style="color: #efefef; margin-top: 8px">注: 请先选中监测参数才能添加报警等级</div>
  32. <EditRowTableVue
  33. v-if="refresh && warningProId !== ''"
  34. ref="RefChildComponent"
  35. :columns="levelColumns"
  36. :list="limitList"
  37. :params="{ limitid: warningProId }"
  38. @save-or-update="saveOrUpdateChild"
  39. @delete-by-id="childDeleteById"
  40. :isAdd="true"
  41. style="margin-top: 10px"
  42. :scroll="{ y: 200 }"
  43. />
  44. <a-table v-else :dataSource="[]" :columns="levelColumns" style="margin-top: 10px" />
  45. </div>
  46. </template>
  47. <script lang="ts" setup>
  48. import { Select } from 'ant-design-vue';
  49. import EditRowTableVue from '../../../comment/EditRowTable.vue';
  50. import { warningColumns, levelColumns } from './warning.data';
  51. import { list, limitList, edit, save, limitSave, limitEdit, deleteById, limitDeleteById } from './warning.api';
  52. import { list as pointList } from '../pointTabel/point.api';
  53. import { defineProps, ref, nextTick, inject, onMounted, onBeforeMount } from 'vue';
  54. const props = defineProps({
  55. deviceId: { type: String },
  56. pointType: {
  57. type: String,
  58. requried: true,
  59. },
  60. });
  61. const ParentRef = ref();
  62. const options = ref([]);
  63. const RefChildComponent = ref();
  64. const warningProId = ref('');
  65. const currentParent = ref({});
  66. const refresh = ref(true);
  67. const refreshParent = ref(true);
  68. async function saveOrUpdateParent(record) {
  69. try {
  70. if (record.id) {
  71. currentParent.value = record;
  72. await edit({ ...record });
  73. } else {
  74. await save({ ...record, deviceid: props.deviceId, devicetype: props.pointType });
  75. }
  76. // refreshParent.value = false;
  77. if (ParentRef.value) {
  78. await ParentRef.value.reload();
  79. nextTick(() => {
  80. const parentList = ParentRef.value.getDataSource();
  81. if (record.id) {
  82. ParentRef.value.setSelectedRowKeys([record.id]);
  83. } else {
  84. ParentRef.value.setSelectedRowKeys([parentList[0]['id']]);
  85. }
  86. });
  87. }
  88. } catch (error) {}
  89. }
  90. async function saveOrUpdateChild(record) {
  91. if (record.id) {
  92. await limitEdit({ ...record });
  93. } else {
  94. await limitSave({
  95. ...record.editValueRefs,
  96. limitid: warningProId.value,
  97. code: currentParent.value['monitorcode'],
  98. devicetype: props.pointType,
  99. deviceid: props.deviceId,
  100. });
  101. }
  102. // refresh.value = false;
  103. if (RefChildComponent.value) {
  104. await RefChildComponent.value.reload();
  105. nextTick(() => {
  106. const childList = RefChildComponent.value.getDataSource();
  107. RefChildComponent.value.setSelectedRowKeys([childList[0]['id']]);
  108. });
  109. }
  110. }
  111. function parentDeleteById(id, reload) {
  112. deleteById({ id: id }, reload);
  113. }
  114. function childDeleteById(id, reload) {
  115. limitDeleteById({ id: id }, reload);
  116. }
  117. function changeParentRow(id, rowData) {
  118. warningProId.value = id;
  119. currentParent.value = rowData;
  120. refresh.value = false;
  121. nextTick(() => {
  122. refresh.value = true;
  123. });
  124. }
  125. function getLabel(code) {
  126. const obj = options.value.find((item) => item['valuecode'] === code);
  127. if (obj) {
  128. return obj['valuename'];
  129. }
  130. return code;
  131. }
  132. onBeforeMount(async () => {
  133. const res = await pointList({ devicetype: props.pointType, valuetype_begin: 2 });
  134. options.value = res && res['records'] ? res['records'] : [];
  135. });
  136. onMounted(async () => {
  137. if (ParentRef.value) {
  138. await ParentRef.value.reload();
  139. nextTick(() => {
  140. const parentList = ParentRef.value.getDataSource();
  141. ParentRef.value.setSelectedRowKeys([parentList[0]['id']]);
  142. });
  143. }
  144. });
  145. </script>
  146. <style scoped></style>