1
0
Fork 0

更新 README.md

main
panliang 2025-08-02 16:27:44 +08:00
parent 0fa3fb7e1e
commit 78d77235cc
1 changed files with 9 additions and 2 deletions

View File

@ -100,5 +100,12 @@ amis()->DialogAction()->label("选择图片库")->dialog(
- 表单验证: 服务端返回 `errors` 错误信息, 未在输入框上显示, 示例文件: `app\Services\UserService.php`, [组件文档](https://aisuda.bce.baidu.com/amis/zh-CN/components/form/formitem#%E6%9C%8D%E5%8A%A1%E7%AB%AF%E6%A0%A1%E9%AA%8C) - 表单验证: 服务端返回 `errors` 错误信息, 未在输入框上显示, 示例文件: `app\Services\UserService.php`, [组件文档](https://aisuda.bce.baidu.com/amis/zh-CN/components/form/formitem#%E6%9C%8D%E5%8A%A1%E7%AB%AF%E6%A0%A1%E9%AA%8C)
- CURD 组件: 如果存在 `bulkActions` 按钮时, 表格会出现滚动条 - CURD 组件: 如果存在 `bulkActions` 按钮时, 表格会出现滚动条
- 用户: 会员等级, 余额, 积分 ## Nginx 同时部署Vue项目
- 商城: 商品管理, 订单管理
```
location /h5 {
alias /www/wwwroot/dhbc-server/public/h5;
index index.html;
try_files $uri $uri/ /h5/index.html;
}
```