DeviceModal.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <BasicModal
  3. v-bind="$attrs"
  4. @register="registerModal"
  5. :title="title"
  6. width="1000px"
  7. :showCancelBtn="false"
  8. :showOkBtn="false"
  9. :footer="null"
  10. :destroyOnClose="true"
  11. :mask-closable="false"
  12. @cancel="closeModalFn"
  13. >
  14. <a-tabs v-if="props.showTab" v-model:activeKey="activeKey">
  15. <a-tab-pane key="1" tab="基本信息" force-render>
  16. <FormModal :record="deviceData" @saveOrUpdate="(values) => emit('saveOrUpdate', values)" />
  17. </a-tab-pane>
  18. <!-- <a-tab-pane key="10" v-if="deviceType == 'fanlocal' || deviceType == 'fanmain'" tab="风机曲线" force-render>
  19. <FanLineModal :record="deviceData" />
  20. </a-tab-pane> -->
  21. <a-tab-pane key="11" tab="报表录入">
  22. <DeviceReportInfo v-if="activeKey == '11'" />
  23. </a-tab-pane>
  24. <a-tab-pane key="2" tab="点表关联">
  25. <PointTable
  26. :columns="pointColumns"
  27. :pointType="deviceData.strtype"
  28. :deviceId="deviceData.id"
  29. :valuetype="9"
  30. @save="savePointData"
  31. @delete="deletePointById"
  32. />
  33. </a-tab-pane>
  34. <a-tab-pane key="8" tab="虚拟点表配置">
  35. <PointTable
  36. :columns="simulationColumns"
  37. :pointType="deviceData.strtype"
  38. :deviceId="deviceData.id"
  39. :valuetype="4"
  40. @save="savePointData"
  41. @delete="deletePointById"
  42. />
  43. </a-tab-pane>
  44. <a-tab-pane key="3" tab="设备关联" v-if="deviceType == 'managesys'">
  45. <WorkFacePointTable :columns="linkColumns" :deviceId="deviceData.id" @save="savePointData" @delete="deletePointById" />
  46. </a-tab-pane>
  47. <a-tab-pane v-if="deviceType == 'managesys'" key="4" tab="预警条目管理">
  48. <ManagerWarningDeviceTable v-if="activeKey == '4'" :deviceId="deviceData.id" />
  49. </a-tab-pane>
  50. <a-tab-pane key="5" :tab="deviceType !== 'managesys' ? '点位(报警)配置' : '配置预警设备'">
  51. <template v-if="activeKey == '5'">
  52. <WarningTable v-if="deviceType !== 'managesys'" :deviceId="deviceData.id" :pointType="deviceData.strtype" />
  53. <BackWindDeviceTable v-else :deviceId="deviceData.id" />
  54. </template>
  55. </a-tab-pane>
  56. <a-tab-pane v-if="deviceType == 'managesys'" key="6" tab="配置控制设备">
  57. <template v-if="activeKey == '6'">
  58. <WarningTable v-if="deviceType !== 'managesys'" :deviceId="deviceData.id" :pointType="deviceData.strtype" />
  59. <ManagerWarningTable v-else :deviceId="deviceData.id" />
  60. </template>
  61. </a-tab-pane>
  62. <a-tab-pane key="7" tab="摄像头配置">
  63. <EditRowTable
  64. :columns="cameraColumns"
  65. :list="cameraList"
  66. :params="{ deviceid: deviceData.id }"
  67. @saveOrUpdate="saveCameraData"
  68. @deleteById="deleteCameraById"
  69. :isAdd="true"
  70. />
  71. </a-tab-pane>
  72. <a-tab-pane key="9" :tab="'预案管理'">
  73. <AccidentPlanTable :deviceId="deviceData.id" />
  74. </a-tab-pane>
  75. <a-tab-pane v-if="deviceType == 'led'" key="10" :tab="'节目管理'">
  76. <LEDPlaylistTable :deviceId="deviceData.id" />
  77. </a-tab-pane>
  78. <!-- <a-tab-pane key="9" tab="预警指标修改">
  79. <template v-if="activeKey == '9'">
  80. <editWarnTable></editWarnTable>
  81. </template>
  82. </a-tab-pane> -->
  83. </a-tabs>
  84. <FormModal v-else :record="record" @saveOrUpdate="(values) => emit('saveOrUpdate', values)" />
  85. </BasicModal>
  86. </template>
  87. <script lang="ts" setup>
  88. import { computed, unref, inject, reactive, ref, watch } from 'vue';
  89. import { BasicModal, useModalInner } from '/@/components/Modal';
  90. import EditRowTable from '../../comment/EditRowTable.vue';
  91. import PointTable from './pointTabel/PointTable.vue';
  92. import WarningTable from './warningTabel/index.vue';
  93. import ManagerWarningTable from './warningTabel/index1.vue';
  94. import ManagerWarningDeviceTable from './warningTabel/index2.vue';
  95. import BackWindDeviceTable from './warningTabel/index3.vue';
  96. import AccidentPlanTable from './warningTabel/index4.vue';
  97. import LEDPlaylistTable from './warningTabel/index5.vue';
  98. import WorkFacePointTable from './pointTabel/WorkFacePointTable.vue';
  99. import DeviceReportInfo from './DeviceReportInfo.vue';
  100. // import editWarnTable from './editWarnTable/index.vue'
  101. import FanLineModal from './FanLineModal .vue';
  102. import FormModal from './FormModal.vue';
  103. import { cloneDeep } from 'lodash-es';
  104. import { columns as pointColumns, workFaceColumns, simulationColumns } from './pointTabel/point.data';
  105. import { saveOrUpdate as pointSaveOrUpdate, deleteById as pointDeleteById } from './pointTabel/point.api';
  106. import { columns as cameraColumns } from './cameraTabel/camera.data';
  107. import { list as cameraList, saveOrUpdate as cameraSaveOrUpdate, deleteById as cameraDeleteById } from './cameraTabel/camera.api';
  108. const props = defineProps({
  109. showTab: { type: Boolean, required: true },
  110. // deviceType: { type: String },
  111. });
  112. // 声明Emits
  113. const emit = defineEmits(['saveOrUpdate', 'register', 'closeModal']);
  114. const isUpdate = inject('isUpdate');
  115. const deviceData = inject('formData') as any;
  116. const deviceType = inject('deviceType') as any;
  117. const record = reactive({});
  118. const activeKey = ref('1');
  119. const linkColumns = ref<any[]>([]);
  120. //表单赋值
  121. const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
  122. //重置表单
  123. setModalProps({ confirmLoading: false });
  124. Object.assign(deviceData, data.record);
  125. // 判断是否是关键阻力路线
  126. });
  127. //设置标题
  128. const title = computed(() => {
  129. if (!unref(isUpdate)) {
  130. if (deviceData.strname || deviceData.systemname) {
  131. return `新增(${deviceData.strname || deviceData.systemname})`;
  132. }
  133. return `新增`;
  134. } else {
  135. if (deviceData['strtype'] == 'sys_majorpath') {
  136. linkColumns.value = [
  137. ...workFaceColumns,
  138. ...[
  139. {
  140. title: '是否在关键通风路线上',
  141. width: 100,
  142. dataIndex: 'pathflag',
  143. edit: true,
  144. editComponent: 'Switch',
  145. editValueMap: (value) => {
  146. return value ? '是' : '否';
  147. },
  148. },
  149. {
  150. title: '传感器类型',
  151. width: 100,
  152. dataIndex: 'sensorType',
  153. edit: true,
  154. editComponent: 'Select',
  155. editComponentProps: {
  156. options: [
  157. {
  158. label: '多参',
  159. value: '1',
  160. },
  161. {
  162. label: '测风',
  163. value: '2',
  164. },
  165. ],
  166. },
  167. },
  168. {
  169. title: '风向',
  170. width: 100,
  171. dataIndex: 'winddir',
  172. edit: true,
  173. editComponent: 'Select',
  174. editComponentProps: {
  175. options: [
  176. {
  177. label: '进风',
  178. value: '1',
  179. },
  180. {
  181. label: '用风',
  182. value: '2',
  183. },
  184. {
  185. label: '回风',
  186. value: '3',
  187. },
  188. ],
  189. },
  190. },
  191. {
  192. title: '是否总风量',
  193. width: 100,
  194. dataIndex: 'windflag',
  195. edit: true,
  196. editComponent: 'Switch',
  197. editValueMap: (value) => {
  198. return value ? '是' : '否';
  199. },
  200. },
  201. {
  202. title: '路线名称',
  203. width: 100,
  204. dataIndex: 'des',
  205. edit: true,
  206. editComponent: 'Input',
  207. },
  208. {
  209. title: ' 阻力值',
  210. width: 100,
  211. dataIndex: 'testDrag',
  212. edit: true,
  213. editComponent: 'InputNumber',
  214. },
  215. ],
  216. ];
  217. } else {
  218. linkColumns.value = [...workFaceColumns];
  219. }
  220. if (deviceData.strname || deviceData.systemname) {
  221. return `编辑(${deviceData.strname || deviceData.systemname})`;
  222. }
  223. return `编辑`;
  224. }
  225. });
  226. const closeModalFn = () => {
  227. activeKey.value = '1';
  228. closeModal();
  229. emit('closeModal');
  230. };
  231. const savePointData = (data) => {
  232. const record = cloneDeep(data.editValueRefs);
  233. pointSaveOrUpdate(Object.assign(record, { id: data.id, deviceId: deviceData.id }), data.id);
  234. };
  235. const saveCameraData = (data: any, reload: Function) => {
  236. cameraSaveOrUpdate(Object.assign({ ...data }, { id: data.id, deviceid: deviceData.id }), data.id);
  237. };
  238. const deletePointById = (id, reload) => {
  239. pointDeleteById({ id: id }, reload);
  240. };
  241. const deleteCameraById = (id, reload) => {
  242. cameraDeleteById({ id: id }, reload);
  243. };
  244. </script>
  245. <style scoped lang="less">
  246. ::v-deep .suffix {
  247. height: 32px;
  248. line-height: 32px;
  249. margin-left: 5px;
  250. color: #fff;
  251. }
  252. </style>