|
@@ -174,6 +174,7 @@
|
|
<h5>(1)年度分布</h5>
|
|
<h5>(1)年度分布</h5>
|
|
|
|
|
|
<MarketTimeScatter
|
|
<MarketTimeScatter
|
|
|
|
+ :data-zoom="false"
|
|
width="460px"
|
|
width="460px"
|
|
:chartData="sections.timeScatter.year.count"
|
|
:chartData="sections.timeScatter.year.count"
|
|
/>
|
|
/>
|
|
@@ -181,6 +182,7 @@
|
|
|
|
|
|
<h5>(2)月度分布</h5>
|
|
<h5>(2)月度分布</h5>
|
|
<MarketTimeScatter
|
|
<MarketTimeScatter
|
|
|
|
+ :data-zoom="false"
|
|
width="460px"
|
|
width="460px"
|
|
:chartData="sections.timeScatter.month.count"
|
|
:chartData="sections.timeScatter.month.count"
|
|
/>
|
|
/>
|
|
@@ -200,6 +202,7 @@
|
|
<h5>(1)年度分布</h5>
|
|
<h5>(1)年度分布</h5>
|
|
|
|
|
|
<MarketTimeScatter
|
|
<MarketTimeScatter
|
|
|
|
+ :data-zoom="false"
|
|
width="460px"
|
|
width="460px"
|
|
:chartData="sections.timeScatter.year.amount"
|
|
:chartData="sections.timeScatter.year.amount"
|
|
/>
|
|
/>
|
|
@@ -207,6 +210,7 @@
|
|
|
|
|
|
<h5>(2)月度分布</h5>
|
|
<h5>(2)月度分布</h5>
|
|
<MarketTimeScatter
|
|
<MarketTimeScatter
|
|
|
|
+ :data-zoom="false"
|
|
width="460px"
|
|
width="460px"
|
|
:chartData="sections.timeScatter.month.amount"
|
|
:chartData="sections.timeScatter.month.amount"
|
|
/>
|
|
/>
|
|
@@ -366,6 +370,7 @@
|
|
<div class="sub-section-content">
|
|
<div class="sub-section-content">
|
|
<MarketSegment
|
|
<MarketSegment
|
|
v-if="sections.market.refine.dataAlready"
|
|
v-if="sections.market.refine.dataAlready"
|
|
|
|
+ :data-zoom="false"
|
|
:projectCountData="sections.market.refine.projectCountData"
|
|
:projectCountData="sections.market.refine.projectCountData"
|
|
:projectAmountData="{ rows: [] }"
|
|
:projectAmountData="{ rows: [] }"
|
|
/>
|
|
/>
|
|
@@ -2029,108 +2034,7 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
<style lang="scss">
|
|
-.page-line {
|
|
|
|
- position: absolute;
|
|
|
|
- top: 0;
|
|
|
|
- left: 0;
|
|
|
|
- width: 100%;
|
|
|
|
- background: green;
|
|
|
|
- opacity: 0.5;
|
|
|
|
- z-index: -1;
|
|
|
|
-}
|
|
|
|
-body {
|
|
|
|
- position: relative;
|
|
|
|
- margin: 0;
|
|
|
|
- min-width: unset !important;
|
|
|
|
- background: rgb(204, 204, 204);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.doc-container {
|
|
|
|
- position: relative;
|
|
|
|
-}
|
|
|
|
-.doc-head img {
|
|
|
|
- height: 30px;
|
|
|
|
-}
|
|
|
|
-.fixed-page-inset {
|
|
|
|
- position: absolute;
|
|
|
|
- top: 0;
|
|
|
|
- left: 0;
|
|
|
|
- z-index: 9;
|
|
|
|
- width: 100%;
|
|
|
|
- background: transparent;
|
|
|
|
- display: flex;
|
|
|
|
- flex-direction: column;
|
|
|
|
- align-items: center;
|
|
|
|
-}
|
|
|
|
-.doc-head {
|
|
|
|
- position: relative;
|
|
|
|
- width: 830px;
|
|
|
|
- height: 130px;
|
|
|
|
- margin-bottom: 20px;
|
|
|
|
- display: flex;
|
|
|
|
- flex-direction: row;
|
|
|
|
- justify-content: space-between;
|
|
|
|
- align-items: center;
|
|
|
|
- color: #c0c0c0;
|
|
|
|
- background: white;
|
|
|
|
-}
|
|
|
|
-.doc-footer {
|
|
|
|
- .doc-footer-container {
|
|
|
|
- width: 830px;
|
|
|
|
- height: 60px;
|
|
|
|
- margin: 0 auto;
|
|
|
|
- display: flex;
|
|
|
|
- flex-direction: row;
|
|
|
|
- align-items: center;
|
|
|
|
- justify-content: space-between;
|
|
|
|
- }
|
|
|
|
- position: relative;
|
|
|
|
- height: 60px;
|
|
|
|
- line-height: 60px;
|
|
|
|
- color: #c0c0c0;
|
|
|
|
- text-align: center;
|
|
|
|
- width: 830px;
|
|
|
|
- background: white;
|
|
|
|
-}
|
|
|
|
-.doc-head::after,
|
|
|
|
-.doc-head::before,
|
|
|
|
-.doc-footer::after,
|
|
|
|
-.doc-footer::before {
|
|
|
|
- top:50px;
|
|
|
|
- position:absolute;
|
|
|
|
- content: '';
|
|
|
|
- display: inline-block;
|
|
|
|
- width: 30px;
|
|
|
|
- height: 30px;
|
|
|
|
- border: 1px solid #eee;
|
|
|
|
- border-width: 0 1px 1px 0;
|
|
|
|
- box-sizing: border-box;
|
|
|
|
- flex-shrink: 0;
|
|
|
|
-}
|
|
|
|
-.doc-head::after {
|
|
|
|
- border-width: 0 0 1px 1px;
|
|
|
|
- right:-30px;
|
|
|
|
-}
|
|
|
|
-.doc-head::before {
|
|
|
|
- left:-30px;
|
|
|
|
-}
|
|
|
|
-.doc-footer::before {
|
|
|
|
- top:15px;
|
|
|
|
- left:-30px;
|
|
|
|
- border-width: 1px 1px 0 0;
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
-.doc-footer::after {
|
|
|
|
- top:15px;
|
|
|
|
- right: -30px;
|
|
|
|
- border-width: 1px 0 0 1px;
|
|
|
|
-}
|
|
|
|
-.page[size='A4'].static-page {
|
|
|
|
- height: 1360px;
|
|
|
|
- .static-page--main {
|
|
|
|
- height: 1150px;
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+@import '~@/assets/style/page/pdf-base.scss';
|
|
</style>
|
|
</style>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
@import '~@/assets/style/page/pdf.scss';
|
|
@import '~@/assets/style/page/pdf.scss';
|
|
@@ -2160,6 +2064,9 @@ body {
|
|
display: none;
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ .el-link.el-link--default.is-disabled {
|
|
|
|
+ color: #606266;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
.no-data-tip{
|
|
.no-data-tip{
|
|
text-align: center;
|
|
text-align: center;
|