12345678910111213141516171819202122 |
- //
- // OrderDetailViewModel.m
- // FirstLink
- //
- // Created by jack on 15/6/22.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import "FKNormalOrderViewModel.h"
- @implementation FKNormalOrderViewModel
- - (CGFloat)bottomViewHeight {
- return (([self getOrderStatus] == FKOrderStatusUnpay) ? 50 : 0);
- }
- - (NSString *)bottomViewTitle {
- return @"付 款";
- }
- @end
|