master
parent
f03420d43d
commit
4d1cb91122
|
@ -7,8 +7,21 @@ export {}
|
||||||
/* prettier-ignore */
|
/* prettier-ignore */
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
|
ElButton: typeof import('element-plus/es')['ElButton']
|
||||||
|
ElCol: typeof import('element-plus/es')['ElCol']
|
||||||
|
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
|
||||||
|
ElForm: typeof import('element-plus/es')['ElForm']
|
||||||
|
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
||||||
|
ElInput: typeof import('element-plus/es')['ElInput']
|
||||||
|
ElOption: typeof import('element-plus/es')['ElOption']
|
||||||
|
ElPagination: typeof import('element-plus/es')['ElPagination']
|
||||||
ElPopover: typeof import('element-plus/es')['ElPopover']
|
ElPopover: typeof import('element-plus/es')['ElPopover']
|
||||||
|
ElRadio: typeof import('element-plus/es')['ElRadio']
|
||||||
|
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
|
||||||
|
ElSelect: typeof import('element-plus/es')['ElSelect']
|
||||||
|
ElTable: typeof import('element-plus/es')['ElTable']
|
||||||
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
||||||
|
ElTimeSelect: typeof import('element-plus/es')['ElTimeSelect']
|
||||||
RouterLink: typeof import('vue-router')['RouterLink']
|
RouterLink: typeof import('vue-router')['RouterLink']
|
||||||
RouterView: typeof import('vue-router')['RouterView']
|
RouterView: typeof import('vue-router')['RouterView']
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,7 +78,7 @@ const drawOneLine = (arr: any) => {
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
top: "25%",
|
top: "25%",
|
||||||
left: "8%",
|
left: "18%",
|
||||||
right: "8%",
|
right: "8%",
|
||||||
bottom: "13%",
|
bottom: "13%",
|
||||||
},
|
},
|
||||||
|
|
|
@ -3261,18 +3261,22 @@ const styleVar = computed(() => {
|
||||||
.os2info1 {
|
.os2info1 {
|
||||||
height: changeHeight(515);
|
height: changeHeight(515);
|
||||||
width: 80%;
|
width: 80%;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.os2info2 {
|
.os2info2 {
|
||||||
height: changeHeight(500);
|
height: changeHeight(500);
|
||||||
|
|
||||||
width: 80%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.os2info3 {
|
.os2info3 {
|
||||||
height: changeHeight(500);
|
height: changeHeight(500);
|
||||||
|
|
||||||
width: 80%;
|
width: 80%;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,7 +79,7 @@ const drawOneLine = (arr: any) => {
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
top: "25%",
|
top: "25%",
|
||||||
left: "8%",
|
left: "18%",
|
||||||
right: "8%",
|
right: "8%",
|
||||||
bottom: "13%",
|
bottom: "13%",
|
||||||
},
|
},
|
||||||
|
|
|
@ -237,6 +237,5 @@ const drawOneLine = (arr: any) => {
|
||||||
.OneLine {
|
.OneLine {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 1px solid red;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue