|
@@ -67,10 +67,54 @@
|
|
|
:options="[]"
|
|
|
/>
|
|
|
</div>
|
|
|
- <FocusContentCom class="three">3</FocusContentCom>
|
|
|
- <FocusContentCom class="four">4</FocusContentCom>
|
|
|
+ <FocusContentCom class="three">
|
|
|
+ <div class="three-main">
|
|
|
+ <div class="three-main-left">
|
|
|
+ <div class="three-main-left-title">
|
|
|
+ <div>审核率</div>
|
|
|
+ <div>{{ sh.percent }}%</div>
|
|
|
+ </div>
|
|
|
+ <img src="@/assets/images/gis-business/clue_sh-bg.png" alt=""/>
|
|
|
+ </div>
|
|
|
+ <div class="three-main-right">
|
|
|
+ <div class="three-main-right-total">全部:{{sh.total}}</div>
|
|
|
+ <div class="three-main-right-info">
|
|
|
+ <div class="three-main-right-info-item">
|
|
|
+ <img src="@/assets/images/gis-business/clue_sh-icon1.png" alt=""/>
|
|
|
+ <div>
|
|
|
+ <div>待审核</div>
|
|
|
+ <CusNumberSplit :value="sh.dsh"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="three-main-right-info-item">
|
|
|
+ <img src="@/assets/images/gis-business/clue_sh-icon2.png" alt=""/>
|
|
|
+ <div>
|
|
|
+ <div>审核通过</div>
|
|
|
+ <CusNumberSplit :value="sh.shtg"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="three-main-right-info-item">
|
|
|
+ <img src="@/assets/images/gis-business/clue_sh-icon3.png" alt=""/>
|
|
|
+ <div>
|
|
|
+ <div>审核不通过</div>
|
|
|
+ <CusNumberSplit :value="sh.shbtg"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="three-main-right-info-item">
|
|
|
+ <img src="@/assets/images/gis-business/clue_sh-icon4.png" alt=""/>
|
|
|
+ <div>
|
|
|
+ <div>已终止</div>
|
|
|
+ <CusNumberSplit :value="sh.yzz"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="three-chart">
|
|
|
+ <ShChartCom :data="sh.chart"/>
|
|
|
+ </div>
|
|
|
+ </FocusContentCom>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</BusinessMainCom>
|
|
|
</template>
|
|
@@ -95,6 +139,7 @@ import BusinessMainCom from '../common/business-main.vue'
|
|
|
import FocusContentCom from '../common/focus-content.vue'
|
|
|
import Top5ChartCom from './top5-chart.vue'
|
|
|
import AreaChartCom from './area-chart.vue'
|
|
|
+import ShChartCom from './sh-chart.vue'
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: '',
|
|
@@ -103,6 +148,7 @@ export default defineComponent({
|
|
|
FocusContentCom,
|
|
|
Top5ChartCom,
|
|
|
AreaChartCom,
|
|
|
+ ShChartCom,
|
|
|
},
|
|
|
props: {},
|
|
|
setup(props, {emit}) {
|
|
@@ -155,7 +201,23 @@ export default defineComponent({
|
|
|
{area: '海口市17', clue: 200, power: 3},
|
|
|
{area: '海口市18', clue: 200, power: 3},
|
|
|
{area: '海口市19', clue: 200, power: 3},
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ sh: {
|
|
|
+ percent: 70,
|
|
|
+ total: 8880,
|
|
|
+ dsh: 457345,
|
|
|
+ shtg: 457345,
|
|
|
+ shbtg: 457345,
|
|
|
+ yzz: 457345,
|
|
|
+ chart: [
|
|
|
+ {value: '171', name: '反走私'},
|
|
|
+ {value: '101', name: '岸线船舶研判预警'},
|
|
|
+ {value: '70', name: '公共场所风险预防'},
|
|
|
+ {value: '230', name: '消防救援'},
|
|
|
+ {value: '171', name: '企业风险防控'},
|
|
|
+ {value: '171', name: '社会治理风险防控'},
|
|
|
+ ]
|
|
|
+ }
|
|
|
})
|
|
|
const onSearch = () => {
|
|
|
state.clue.form = JSON.parse(JSON.stringify(state.clue.tempForm))
|
|
@@ -324,11 +386,120 @@ export default defineComponent({
|
|
|
}
|
|
|
}
|
|
|
.three {
|
|
|
- height: 140px;
|
|
|
- }
|
|
|
- .four {
|
|
|
- margin-top: 10px;
|
|
|
- height: 140px;
|
|
|
+ height: 290px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ .three-main {
|
|
|
+ width: 100%;
|
|
|
+ height: 140px;
|
|
|
+ padding: 20px 16px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ .three-main-left {
|
|
|
+ height: 100%;
|
|
|
+ width: 113px;
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ .three-main-left-title {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 55px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ >div:nth-child(1) {
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #007EFF;
|
|
|
+ }
|
|
|
+ >div:nth-child(2) {
|
|
|
+ font-size: 26px;
|
|
|
+ font-family: YouSheBiaoTiHei;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 22px;
|
|
|
+ background: linear-gradient(180deg, #50EAFF 0%, #007EFF 100%);
|
|
|
+ -webkit-background-clip: text;
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ >img {
|
|
|
+ z-index: -1;
|
|
|
+ position: absolute;
|
|
|
+ bottom: 7px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .three-main-right {
|
|
|
+ flex: 1;
|
|
|
+ margin-left: 10px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ .three-main-right-total {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding-left: 10px;
|
|
|
+ background-color: #C0D9FF;
|
|
|
+ width: 100%;
|
|
|
+ height: 24px;
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #1DA5FF;
|
|
|
+ position: relative;
|
|
|
+ &:before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ width: 2px;
|
|
|
+ height: 100%;
|
|
|
+ left: 0;
|
|
|
+ background-color: #1280F1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .three-main-right-info {
|
|
|
+ padding: 10px 0 0 10px;
|
|
|
+ width: 100%;
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: repeat(2, 1fr);
|
|
|
+ row-gap: 10px;
|
|
|
+ .three-main-right-info-item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ height: 28px;
|
|
|
+ >img {
|
|
|
+ margin-right: 2px;
|
|
|
+ }
|
|
|
+ >div {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ >div:nth-child(1) {
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #434343;
|
|
|
+ line-height: 14px;
|
|
|
+ }
|
|
|
+ >div:nth-child(2) {
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #43AEFE;
|
|
|
+ line-height: 14px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .three-chart {
|
|
|
+ flex: 1;
|
|
|
+ width: 100%;
|
|
|
+ height: 140px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|