@lambo-design/pro-layout 1.0.0-beta.162 → 1.0.0-beta.164
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/package.json
CHANGED
|
@@ -256,6 +256,7 @@ export default {
|
|
|
256
256
|
fetchCollectedMenus() {
|
|
257
257
|
ajax.get(this.serverContext + "/manage/upmsMenuCollect/list").then(resp => {
|
|
258
258
|
const collectedMenus = resp.data.data;
|
|
259
|
+
console.log('ajax.collectedMenus',collectedMenus)
|
|
259
260
|
if (Array.isArray(collectedMenus)) {
|
|
260
261
|
this.collectedMenus = collectedMenus
|
|
261
262
|
// collectedMenus.forEach(menu => {
|
|
@@ -269,6 +270,7 @@ export default {
|
|
|
269
270
|
}).catch(err => {
|
|
270
271
|
console.error("Error fetching collected menus:", err);
|
|
271
272
|
});
|
|
273
|
+
console.log('fetchCollectedMenus.this.collectedMenus:',this.collectedMenus)
|
|
272
274
|
},
|
|
273
275
|
},
|
|
274
276
|
watch:{
|