merge lll-user-organ into master

新增nodata组件 和 组织管理

Created-by: LovableCat
Commit-by: LovableCat
Merged-by: user8949
Description: 新增nodata组件 和 组织管理

See merge request: hk_openRepo/OpenRepo_Portal!7
This commit is contained in:
user8949
2025-03-15 14:10:50 +08:00
4 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<template>
<div class="bg-white w-full flex flex-col items-center py-[20px]">
<slot name="img">
<img
v-if="!hideImg"
class="block mb-[20px]"
width="300"
height="240"
src="/src/assets/imgs/jyh/nodata.png"
alt="NoData"
/>
</slot>
<slot>
<div>没有查询到数据</div>
</slot>
</div>
</template>
<script setup lang="ts">
const props = defineProps({
hideImg: {
type: Boolean,
default: false,
},
});
</script>
<style scoped lang="scss">
.bg-white {
background-color: #fff;
}
</style>