feat(@vben/web-antd):迁移客服模块

This commit is contained in:
jawe
2025-10-30 15:39:08 +08:00
parent 38df83e281
commit 0ef91c1cad
69 changed files with 2259 additions and 40 deletions

View File

@@ -0,0 +1,37 @@
<script lang="ts" setup>
defineProps({
title: {
type: String,
required: true,
},
});
defineComponent({
name: 'CardTitle',
});
</script>
<template>
<span class="card-title">{{ title }}</span>
</template>
<style scoped lang="scss">
.card-title {
font-size: 14px;
font-weight: 600;
&::before {
position: relative;
top: 8px;
left: -5px;
display: inline-block;
width: 3px;
height: 14px;
content: '';
//background-color: #105cfb;
background: var(--el-color-primary);
border-radius: 5px;
transform: translateY(-50%);
}
}
</style>

View File

@@ -0,0 +1 @@
export { default as CardTitle } from './CardTitle.vue';