master
loveflow 7 months ago
parent 6011a2aea5
commit d69d31b852

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,49 @@
<template>
<div class="screenCol">
<div class="screenName">
<div class="screenIcon"></div>
<div class="screenNameText">{{ title }}</div>
</div>
<div class="screenChart">
<slot></slot>
</div>
</div>
</template>
<script>
export default {
props: {
title: {
type: String,
default: () => {
return "";
},
},
},
data() {
return {};
},
};
</script>
<style lang="less">
.screenCol {
}
</style>
<style lang="scss">
@import "@/loveflow/assets/index.scss";
.screenCol {
height: vh(36);
.screenIcon {
width: vw(24);
height: vh(24);
background: url("~@/assets/images/screen/riskIcon.png") no-repeat center
center;
background-size: 100% 100%;
}
.screenNameText {
font-size: vh(16);
}
.screenChart {
}
}
</style>

@ -19,17 +19,17 @@
</div> </div>
</div> </div>
<div class="riskRow btmRow"> <div class="riskRow btmRow">
<div class="riskCol mr18"></div> <colWrap class="mr18"></colWrap>
<div class="riskCol"></div> <colWrap></colWrap>
</div> </div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import headWrap from "@/views/home/head.vue"; import headWrap from "@/views/home/head.vue";
import colWrap from "@/views/enterpriseTopic/components/colWrap.vue";
export default { export default {
components: { headWrap }, components: { headWrap, colWrap },
data() { data() {
return {}; return {};
}, },

Loading…
Cancel
Save