2023-10-20

This commit is contained in:
2023-10-20 17:21:45 +08:00
parent 12ef707f64
commit bd9dabd21d
29 changed files with 1401 additions and 385 deletions

View File

@@ -922,6 +922,7 @@ export default defineComponent({
//通过url 转为blob格式的数据
getImgArrayBuffer(url: any) {
return new Promise((resolve, reject) => {
//通过请求获取文件blob格式
let xmlhttp = new XMLHttpRequest();
@@ -963,7 +964,7 @@ export default defineComponent({
});
})
.catch((res) => {
_this.message.warning("Failed to export the file");
message.warning("Failed to export the file");
this.isShowMark = false;
});
},
@@ -976,6 +977,11 @@ export default defineComponent({
height: 100%;
padding: 0 9rem;
overflow: hidden;
min-width: 1024px;
position: relative;
// left: 50%;
// margin-left: -50%;
// transform: translateX(-50%);
.page_content {
position: relative;
.page_content_body {
@@ -1012,7 +1018,7 @@ export default defineComponent({
position: relative;
background: #f7f8fa;
border: 1px solid #f2f2f9;
border-radius: 10px;
border-radius: 2rem;
overflow: hidden;
.home_null_icon {
@@ -1141,7 +1147,7 @@ export default defineComponent({
.right_content_img_block {
// overflow-y: auto;
background: #f6f6fa;
border-radius: 1rem;
border-radius: 2rem;
height: 100%;
display: flex;
width: auto;
@@ -1271,6 +1277,7 @@ export default defineComponent({
.ant-modal-mask{
background: linear-gradient(45deg, #eee4f3, #f3f4e6);
min-width: 1024px;
border-radius: 1rem;
overflow: hidden;
height: calc(100% - 7rem);
@@ -1280,6 +1287,13 @@ export default defineComponent({
}
.ant-modal-centered{
top: 7rem;
min-width: 1024px;
// left: 50%;
// margin-left: -50%;
.ant-modal{
min-width: .65*1024px;
}
}
}