企微员工积分完成

This commit is contained in:
aixianling
2022-05-19 17:28:53 +08:00
parent 2a1ffea9c3
commit 27d46df2a7
6 changed files with 336 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
<template>
<section class="AiGroup">
<slot/>
</section>
</template>
<script>
export default {
name: "AiGroup",
data() {
return {}
},
methods: {},
created() {
}
}
</script>
<style lang="scss" scoped>
.AiGroup {
background: #FFFFFF;
box-shadow: inset 0px -1px 0px 0px #DDDDDD;
padding-left: 32px;
& + .AiGroup {
margin-top: 16px;
}
}
</style>