befly-admin-ui 1.17.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/pageTableDetail.vue +1 -1
- package/layouts/default.vue +1 -1
- package/package.json +1 -1
- package/views/config/dict/index.vue +0 -1
- package/views/config/dictType/index.vue +1 -1
- package/views/config/system/index.vue +1 -1
- package/views/log/email/index.vue +1 -2
- package/views/log/error/index.vue +0 -1
- package/views/log/login/index.vue +1 -2
- package/views/log/operate/index.vue +0 -1
- package/views/people/admin/index.vue +1 -2
- package/views/permission/role/index.vue +1 -2
- package/views/resource/gallery/index.vue +0 -1
|
@@ -252,7 +252,7 @@ const $Method = {
|
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
|
|
255
|
-
const res = await $Http(listEndpoint.path, data, listEndpoint.dropValues, listEndpoint.dropKeyValue);
|
|
255
|
+
const res = await $Http(listEndpoint.path, data, Array.isArray(listEndpoint.dropValues) ? ["", ...listEndpoint.dropValues] : [""], listEndpoint.dropKeyValue);
|
|
256
256
|
|
|
257
257
|
if (seq !== $From.requestSeq) {
|
|
258
258
|
return;
|
package/layouts/default.vue
CHANGED
|
@@ -197,7 +197,7 @@ const $Method = {
|
|
|
197
197
|
},
|
|
198
198
|
fetchUserMenus: async function () {
|
|
199
199
|
try {
|
|
200
|
-
const { data } = await $Http("/core/menu/all");
|
|
200
|
+
const { data } = await $Http("/core/menu/all", {}, [""]);
|
|
201
201
|
const lists = Array.isArray(data?.lists) ? data.lists : [];
|
|
202
202
|
|
|
203
203
|
const normalizedLists = lists.map((menu) => {
|
package/package.json
CHANGED