Commit 6cb3baa5 authored by 田翔's avatar 田翔

fix: 二维码编辑器优化

parent 47da8748
Pipeline #88981 passed with stages
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
"@wisdom-cesium/krpano": "^1.0.29-60", "@wisdom-cesium/krpano": "^1.0.29-60",
"@wisdom-map/amap": "1.7.0", "@wisdom-map/amap": "1.7.0",
"@wisdom-map/arcgismap": "1.4.0-294", "@wisdom-map/arcgismap": "1.4.0-294",
"@wisdom-map/basemap": "1.1.0-41", "@wisdom-map/basemap": "1.1.0-41",
"@wisdom-utils/components": "0.1.337", "@wisdom-utils/components": "0.1.337",
"@wisdom-utils/utils": "0.1.377", "@wisdom-utils/utils": "0.1.377",
"ace-builds": "^1.4.12", "ace-builds": "^1.4.12",
...@@ -112,6 +112,7 @@ ...@@ -112,6 +112,7 @@
"dragm": "^0.0.5", "dragm": "^0.0.5",
"echarts-for-react": "^3.0.2", "echarts-for-react": "^3.0.2",
"express": "4.16.4", "express": "4.16.4",
"file-saver": "^2.0.5",
"fontfaceobserver": "2.1.0", "fontfaceobserver": "2.1.0",
"gojs": "2.1.49", "gojs": "2.1.49",
"gsap": "^3.10.4", "gsap": "^3.10.4",
...@@ -125,6 +126,7 @@ ...@@ -125,6 +126,7 @@
"invariant": "2.2.4", "invariant": "2.2.4",
"ip": "1.1.5", "ip": "1.1.5",
"js-calendar-converter": "0.0.4", "js-calendar-converter": "0.0.4",
"jszip": "^3.10.1",
"lodash": "4.17.11", "lodash": "4.17.11",
"minimist": "1.2.0", "minimist": "1.2.0",
"panda-xform": "6.0.16", "panda-xform": "6.0.16",
......
...@@ -183,10 +183,14 @@ ...@@ -183,10 +183,14 @@
background-size: 100% 100%; background-size: 100% 100%;
position: relative; position: relative;
.company { .company {
height: 50px;
color: white; color: white;
padding: 3%; padding: 3%;
text-align: center; text-align: center;
font-size: 20px; font-size: 20px;
&[active='true'] {
border: 1.5px solid #f57c00;
}
} }
.title { .title {
text-align: center; text-align: center;
...@@ -194,6 +198,9 @@ ...@@ -194,6 +198,9 @@
color: white; color: white;
font-weight: 700; font-weight: 700;
font-style: italic; font-style: italic;
&[active='true'] {
border: 1.5px solid #f57c00;
}
} }
.QR { .QR {
position: absolute; position: absolute;
...@@ -211,6 +218,9 @@ ...@@ -211,6 +218,9 @@
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
width: 30%; width: 30%;
height: 30%; height: 30%;
&[active='true'] {
border: 1.5px solid #f57c00;
}
.systemLogo { .systemLogo {
width: 100%; width: 100%;
height: 100%; height: 100%;
...@@ -226,8 +236,15 @@ ...@@ -226,8 +236,15 @@
bottom: 22%; bottom: 22%;
width: 47%; width: 47%;
height: 5%; height: 5%;
background: url('@{imgSrc}/熊猫logo.png'); .pandaLogoC {
background-size: 100% 100%; width: 100%;
height: 100%;
background: url('@{imgSrc}/熊猫logo.png');
background-size: 100% 100%;
}
&[active='true'] {
border: 1.5px solid #f57c00;
}
} }
.info { .info {
position: absolute; position: absolute;
...@@ -260,4 +277,12 @@ ...@@ -260,4 +277,12 @@
font-weight: bold; font-weight: bold;
} }
} }
}
.QRCodeMinModal {
.ant-modal-close-x {
width: 40px;
height: 40px;
color: white;
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment