|
@@ -7,28 +7,37 @@
|
|
|
<component
|
|
|
:is="mainSL001"
|
|
|
moduleId="mainSL001"
|
|
|
- style="height: 34%; width: 100%"
|
|
|
+ style="height: 32%; width: 100%"
|
|
|
/>
|
|
|
- <dv-decoration-2 style="height: 10px" />
|
|
|
+ <dv-decoration-2 style="height: 2%" />
|
|
|
<component
|
|
|
:is="mainSL002"
|
|
|
moduleId="mainSL002"
|
|
|
- style="height: 33%; width: 100%"
|
|
|
+ style="height: 32%; width: 100%"
|
|
|
/>
|
|
|
- <dv-decoration-2 style="height: 10px" />
|
|
|
+ <dv-decoration-2 style="height: 2%" />
|
|
|
<component
|
|
|
- :is="mainSL002"
|
|
|
- moduleId="mainSL002"
|
|
|
- style="height: 33%; width: 100%"
|
|
|
+ :is="mainSL003"
|
|
|
+ moduleId="mainSL003"
|
|
|
+ style="height: 32%; width: 100%"
|
|
|
/>
|
|
|
</dv-border-box-9>
|
|
|
<div class="spsace"></div>
|
|
|
<div class="zhright">
|
|
|
- <div class="top column-item">dddd</div>
|
|
|
- <div class="middle column-item">
|
|
|
+ <div class="column-item">
|
|
|
+ <div class="item-left">
|
|
|
+ <component :is="mainSRT12" moduleId="mainSRT12" />
|
|
|
+ </div>
|
|
|
+ <div class="item-right">
|
|
|
+ <component :is="mainSRT13" moduleId="mainSRT13" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="vertical-space"></div>
|
|
|
+ <div class="column-item">
|
|
|
<component :is="mainS076" moduleId="mainS076" />
|
|
|
</div>
|
|
|
- <div class="bottom column-item">
|
|
|
+ <div class="vertical-space"></div>
|
|
|
+ <div class="column-item">
|
|
|
<dv-border-box-12 class="item-left screen-common-box">
|
|
|
<component :is="mainS077" moduleId="mainS077" />
|
|
|
</dv-border-box-12>
|
|
@@ -61,6 +70,16 @@ const mainSL001 = computed(() => {
|
|
|
const mainSL002 = computed(() => {
|
|
|
return getComponetnByName(commonS.mainSL002);
|
|
|
});
|
|
|
+const mainSL003 = computed(() => {
|
|
|
+ return getComponetnByName(commonS.mainSL003);
|
|
|
+});
|
|
|
+const mainSRT12 = computed(() => {
|
|
|
+ return getComponetnByName(commonS.mainSRT12);
|
|
|
+});
|
|
|
+const mainSRT13 = computed(() => {
|
|
|
+ return getComponetnByName(commonS.mainSRT13);
|
|
|
+});
|
|
|
+
|
|
|
const mainS076 = computed(() => {
|
|
|
return getComponetnByName(commonS.mainS076);
|
|
|
});
|
|
@@ -74,7 +93,7 @@ const mainS078 = computed(() => {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.zhleft {
|
|
|
- width: 500px;
|
|
|
+ width: 550px;
|
|
|
height: calc(100% - 120px);
|
|
|
}
|
|
|
|
|
@@ -88,12 +107,17 @@ const mainS078 = computed(() => {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
|
|
|
+ .vertical-space {
|
|
|
+ height: 2%;
|
|
|
+ }
|
|
|
+
|
|
|
.column-item {
|
|
|
- flex: 1;
|
|
|
+ //flex: 1;
|
|
|
+ height: 32%;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
- height: 100%;
|
|
|
+ //height: 100%;
|
|
|
}
|
|
|
|
|
|
.item-left {
|