前后端全面升级

This commit is contained in:
pycook
2023-07-10 17:42:15 +08:00
parent c444fed436
commit db5ff60aff
629 changed files with 97789 additions and 23995 deletions

View File

@@ -0,0 +1,24 @@
<template>
<div class="ops-card-title">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'CardTitle',
}
</script>
<style lang="less" scoped>
.ops-card-title {
border-top-left-radius: 15px;
font-size: 1vw;
height: 2.2vw;
color: #011d93;
background: linear-gradient(270deg, rgba(206, 226, 255, 0) -6.74%, #d2e4ff 96.74%);
padding: 5px 10px;
display: inline-block;
font-weight: 500;
}
</style>

View File

@@ -0,0 +1,2 @@
import CardTitle from './CardTitle'
export default CardTitle