Showing
2 changed files
with
8 additions
and
8 deletions
@@ -49,10 +49,10 @@ | @@ -49,10 +49,10 @@ | ||
49 | <script lang="ts"> | 49 | <script lang="ts"> |
50 | import { defineComponent, ref, computed, unref, getCurrentInstance, reactive } from 'vue'; | 50 | import { defineComponent, ref, computed, unref, getCurrentInstance, reactive } from 'vue'; |
51 | import { BasicModal, useModalInner } from '/@/components/Modal'; | 51 | import { BasicModal, useModalInner } from '/@/components/Modal'; |
52 | - import DeviceProfileStep1 from '/@/views/device/profile/step/DeviceProfileStep1.vue'; | ||
53 | - import DeviceProfileStep2 from '/@/views/device/profile/step/DeviceProfileStep2.vue'; | ||
54 | - import DeviceProfileStep3 from '/@/views/device/profile/step/DeviceProfileStep3.vue'; | ||
55 | - import DeviceProfileStep4 from '/@/views/device/profile/step/DeviceProfileStep4.vue'; | 52 | + import DeviceProfileStep1 from '/@/views/device/profiles/step/DeviceProfileStep1.vue'; |
53 | + import DeviceProfileStep2 from '/@/views/device/profiles/step/DeviceProfileStep2.vue'; | ||
54 | + import DeviceProfileStep3 from '/@/views/device/profiles/step/DeviceProfileStep3.vue'; | ||
55 | + import DeviceProfileStep4 from '/@/views/device/profiles/step/DeviceProfileStep4.vue'; | ||
56 | import { Steps } from 'ant-design-vue'; | 56 | import { Steps } from 'ant-design-vue'; |
57 | import { deviceConfigAddOrEdit, deviceConfigGetDetail } from '/@/api/device/deviceConfigApi'; | 57 | import { deviceConfigAddOrEdit, deviceConfigGetDetail } from '/@/api/device/deviceConfigApi'; |
58 | import { useMessage } from '/@/hooks/web/useMessage'; | 58 | import { useMessage } from '/@/hooks/web/useMessage'; |
1 | <template> | 1 | <template> |
2 | <div> | 2 | <div> |
3 | <BasicTable | 3 | <BasicTable |
4 | - class="devide-profile" | 4 | + class="devide-profiles" |
5 | @selection-change="useSelectionChange" | 5 | @selection-change="useSelectionChange" |
6 | @register="registerTable" | 6 | @register="registerTable" |
7 | :rowSelection="{ type: 'checkbox' }" | 7 | :rowSelection="{ type: 'checkbox' }" |
@@ -57,7 +57,7 @@ | @@ -57,7 +57,7 @@ | ||
57 | import { useMessage } from '/@/hooks/web/useMessage'; | 57 | import { useMessage } from '/@/hooks/web/useMessage'; |
58 | import { deviceConfigGetQuery, deviceConfigDelete } from '/@/api/device/deviceConfigApi'; | 58 | import { deviceConfigGetQuery, deviceConfigDelete } from '/@/api/device/deviceConfigApi'; |
59 | import { useModal } from '/@/components/Modal'; | 59 | import { useModal } from '/@/components/Modal'; |
60 | - import DeviceProfileModal from '/@/views/device/profile/DeviceProfileModal.vue'; | 60 | + import DeviceProfileModal from '/@/views/device/profiles/DeviceProfileModal.vue'; |
61 | import { ImpExcel, ExcelData } from '/@/components/Excel'; | 61 | import { ImpExcel, ExcelData } from '/@/components/Excel'; |
62 | // import { jsonToSheetXlsx, ExportModalResult } from '/@/components/Excel'; | 62 | // import { jsonToSheetXlsx, ExportModalResult } from '/@/components/Excel'; |
63 | 63 | ||
@@ -246,10 +246,10 @@ | @@ -246,10 +246,10 @@ | ||
246 | </script> | 246 | </script> |
247 | 247 | ||
248 | <style lang="css"> | 248 | <style lang="css"> |
249 | - .devide-profile .rowcolor { | 249 | + .devide-profiles .rowcolor { |
250 | color: red; | 250 | color: red; |
251 | } | 251 | } |
252 | - .devide-profile .rowcolor2 { | 252 | + .devide-profiles .rowcolor2 { |
253 | background: #a2c3e6; | 253 | background: #a2c3e6; |
254 | } | 254 | } |
255 | </style> | 255 | </style> |