# 生日有礼插件
**插件文件名称**
Addon/birthdaygift
## 后端目录结构说明
```
│ ├─birthdaygift 生日有礼
│ │ │ icon.png 图标
│ │ │
│ │ ├─api
│ │ │ └─controller
│ │ │ Config.php 配置项接口
│ │ │
│ │ ├─config
│ │ │ diy_view.php 自定义元素组件
│ │ │ event.php 事件钩子
│ │ │ info.php 插件信息
│ │ │ menu_shop.php 平台端菜单设置
│ │ ├─event 事件执行目录
│ │ │ CloseBirthdayGift.php 关闭活动
│ │ │ Install.php 插件安装
│ │ │ OpenBirthdayGift.php 开启活动
│ │ │ PointRule.php 积分规则
│ │ │ ShowPromotion.php 活动概况
│ │ │ UnInstall.php 插件卸载
│ │ │
│ │ ├─model 模型目录
│ │ │ BirthdayGift.php 生日有礼活动
│ │ │
│ │ └─shop
│ │ ├─controller
│ │ │ Birthdaygift.php 生日有礼控制器
│ │ │ Record.php 礼品领取记录
│ │ ├─view 视图目录
│ │ │ └─birthdaygift
│ │ │ add.html 添加活动
│ │ │ edit.html 编辑活动
│ │ │ detail.html 活动详情
│ │ │ lists.html 活动列表
│ │ │ award_select.html 礼品选择
│ │ ├─record
│ │ │ └─lists.html 奖品领取记录
```
## 前端uniapp目录结构说明
```
│ ├─birthdaygift 生日有礼
│ │ │ icon.png 图标
│ │ │
│ │ ├─api
│ │ │ └─controller
│ │ │ Config.php 配置项接口
│ │ │
│ │ ├─config
│ │ │ diy_view.php 自定义元素组件
│ │ │ event.php 事件钩子
│ │ │ info.php 插件信息
│ │ │ menu_shop.php 平台端菜单设置
│ │ ├─event 事件执行目录
│ │ │ CloseBirthdayGift.php 关闭活动
│ │ │ Install.php 插件安装
│ │ │ OpenBirthdayGift.php 开启活动
│ │ │ PointRule.php 积分规则
│ │ │ ShowPromotion.php 活动概况
│ │ │ UnInstall.php 插件卸载
│ │ │
│ │ ├─model 模型目录
│ │ │ BirthdayGift.php 生日有礼活动
│ │ │
│ │ └─shop
│ │ ├─controller
│ │ │ Birthdaygift.php 生日有礼控制器
│ │ │ Record.php 礼品领取记录
│ │ ├─view 视图目录
│ │ │ └─birthdaygift
│ │ │ add.html 添加活动
│ │ │ edit.html 编辑活动
│ │ │ detail.html 活动详情
│ │ │ lists.html 活动列表
│ │ │ award_select.html 礼品选择
│ │ ├─record
│ │ │ └─lists.html 奖品领取记录
```