嗨森逛PC管理端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
high-web/src/app/app-common.module.ts

142 lines
3.4 KiB

4 years ago
import {
FormsModule,
ReactiveFormsModule,
} from '@angular/forms';
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {NgZorroAntdModule} from 'ng-zorro-antd';
import {NgxNeditorModule} from '@notadd/ngx-neditor';
// 管道
4 years ago
import {
TimesPipe,
TextareaPipe,
SystemPipe,
CouponStatusPipe,
CouponCodePipe,
AuditTypePipe,
4 years ago
AuditStatusPipe,
PaymodelPipe,
PaytypePipe,
DiscountTypePipe,
OrderCouponStatusPipe,
DiscountStatusPipe,
DisplayAreaPipe,
4 years ago
DiscountCodeStatusPipe,
4 years ago
RechargePricePipe,
4 years ago
RechargeStatusPipe,
4 years ago
ChannelMarkPipe,
TypePipe,
StatusPipe,
RechargePayTypePipe,
RefundSourcePipe,
3 years ago
RefundStatusPipe,
PreOrderStatusPipe,
ButtonPipe,
DiscountPackageStatusPipe,
3 years ago
PriceShowPipe,
3 years ago
ShowTypePipe,
3 years ago
EnergyTypePipe,
CompanyAmountRecordTypePipe,
CompanyAmountRecordSourceTypePipe,
OilCardBindStatusPipe,
OilCardRecordTypePipe,
OilCardRecordSourceTypePipe,
RechargePlatformPipe,
PriceStatusPipe,
GasStaffStatusPipe,
PayStatusPipe,
ChlidRechargeStatusPipe,
SourceTypePipe, GasClassGroupTaskStatusPipe, GasOrderStatusPipe, PlatformPipe, ProductConfigPipe, OilCardStatusPipe
4 years ago
} from './pipes';
import {OilTypePipe} from './pipes/store/oil-type.pipe';
import {OilPriceTaskStatusPipe} from './pipes/gas-oil-price/oil-price-task-status.pipe';
import {OilPriceTaskExecutionTypePipe} from './pipes/gas-oil-price/oil-price-task-execution-type.pipe';
import {OilPriceTaskPriceTypePipe} from './pipes/gas-oil-price/oil-price-task-price-type.pipe';
import { IntegralTypePipe } from './pipes/integral/integral-type.pipe';
import { IntegralProductPipe } from './pipes/integral/integral-product.pipe';
2 years ago
import { MsgTypePipe } from './pipes/msg/msg-type.pipe';
4 years ago
const PIPES = [
4 years ago
TimesPipe,
TextareaPipe,
SystemPipe,
CouponStatusPipe,
CouponCodePipe,
AuditTypePipe,
AuditStatusPipe,
4 years ago
OrderCouponStatusPipe,
4 years ago
PaymodelPipe,
PaytypePipe,
DiscountTypePipe,
DiscountStatusPipe,
DisplayAreaPipe,
DiscountCodeStatusPipe,
4 years ago
RechargePricePipe,
4 years ago
RechargeStatusPipe,
4 years ago
ChannelMarkPipe,
ChannelMarkPipe,
TypePipe,
StatusPipe,
RechargePayTypePipe,
RefundSourcePipe,
RefundStatusPipe,
PreOrderStatusPipe,
ButtonPipe,
3 years ago
DiscountPackageStatusPipe,
3 years ago
ShowTypePipe,
3 years ago
PriceShowPipe,
3 years ago
EnergyTypePipe,
CompanyAmountRecordTypePipe,
CompanyAmountRecordSourceTypePipe,
3 years ago
OilCardStatusPipe,
3 years ago
OilCardBindStatusPipe,
OilCardRecordTypePipe,
OilCardRecordSourceTypePipe,
3 years ago
GasStaffStatusPipe,
OilTypePipe,
RechargePlatformPipe,
PriceStatusPipe,
3 years ago
OilPriceTaskStatusPipe,
OilPriceTaskExecutionTypePipe,
OilPriceTaskPriceTypePipe,
PayStatusPipe,
ChlidRechargeStatusPipe,
SourceTypePipe,
3 years ago
GasClassGroupTaskStatusPipe,
3 years ago
GasOrderStatusPipe,
PlatformPipe,
2 years ago
IntegralTypePipe,
IntegralProductPipe,
MsgTypePipe,
ProductConfigPipe
4 years ago
];
@NgModule({
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
NgZorroAntdModule,
NgxNeditorModule
],
4 years ago
declarations: [
...PIPES,
4 years ago
],
4 years ago
4 years ago
exports: [
...PIPES,
],
4 years ago
})
export class AppCommonModule {
static forRoot() {
return {
ngModule: AppCommonModule,
providers: [],
};
}
}