feat: 故障管理页面
This commit is contained in:
1
src/typings/components.d.ts
vendored
1
src/typings/components.d.ts
vendored
@@ -54,6 +54,7 @@ declare module 'vue' {
|
|||||||
ATypography: typeof import('ant-design-vue/lib')['Typography']
|
ATypography: typeof import('ant-design-vue/lib')['Typography']
|
||||||
ATypographyParagraph: typeof import('ant-design-vue/lib')['TypographyParagraph']
|
ATypographyParagraph: typeof import('ant-design-vue/lib')['TypographyParagraph']
|
||||||
ATypographyText: typeof import('ant-design-vue/lib')['TypographyText']
|
ATypographyText: typeof import('ant-design-vue/lib')['TypographyText']
|
||||||
|
ATypographyTitle: typeof import('ant-design-vue/lib')['TypographyTitle']
|
||||||
AUpload: typeof import('ant-design-vue/lib')['Upload']
|
AUpload: typeof import('ant-design-vue/lib')['Upload']
|
||||||
AUploadDragger: typeof import('ant-design-vue/lib')['UploadDragger']
|
AUploadDragger: typeof import('ant-design-vue/lib')['UploadDragger']
|
||||||
BellOutlined: typeof import('@ant-design/icons-vue')['BellOutlined']
|
BellOutlined: typeof import('@ant-design/icons-vue')['BellOutlined']
|
||||||
|
|||||||
11
src/views/fault/active-alarm/index.vue
Normal file
11
src/views/fault/active-alarm/index.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const msg = ref<string>('愿这世间美好与你环环相扣');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>{{ msg }}</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="less" scoped></style>
|
||||||
11
src/views/fault/alarm-forwarding/index.vue
Normal file
11
src/views/fault/alarm-forwarding/index.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const msg = ref<string>('愿这世间美好与你环环相扣');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>{{ msg }}</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="less" scoped></style>
|
||||||
11
src/views/fault/fault-setting/index.vue
Normal file
11
src/views/fault/fault-setting/index.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const msg = ref<string>('愿这世间美好与你环环相扣');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>{{ msg }}</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="less" scoped></style>
|
||||||
11
src/views/fault/history-alarm/index.vue
Normal file
11
src/views/fault/history-alarm/index.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const msg = ref<string>('愿这世间美好与你环环相扣');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>{{ msg }}</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="less" scoped></style>
|
||||||
Reference in New Issue
Block a user