diff --git a/components/base-background/README.md b/components/base-background/README.md
index 0519ecb..1edbccf 100644
--- a/components/base-background/README.md
+++ b/components/base-background/README.md
@@ -1 +1,93 @@
-
\ No newline at end of file
+ # BaseBackground 背景图片组件
+
+一个可复用的背景图片组件,支持自定义背景图片源和样式。
+
+## 功能特性
+
+- 支持自定义背景图片源
+- 支持自定义图片裁剪模式
+- 支持自定义样式
+- 默认使用 CommonEnum.BACKGROUND 作为背景
+
+## 使用方法
+
+### 基础用法
+
+```vue
+
+
+
+
+
+
+
+
+```
+
+### 自定义背景图片
+
+```vue
+
+
+
+
+
+
+```
+
+### 自定义裁剪模式
+
+```vue
+
+
+
+
+
+
+```
+
+### 自定义样式
+
+```vue
+
+
+
+
+
+
+```
+
+## Props
+
+| 参数 | 类型 | 默认值 | 说明 |
+|------|------|--------|------|
+| src | String | '' | 背景图片源,如果不传则使用默认背景 |
+| mode | String | 'aspectFill' | 图片裁剪模式 |
+| customStyle | Object | {} | 自定义样式对象 |
+
+## 裁剪模式说明
+
+- `aspectFill`: 保持纵横比缩放图片,只保证图片的短边能完全显示出来
+- `aspectFit`: 保持纵横比缩放图片,使图片的长边能完全显示出来
+- `scaleToFill`: 不保持纵横比缩放图片,使图片完全适应容器
+- `widthFix`: 宽度不变,高度自动变化,保持原图宽高比不变
+- `heightFix`: 高度不变,宽度自动变化,保持原图宽高比不变
+
+## 注意事项
+
+1. 组件会自动设置 `position: absolute` 和 `z-index: -1`,确保背景图片在内容下方
+2. 默认样式包含 `border-radius: 16rpx`,可以通过 `customStyle` 覆盖
+3. 组件会自动导入 `CommonEnum`,使用默认背景图片
\ No newline at end of file
diff --git a/pages/institutionalStructure/components/status-display.vue b/pages/institutionalStructure/components/status-display.vue
new file mode 100644
index 0000000..d1c2fb1
--- /dev/null
+++ b/pages/institutionalStructure/components/status-display.vue
@@ -0,0 +1,55 @@
+
+
+
+
+ {{ loadingText }}
+
+
+
+ {{ emptyText }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/institutionalStructure/institutionalStructure.vue b/pages/institutionalStructure/institutionalStructure.vue
index 4c740b2..8449dbf 100644
--- a/pages/institutionalStructure/institutionalStructure.vue
+++ b/pages/institutionalStructure/institutionalStructure.vue
@@ -3,14 +3,17 @@