Skip to content
goods-collect.module.ts 555 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import {NgModule} from '@angular/core';
import {IonicPageModule} from 'ionic-angular';
import {GoodsCollectPage} from './goods-collect';
import {GoodsCartPage} from "./goods-cart/goods-cart";
import {GoodsOrderPage} from "./goods-order/goods-order";

@NgModule({
    declarations: [
        GoodsCollectPage,
        GoodsCartPage,
        GoodsOrderPage
    ],
    imports: [
        IonicPageModule.forChild(GoodsCollectPage),
    ],
    entryComponents: [
        GoodsCartPage,
        GoodsOrderPage,
    ]
})
export class GoodsCollectPageModule {
}