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