let routerUrl = ['/delivery','/fund','/marketing'];
let list = ?[
? ? {
? ? ? ? path: '/member',
? ? ? ? icon: 'person',
? ? ? ? name: 'member',
? ? ? ? title: '會員',
? ? ? ? component: Main
? ? },
? ? {
? ? ? ? path: '/product',
? ? ? ? icon: 'pricetag',
? ? ? ? name: 'product',
? ? ? ? title: '商品',
? ? ? ? component: Main
? ? },
? ? {
? ? ? ? path: '/delivery',
? ? ? ? icon: 'navigate',
? ? ? ? name: 'delivery',
? ? ? ? title: '同城配送',
? ? ? ? component: Main
? ? },
? ? {
? ? ? ? path: '/order',
? ? ? ? icon: 'ios-list',
? ? ? ? name: 'order',
? ? ? ? title: '訂單',
? ? ? ? component: Main
? ? },
? ? {
? ? ? ? path: '/fund',
? ? ? ? icon: 'social-yen',
? ? ? ? name: 'fund',
? ? ? ? title: '資金',
? ? ? ? component: Main
? ? },
? ? {
? ? ? ? path: '/marketing',
? ? ? ? icon: 'playstation',
? ? ? ? name: 'marketing',
? ? ? ? title: '營銷推廣',
? ? ? ? component: Main
? ? },
? ? {
? ? ? ? path: '/analysis',
? ? ? ? icon: 'stats-bars',
? ? ? ? name: 'analysis',
? ? ? ? title: '統(tǒng)計分析',
? ? ? ? component: Main
? ? }
];
// 去掉 id 等于 2 的數(shù)據(jù)
for(let j =0; j<=routerUrl.length; j++){
???for (let i = 0; i < list.length; i++) {
????????if (list[i].path == routerUrl[j]) {
????????????????list.splice(i, 1);
? ? ? ? ? ? ????break; // list[i].path 的值 等于routerUrl[j]時 不能break
? ? ? ? }
????}
}
console.log(list);
最后顯示:會員批狐、商品扇售、訂單前塔、運營數(shù)據(jù)嚣艇;