mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-23 11:50:20 +08:00
feat(api-select): clear options before fetch
ApiSelect组件在发起新的请求之前先清空已有的options
This commit is contained in:
parent
41e6d94b3b
commit
9cf070dd63
@ -4,8 +4,9 @@
|
||||
- 修复滚动条样式问题
|
||||
- 修复树形表格的带有展开图标的单元格的内容对齐问题
|
||||
- **AppSearch** 修复可能会搜索隐藏菜单的问题
|
||||
- **其它** 修复菜单默认折叠的配置不起作用的问题
|
||||
- 修复 safari 浏览器报错导致网站打不开
|
||||
- **其它**
|
||||
- 修复菜单默认折叠的配置不起作用的问题
|
||||
- 修复`safari`浏览器报错导致网站打不开
|
||||
|
||||
### 🎫 Chores
|
||||
|
||||
|
@ -106,7 +106,7 @@
|
||||
async function fetch() {
|
||||
const api = props.api;
|
||||
if (!api || !isFunction(api)) return;
|
||||
|
||||
options.value = [];
|
||||
try {
|
||||
loading.value = true;
|
||||
const res = await api(props.params);
|
||||
|
Loading…
Reference in New Issue
Block a user