今日特卖

ViewController.h

#import

@interfaceViewController :UITabBarController

@end

ViewController.m

#import "ViewController.h"

#import "oneViewController.h"

#import "twoViewController.h"

#import "threeViewController.h"

#import "fourViewController.h"

#import "fiveViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

    oneViewController *one = [oneViewController new];

    UINavigationController *oneNav = [[UINavigationController alloc]initWithRootViewController:one];

    oneNav.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"今日特卖" image:[UIImage imageNamed:@"aa"] selectedImage:[UIImage imageNamed:@"aa"]];


    twoViewController *two = [twoViewController new];

    UINavigationController *twoNav = [[UINavigationController alloc]initWithRootViewController:two];

    twoNav.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"社区" image:[UIImage imageNamed:@"bb"] selectedImage:[UIImage imageNamed:@"bb"]];


    threeViewController *three = [threeViewController new];

    UINavigationController *threeNav = [[UINavigationController alloc]initWithRootViewController:three];

    threeNav.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"升级权益" image:[UIImage imageNamed:@"cc"] selectedImage:[UIImage imageNamed:@"cc"]];


    fourViewController *four = [fourViewController new];

    UINavigationController *fourNav = [[UINavigationController alloc]initWithRootViewController:four];

    fourNav.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"购物车" image:[UIImage imageNamed:@"dd"] selectedImage:[UIImage imageNamed:@"dd"]];


    fiveViewController *five = [fiveViewController new];

    UINavigationController *fiveNav = [[UINavigationController alloc]initWithRootViewController:five];

    fiveNav.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"个人中心" image:[UIImage imageNamed:@"ee"] selectedImage:[UIImage imageNamed:@"ee"]];


    self.viewControllers= @[oneNav,twoNav,threeNav,fourNav,fiveNav];

}

@end

one.m

#import "oneViewController.h"

@interface oneViewController ()<UITableViewDelegate,UITableViewDataSource>

{

    UITableView *tbv;

    UIScrollView *scro;

    UIPageControl *pag;

    NSTimer*timer;

    intk;

}

@end

@implementationoneViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.

    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"aa"] style:UIBarButtonItemStylePlain target:self action:nil];

    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"bb"] style:UIBarButtonItemStylePlain target:self action:nil];

    self.navigationItem.title = @"贝店";

    tbv = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];

    tbv.dataSource = self;

    tbv.delegate = self;


    [self.view addSubview:tbv];

}

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{

    return1;

}

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

    return1;

}

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{


    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"2"];

    if(!cell) {

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"2"];

    }

        tbv.rowHeight= 50;


        UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(5, 0, 70, 50)];

        label.text=@"今日特卖";

        label.textColor = [UIColor redColor];

        [celladdSubview:label];


        UILabel *label2 = [[UILabel alloc]initWithFrame:CGRectMake(90, 0, 40, 50)];

        label2.text=@"居家";

        [celladdSubview:label2];


        UILabel *label3 = [[UILabel alloc]initWithFrame:CGRectMake(145, 0, 40, 50)];

        label3.text=@"居家";

        [celladdSubview:label3];


        UILabel *label4 = [[UILabel alloc]initWithFrame:CGRectMake(200, 0, 40, 50)];

        label4.text=@"居家";

        [celladdSubview:label4];


        UILabel*label5 = [[UILabelalloc]initWithFrame:CGRectMake(250 , 0, 40, 50)];

        label5.text=@"居家";

        [celladdSubview:label5];


        UILabel*label6 = [[UILabelalloc]initWithFrame:CGRectMake(300 , 0, 40, 50)];

        label6.text=@"居家";

        [celladdSubview:label6];


        // 初始化滚动式图

        scro = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 50, self.view.frame.size.width, 200)];

        // 设置滚动范围

        scro.contentSize = CGSizeMake(3 * self.view.frame.size.width, 0);

        // 禁用弹簧效果

        scro.bounces=NO;

        // 禁用水平滚动

        scro.showsHorizontalScrollIndicator = NO;

        // 设置整页滚动

        scro.pagingEnabled = YES;

        // 设置代理

        scro.delegate=self;

        // 设置滚动图片

        for(inti = 0 ; i < 3 ; i++){

            // 设置图片数组

            NSArray*arr = @[@"1",@"2",@"3"];

            UIImageView *imgV = [[UIImageView alloc]initWithFrame:CGRectMake(i * self.view.frame.size.width, 0, self.view.frame.size.width, 200)];

            // 加载图片

            imgV.image= [UIImageimageNamed:arr[i]];

            // 添加到滚动视图中

            [scroaddSubview:imgV];


        }

        // 添加到cell中

        [celladdSubview:scro];

        // 设置豆豆

        pag = [[UIPageControl alloc]initWithFrame:CGRectMake(90, 95, 150, 25)];

        // 设置豆豆的数量

        pag.numberOfPages = 3;

        // 设置豆豆的颜色

        pag.currentPageIndicatorTintColor = [UIColor orangeColor];

        pag.pageIndicatorTintColor = [UIColor whiteColor];

        // 添加到单元格中

        [celladdSubview:pag];

        // 创建定时器

        timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(aaa) userInfo:nil repeats:YES];

    returncell;

}

// 滚动视图

- (void)scrollViewDidScroll:(UIScrollView*)scrollView{


    // NSLog(@"%lf",scro.contentOffset.x);

    pag.currentPage = scro.contentOffset.x/self.view.frame.size.width;

}

// 定时器

-(void)aaa{

    [scro setContentOffset:CGPointMake(k * self.view.frame.size.width, 0)];

    k++;

    if(k> 2){

        k= 0;

    }

}

@end

two.m

#import "fiveViewController.h"

#import "SZViewController.h"

@interface fiveViewController ()<UITableViewDelegate,UITableViewDataSource>

{

    UITableView *tbv;

}

@end

@implementationfiveViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.

    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"aa"] style:UIBarButtonItemStylePlain target:self action:nil];

    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"bb"] style:UIBarButtonItemStylePlain target:self action:@selector(click)];


    tbv = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStylePlain];

    tbv.dataSource = self;

    tbv.delegate = self;

    [self.view addSubview:tbv];


}

- (void)click{

    [self.navigationController pushViewController:[SZViewController new] animated:YES];

}

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{

    return5;

}

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

    if(section==0) {

        return1;

    }elseif(section==1){

        return1;

    }elseif(section==2){

        return1;

    }elseif(section==3){

        return1;

    }else{

        return1;

    }

}

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{


    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"2"];

    if(!cell) {

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"2"];

    }

    if(indexPath.section==0) {

        tbv.rowHeight= 150;

        cell.backgroundColor = [UIColor redColor];


        UIView * uiv = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 150)];

        UIImageView * ima = [[UIImageView alloc]initWithFrame:CGRectMake(20, 40, 100, 100)];

        ima.image = [UIImage imageNamed:@"1"];

        ima.layer.masksToBounds= YES;

        ima.layer.cornerRadius= 50;

        [uivaddSubview:ima];

        [celladdSubview:uiv];


        UILabel*label = [[UILabelalloc]initWithFrame:CGRectMake(130, 90, 150, 50)];

        label.text=@"谎言";

        [celladdSubview:label];


        UILabel*label2 = [[UILabelalloc]initWithFrame:CGRectMake(280, 90, 150, 50)];

        label2.text=@"成长值2>";

        [celladdSubview:label2];

    }elseif(indexPath.section==1){

        tbv.rowHeight= 150;


        UILabel *label3 = [[UILabel alloc]initWithFrame:CGRectMake(20, 0, 150, 50)];

        label3.text=@"我的订单";

        [celladdSubview:label3];


        UILabel*label4 = [[UILabelalloc]initWithFrame:CGRectMake(250, 0, 200, 50)];

        label4.text=@"查看全部订单>";

        [celladdSubview:label4];


        UIImageView * ima5 = [[UIImageView alloc]initWithFrame:CGRectMake(28, 60, 50, 50)];

        ima5.image = [UIImage imageNamed:@"11"];

        ima5.layer.masksToBounds = YES;

        ima5.layer.cornerRadius= 25;

        [celladdSubview: ima5];


        UILabel * lab5 = [[UILabel alloc]initWithFrame:CGRectMake(30, 110, 60, 20)];

        lab5.text=@"当前订单";

        lab5.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab5];


        UIImageView * ima6 = [[UIImageView alloc]initWithFrame:CGRectMake(128, 60, 50, 50)];

        ima6.image = [UIImage imageNamed:@"11"];

        ima6.layer.masksToBounds = YES;

        ima6.layer.cornerRadius= 25;

        [celladdSubview: ima6];


        UILabel* lab6 = [[UILabelalloc]initWithFrame:CGRectMake(130, 110, 60, 20)];

        lab6.text=@"当前订单";

        lab6.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab6];


        UIImageView * ima7 = [[UIImageView alloc]initWithFrame:CGRectMake(228, 60, 50, 50)];

        ima7.image = [UIImage imageNamed:@"11"];

        ima7.layer.masksToBounds = YES;

        ima7.layer.cornerRadius= 25;

        [celladdSubview: ima7];


        UILabel* lab7 = [[UILabelalloc]initWithFrame:CGRectMake(230, 110, 60, 20)];

        lab7.text=@"当前订单";

        lab7.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab7];


        UIImageView * ima8 = [[UIImageView alloc]initWithFrame:CGRectMake(328, 60, 50, 50)];

        ima8.image = [UIImage imageNamed:@"11"];

        ima8.layer.masksToBounds = YES;

        ima8.layer.cornerRadius= 25;

        [celladdSubview: ima8];


        UILabel* lab8 = [[UILabelalloc]initWithFrame:CGRectMake(330, 110, 60, 20)];

        lab8.text=@"当前订单";

        lab8.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab8];


    }elseif(indexPath.section==2){


        tbv.rowHeight= 130;


        UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(10, 0, 150, 50)];

        label.text=@"我的钱包";

        [celladdSubview:label];


        UILabel*label2 = [[UILabelalloc]initWithFrame:CGRectMake(47, 50, 100, 50)];

        label2.text=@"0元";

        [celladdSubview:label2];


        UILabel*label3 = [[UILabelalloc]initWithFrame:CGRectMake(20, 80, 100, 50)];

        label3.text=@"可用余额";

        [celladdSubview:label3];


        UILabel*label4 = [[UILabelalloc]initWithFrame:CGRectMake(145, 50, 100, 50)];

        label4.text=@"0";

        [celladdSubview:label4];


        UILabel*label5 = [[UILabelalloc]initWithFrame:CGRectMake(134, 80, 100, 50)];

        label5.text=@"贝币";

        [celladdSubview:label5];


        UILabel*label6 = [[UILabelalloc]initWithFrame:CGRectMake(220, 50, 100, 50)];

        label6.text=@"0张";

        [celladdSubview:label6];


        UILabel*label7 = [[UILabelalloc]initWithFrame:CGRectMake(210, 80, 100, 50)];

        label7.text=@"优惠券";

        [celladdSubview:label7];


        UILabel*label8 = [[UILabelalloc]initWithFrame:CGRectMake(300, 50, 100, 50)];

        label8.text=@"0万元";

        [celladdSubview:label8];


        UILabel*label9 = [[UILabelalloc]initWithFrame:CGRectMake(290, 80, 100, 50)];

        label9.text=@"可借现金";

        [celladdSubview:label9];

    }elseif(indexPath.section==3){


        tbv.rowHeight= 200;


        UIImageView * ima = [[UIImageView alloc]initWithFrame:CGRectMake(20, 10, 50, 50)];

        ima.image = [UIImage imageNamed:@"11"];

        ima.layer.masksToBounds = YES;

        ima.layer.cornerRadius= 25;

        [celladdSubview: ima];


        UILabel * lab = [[UILabel alloc]initWithFrame:CGRectMake(24, 65, 60, 20)];

        lab.text=@"当前订单";

        lab.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab];


        UIImageView * ima2 = [[UIImageView alloc]initWithFrame:CGRectMake(120, 10, 50, 50)];

        ima2.image = [UIImage imageNamed:@"22"];

        ima2.layer.masksToBounds = YES;

        ima2.layer.cornerRadius= 25;

        [celladdSubview: ima2];


        UILabel * lab2 = [[UILabel alloc]initWithFrame:CGRectMake(124, 65, 60, 20)];

        lab2.text=@"代付款";

        lab2.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab2];


        UIImageView * ima3 = [[UIImageView alloc]initWithFrame:CGRectMake(220, 10, 50, 50)];

        ima3.image = [UIImage imageNamed:@"33"];

        ima3.layer.masksToBounds = YES;

        ima3.layer.cornerRadius= 25;

        [celladdSubview: ima3];


        UILabel * lab3 = [[UILabel alloc]initWithFrame:CGRectMake(224, 65, 60, 20)];

        lab3.text=@"当前订单";

        lab3.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab3];


        UIImageView * ima4 = [[UIImageView alloc]initWithFrame:CGRectMake(320, 10, 50, 50)];

        ima4.image = [UIImage imageNamed:@"44"];

        ima4.layer.masksToBounds = YES;

        ima4.layer.cornerRadius= 25;

        [celladdSubview: ima4];


        UILabel * lab4 = [[UILabel alloc]initWithFrame:CGRectMake(324, 65, 60, 20)];

        lab4.text=@"当前订单";

        lab4.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab4];


        UIImageView * ima5 = [[UIImageView alloc]initWithFrame:CGRectMake(20, 100, 50, 50)];

        ima5.image = [UIImage imageNamed:@"11"];

        ima5.layer.masksToBounds = YES;

        ima5.layer.cornerRadius= 25;

        [celladdSubview: ima5];


        UILabel * lab5 = [[UILabel alloc]initWithFrame:CGRectMake(24, 155, 60, 20)];

        lab5.text=@"当前订单";

        lab5.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab5];


        UIImageView * ima6 = [[UIImageView alloc]initWithFrame:CGRectMake(120, 100, 50, 50)];

        ima6.image = [UIImage imageNamed:@"22"];

        ima6.layer.masksToBounds = YES;

        ima6.layer.cornerRadius= 25;

        [celladdSubview: ima6];


        UILabel* lab6 = [[UILabelalloc]initWithFrame:CGRectMake(124, 155, 60, 20)];

        lab6.text=@"代付款";

        lab6.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab6];


        UIImageView * ima7 = [[UIImageView alloc]initWithFrame:CGRectMake(220, 100, 50, 50)];

        ima7.image = [UIImage imageNamed:@"33"];

        ima7.layer.masksToBounds = YES;

        ima7.layer.cornerRadius= 25;

        [celladdSubview: ima7];


        UILabel* lab7 = [[UILabelalloc]initWithFrame:CGRectMake(224, 155, 60, 20)];

        lab7.text=@"当前订单";

        lab7.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab7];


        UIImageView * ima8 = [[UIImageView alloc]initWithFrame:CGRectMake(320, 100, 50, 50)];

        ima8.image = [UIImage imageNamed:@"44"];

        ima8.layer.masksToBounds = YES;

        ima8.layer.cornerRadius= 25;

        [celladdSubview: ima8];


        UILabel* lab8 = [[UILabelalloc]initWithFrame:CGRectMake(324, 155, 60, 20)];

        lab8.text=@"当前订单";

        lab8.font = [UIFont systemFontOfSize:10];

        [celladdSubview:lab8];

    }

    returncell;


}

@end

#import "SZViewController.h"

@interface SZViewController ()<UITableViewDataSource,UITableViewDelegate>

{

    UITableView *tb;

}

@end

@implementationSZViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    self.title=@"设置";

    tb=[[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];

    tb.dataSource=self;

    tb.delegate=self;


    [self.view addSubview:tb];


}

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{


    return2;

}

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{


    if(section ==0) {

        return9;

    }

    else{

        return1;

    }

}

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{


    UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:@"2"];


    if(!cell) {

        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"2"];

    }


    if(indexPath.section==0) {

        tb.rowHeight=40;

        NSArray*arr;

        arr=[NSArray arrayWithObjects:@"个人资料",@"账户与安全",@"我的地址",@"意见反馈",@"账号与s设备安全",@"证件信息",@"推送通知",@"清除缓存",@"关于贝店", nil];

        cell.textLabel.text=arr[indexPath.row];


    }

    else{


        UILabel *lb =[[UILabel alloc]initWithFrame:CGRectMake((self.view.frame.size.width-80)/2, 0,80,40)];


        lb.text=@"退出登录";

        lb.textColor=[UIColor redColor];


        [celladdSubview:lb];


    }

    returncell;

}

@end

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容

  • 贫穷也好,富裕也好 懂得珍惜和爱护自己的人最好 在我上班的路上有一个卖早点的摊位,阿姨是个50多岁的中年妇女,每天...
    Tina的慢生活阅读 260评论 0 0
  • 春天来了,天高云淡,万物复苏,花红柳绿,带上家人,又是踏青好时节。记录下美好时刻,你可能会准备长枪短炮,却有无尽负...
    此木无为阅读 241评论 0 0
  • 每天自问: 1.今天留意时间怎么花掉的。 今天一直努力的工作,现在出图,画设备,越来越会思考了,这是这个好现象,一...
    20280f319b82阅读 229评论 0 0
  • 享受中午的休闲时光,无论身处何种环境,内心强大,便是安逸舒适
    亨姬妈阅读 122评论 0 1
  • 11.1啊泽 我将走向我的路。那些爱啊,曾让我看山是你,看水是你,看人间全是你,但我也要继续生活。于是那份巨大的,...
    方方不方呀阅读 119评论 0 0