34 lines
832 B
Vue
34 lines
832 B
Vue
<!--企业运营情况-->
|
|
<template>
|
|
<div class="enterprise-operations">
|
|
<secondary-title :title="title">
|
|
<template>
|
|
<div class="right-tip">
|
|
</div>
|
|
</template>
|
|
</secondary-title>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "EnterpriseOperations",
|
|
data() {
|
|
return {
|
|
title: '企业运营情况'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.enterprise-operations {
|
|
height: 777px;
|
|
width: 100%;
|
|
background-image: linear-gradient(62deg, rgba(8, 31, 55, 0.10) 0%, rgba(18, 50, 81, 0.10) 100%);
|
|
border: 1px solid transparent; /* 先将边框颜色设置为透明 */
|
|
border-image: linear-gradient(rgba(79, 182, 238, 0), rgba(39, 127, 216, 1)); /* 使用线性渐变作为边框图片 */
|
|
border-image-slice: 1; /* 指定切分边框图像的位置 */
|
|
}
|
|
</style>
|