提交代码

pull/1/head
胡锐 2 years ago
commit 9929726011
  1. 3
      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

@ -10,7 +10,8 @@ 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-refund-list', component: OrderRefundListComponent } { path: 'order-refund-list', component: OrderRefundListComponent },
{ path: 'order-kfc-list', component: KfcOrderListComponent}
]; ];
@NgModule({ @NgModule({

@ -11,9 +11,8 @@ import { OrderCouponListComponent } from './order-coupon/order-coupon-list/order
import { OrderIntegralRechargeComponent } from './order-integral-recharge/order-integral-recharge.component'; import { OrderIntegralRechargeComponent } from './order-integral-recharge/order-integral-recharge.component';
import { OrderRefundListComponent } from './order-refund-list/order-refund-list.component'; import { OrderRefundListComponent } from './order-refund-list/order-refund-list.component';
@NgModule({ @NgModule({
declarations: [OrderOilListComponent, OrderCouponListComponent, OrderIntegralRechargeComponent, OrderRefundListComponent], declarations: [OrderOilListComponent, OrderCouponListComponent, OrderIntegralRechargeComponent, OrderRefundListComponent, 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