修改话费订单导出问题

pull/1/head
袁野 2 years ago
parent 1792ed5506
commit a5a81f2a5d
  1. 4
      src/app/admin/order-manage/order-manage-routing.module.ts
  2. 3
      src/app/admin/order-manage/order-manage.module.ts
  3. 2
      src/app/pipes/order/order-pay-type.pipe.ts
  4. 3
      src/styles.scss

@ -3,12 +3,14 @@ import { Routes, RouterModule } from '@angular/router';
import {OrderOilListComponent} from './order-oil/order-oil-list/order-oil-list.component'; import {OrderOilListComponent} from './order-oil/order-oil-list/order-oil-list.component';
import {OrderCouponListComponent} from './order-coupon/order-coupon-list/order-coupon-list.component'; import {OrderCouponListComponent} from './order-coupon/order-coupon-list/order-coupon-list.component';
import {OrderIntegralRechargeComponent} from './order-integral-recharge/order-integral-recharge.component'; import {OrderIntegralRechargeComponent} from './order-integral-recharge/order-integral-recharge.component';
import {KfcOrderListComponent} from './kfc-order/kfc-order-list/kfc-order-list.component';
const routes: Routes = [ const routes: Routes = [
{ path: 'order-oil-list', component: OrderOilListComponent }, { path: 'order-oil-list', component: OrderOilListComponent },
{ path: 'order-coupon-list', component: OrderCouponListComponent }, { path: 'order-coupon-list', component: OrderCouponListComponent },
{ path: 'order-integral-recharge-list', component: OrderIntegralRechargeComponent} { path: 'order-integral-recharge-list', component: OrderIntegralRechargeComponent},
{ path: 'order-kfc-list', component: KfcOrderListComponent}
]; ];
@NgModule({ @NgModule({

@ -9,10 +9,11 @@ import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module';
import {AppCommonModule} from '../../app-common.module'; import {AppCommonModule} from '../../app-common.module';
import { OrderCouponListComponent } from './order-coupon/order-coupon-list/order-coupon-list.component'; import { OrderCouponListComponent } from './order-coupon/order-coupon-list/order-coupon-list.component';
import { OrderIntegralRechargeComponent } from './order-integral-recharge/order-integral-recharge.component'; import { OrderIntegralRechargeComponent } from './order-integral-recharge/order-integral-recharge.component';
import { KfcOrderListComponent } from './kfc-order/kfc-order-list/kfc-order-list.component';
@NgModule({ @NgModule({
declarations: [OrderOilListComponent, OrderCouponListComponent, OrderIntegralRechargeComponent], declarations: [OrderOilListComponent, OrderCouponListComponent, OrderIntegralRechargeComponent, KfcOrderListComponent],
imports: [ imports: [
CommonModule, CommonModule,
OrderManageRoutingModule, OrderManageRoutingModule,

@ -21,6 +21,8 @@ export class OrderPayTypePipe implements PipeTransform {
return '银联分期'; return '银联分期';
case 7: case 7:
return '嗨森逛油卡'; return '嗨森逛油卡';
default:
return '积分抵扣';
} }
} }

@ -30,6 +30,9 @@
} }
.search-button{ .search-button{
text-align: center; text-align: center;
a {
margin-left: 8px;
}
} }
.search-button button{ .search-button button{
margin-left: 10px; margin-left: 10px;

Loading…
Cancel
Save