WithdrawalTableViewController.m 1.23 KB
//
//  WithdrawalTableViewController.m
//  Lighting
//
//  Created by 曹云霄 on 16/8/28.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "WithdrawalTableViewController.h"

@interface WithdrawalTableViewController ()

@end

@implementation WithdrawalTableViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self uiConfigAction];
    [self fillDataAction];
}

#pragma mark - UI
- (void)uiConfigAction
{
    self.tableView.tableFooterView = [UIView new];
}

#pragma mark - 填充数据
- (void)fillDataAction
{
    BOOL boolValue = [self.model.billStates isEqualToString:@"accomplished"] || [self.model.billStates isEqualToString:@"reject"];
    self.progressImageView.image = boolValue?TCImage(@"finish"):TCImage(@"progress");
    self.applyCompleteLabel.textColor = [BaseViewController setupLabelColor:self.model.billStates][@"color"];
    self.applyCompleteLabel.text =  [BaseViewController setupLabelColor:self.model.billStates][@"text"];
    self.submitApplyTimeLabel.text = self.model.createDate;
    self.orderTimeLabel.text = self.model.createDate;
    self.orderBillNumberLabel.text = self.model.billNumber;
    self.amountLabel.text = [self.model.applyMoney stringValue];
}









@end