@ -29,6 +29,13 @@ const floors = [
floorId: "F1",
isPark: false,
},
{
name: "1MF",
floorOrder: 4,
url: null,
floorId: "1MF",
name: "2F",
floorOrder: 5,
@ -96,7 +96,7 @@ Page({
} = getApp();
const { windowHeight } = wx.getSystemInfoSync();
this.setData({
floors,
floors: floors.filter(({ url }) => url !== null),
filteredMallFloors: floors.filter(
({ url, isPark }) => url !== null && !isPark
),