美文网首页hybrid APP(ionic)Ionic3项目实战教程Ios@IONIC
ionic3项目实战教程 - 第4讲 ionic3商城首页设计(

ionic3项目实战教程 - 第4讲 ionic3商城首页设计(

作者: IonicBlog | 来源:发表于2017-08-20 12:03 被阅读5230次

    商城首页主要包含以下几个部分

    • 1.使用ion-slide实现首页幻灯片;
    • 2.使用ion-grid实现商品分类;
    • 3.使用ion-list实现商品列表;

    说一下实现思路

    • 1.先获取网络请求的数据,查看数据结构;
    • 2.根据数据结构来判断需要展示的数据,编写html;
    • 3.调整界面样式,编写scss;

    准备工作

    开始之前请到阿里开源图标库准备首页需要的小图标,不想自己找的同学,在文章最后的交流群的群文件里有导出好的资源小图标,下载后直接放到项目的src/assets/icon/目录中即可。
    并在index.html的header节点中导入资源图标库;

    index.html

      <link href="assets/icon/iconfont.css" rel="stylesheet">
    

    详细代码如下:

    home.ts

    import { AppService, AppGlobal } from './../../app/app.service';
    import { Component } from '@angular/core';
    import { NavController, IonicPage } from 'ionic-angular';
    
    @IonicPage()
    @Component({
      selector: 'page-home',
      templateUrl: 'home.html'
    })
    export class HomePage {
    
      slides: Array<any> = [];
      categories: Array<any> = [];
      products: Array<any> = [];
    
      spinner1: boolean = true;
    
      params = {
        favoritesId: 2054400,
        pageNo: 1,
        pageSize: 20
      }
    
      constructor(public appService: AppService, public navCtrl: NavController) {
        this.getSlides();
        this.getCategories();
        this.getProducts();
      }
      //获取幻灯片
      getSlides() {
        var params = {
          favoritesId: 2056439,
          pageNo: 1,
          pageSize: 5
        }
        this.appService.httpGet(AppGlobal.API.getProducts, params, rs => {
          console.debug(rs);
          this.slides = rs.data;
          this.spinner1 = false;
        })
      }
      //获取分类
      getCategories() {
        this.appService.httpGet(AppGlobal.API.getCategories, { appTag: 'dress' }, rs => {
          console.debug(rs);
          this.categories = rs.data;
        })
      }
      //获取首页推荐列表
      getProducts() {
        this.appService.httpGet(AppGlobal.API.getProducts, this.params, rs => {
          console.debug(rs);
          this.products = rs.data;
        })
      }
      //商品详情
      goDetails(item) {
        console.debug('go details...')
      }
    }
    
    

    home.html

    <ion-header>
      <ion-navbar color="primary">
        <ion-title>首页</ion-title>
      </ion-navbar>
    </ion-header>
    <ion-content>
    
      <ion-row *ngIf="spinner1">
        <ion-col text-center>
          <ion-spinner></ion-spinner>
        </ion-col>
      </ion-row>
    
      <ion-slides>
        <ion-slide *ngFor="let item of slides" (click)="goDetails(item)">
            < img src="{{item.PictUrl}}" alt="">
          <div class="cover"></div>
          <span class="title">{{item.Title}}</span>
        </ion-slide>
      </ion-slides>
    
    
      <div class="categories">
        <ion-grid>
          <ion-row wrap>
            <ion-col text-center tappable col-3 *ngFor="let c of categories" (click)="goProductList(c)">
              <i class="iconfont {{c.Icon}} icon"></i>
              <span class="title">{{c.FavoritesTitle}}</span>
            </ion-col>
          </ion-row>
        </ion-grid>
      </div>
    
      <ion-item-divider class="t-header" color="light"> 年会礼服2017年新款 </ion-item-divider>
      <div class="product">
        <ion-row wrap>
          <ion-col tappable col-6 *ngFor="let p of products" (click)="goDetails(p)">
            <img src="{{p.PictUrl}}" alt=""/>
            <p>{{p.Title}}</p>
            <div class="list-price buy">
              <span class="price-new"><i>¥</i>{{p.ZkFinalPrice}}</span>
              <i class="del">¥<span>{{p.ReservePrice}}</span></i>
            </div>
          </ion-col>
        </ion-row>
      </div>
    
    </ion-content>
    

    html.scss

    page-home {
      ion-slides {
        height: 30%;
        .cover {
          position: absolute;
          bottom: 0px;
          width: 100%;
          height: 20px;
          background: linear-gradient(to right, #673743, #f9537d);
          opacity: 0.6;
        }
        .title {
          position: absolute;
          bottom: 0px;
          width: 90%;
          height: 20px;
          line-height: 20px;
          font-size: 60%;
          left: 5px;
          text-align: center;
          color: white;
        }
      }
      .categories {
        .title {
          font-family: "黑体-简";
          font-weight: 300;
          color: #808080;
          font-size: 80%;
          display: block;
          margin-top: 5px;
        }
        ion-row {
          background-color: #efefef;
          padding: 0px;
        }
        ion-col {
          background-color: white;
          /*border: 1px solid #efefef;*/
        }
      }
      .icon {
        border-radius: 100px;
        color: white;
        background-color: #f8285c;
        font-size: 36px !important;
        padding: 5px;
      }
      .c1 {
        background-color: orangered;
      }
      .c2 {
        background-color: blueviolet;
      }
      .c3 {
        background-color: sandybrown;
      }
      .c4 {
        background-color: slateblue;
      }
      .c5 {
        background-color: orange;
      }
      .c6 {
        background-color: dimgray;
      }
      .t-header {
        font-family: "黑体-简";
        font-weight: 300;
        color: #f8285c;
        border-left: 2px solid #f8285c;
        border-top: 5px solid #efefef;
        background: white;
      }
      .stores {
        .title {
          font-family: "黑体-简";
          font-weight: 300;
          color: #808080;
          font-size: 80%;
          display: block;
          margin-top: 5px;
        }
        ion-row {
          background-color: #efefef;
          padding: 0px;
        }
        ion-col {
          background-color: white;
          border: 1px solid #efefef;
        }
      }
      .product {
        ion-row {
          background-color: #efefef;
          font-family: "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
          padding-top: 3px;
          ion-col {
            position: relative;
            background-color: white;
            border: 2px solid #efefef;
            border-radius: 2px;
            padding: 0px;
            p {
              margin: 0px;
              padding: 0px;
              width: 100%;
              font-size: 12px;
              font-family: "黑体-简";
              font-weight: 300;
              color: #808080;
              height: 26px;
              line-height: 26px;
              background: rgba(255, 255, 255, 0.8);
              overflow: hidden;
              text-indent: 5px;
            }
          }
        }
        .list-price {
          width: 98%;
          height: 26px;
          line-height: 18px;
          position: relative;
          bottom: 0;
          margin: 0 2%;
        }
        .price-new {
          font-size: 18px;
          color: #f8285c;
        }
        .list-price i {
          font-style: normal;
          font-size: 12px;
        }
        .del {
          color: rgba(171, 171, 171, 1);
          text-decoration: line-through;
          margin-left: 2px;
        }
        .good-btn {
          display: block;
          position: absolute;
          height: 16px;
          line-height: 12px;
          color: #f8285c;
          font-size: 13px;
          font-family: "黑体-简";
          text-align: right;
          top: 5px;
          right: 2px;
        }
        .quan_img {
          position: absolute;
          width: 61px;
          height: 55px;
          z-index: 5;
          right: 0;
          top: 0;
          cursor: pointer;
          background: url(/assets/img/quan.png) no-repeat;
          background-size: contain;
          color: #fff;
        }
        .quan_img .num_money {
          font-family: Arial;
          font-size: 18px;
          height: 40px;
          left: 9px;
          position: absolute;
          text-align: center;
          top: 14px;
          width: 40px;
        }
      }
    }
    
    

    效果图

    4-1.png

    下一讲将讲解�在ionic3中如何设计透明导航栏。

    完!

    相关文章

      网友评论

      • Demonskp:哪位好心人能帮我看下这个嘛?

        <li *ngfor="let x of list">{{x}}</li>
        显示错误:
        [Angular] Property binding ngforOf not used by any directive on an embedded template. Make sure that the property name is spelled correctly and all directives are listed in the "@NgModule.declarations".
        [Angular] Can't bind to 'ngforOf' since it isn't a known property of 'li'.
        Demonskp:已经知道答案了。
        由于是在组件模块当中写的这个。所以需要在Components.Module.ts 当中导入
        import { ActionsheetComponent } from './actionsheet/actionsheet';

        imports: [BrowserModule],
      • 骑着蜗牛追流星:<ion-navbar color="primary">
        <ion-title text-center>首页</ion-title>
        </ion-navbar>

        但是我的nav背景色 是蓝色
      • b52667d6221d:博主,您的API好像访问不了啦。后面进行不下去了:grin:
        IonicBlog:@裁剪时光 没gg,过两天就好了
        c98858128d5c:一样呀,API超时:sweat:
      • 04628f7617b8:跨域问题怎么解决的
      • dml1874:为什么内容不显示呢?只有spinner1和ion-item-divider这两个显示,感觉是因为没有请求到数据,app.service.ts是拷贝的,其他文件是手敲的
        IonicBlog:@dml1874 搜索下chrome网络调试
        dml1874:@IonicBlog console没有报错,network是否请求到数据这个怎么判断?
        IonicBlog:1.看下console有没有报错信息;
        2.看下network有没有请求到数据;
        3.如果以上两个都正常,检查下css是否复制到正确;
      • dml1874:谁有案例的图片吗,不是图标,可以给我发一下吗?
        dml1874:@IonicBlog 有wechat插件,install project dependencies失败了
        dml1874:@IonicBlog 多谢:+1:
        IonicBlog:https://github.com/ionicblog/ionic3-dress
      • zbcfly:不错,正在学习
        IonicBlog:@zbcfly 明天有新的项目开源,敬请期待
      • ClearLoveSmart:图片显示不了,显示的好像是路径。
        50493965a894:@IonicBlog 谢谢博主,我是写java后台的,目前要做一个app,看了楼主的教程,受益颇大!谢谢!
        IonicBlog:@曹亚男cyn 正解 :+1:
        50493965a894:兄弟肯定是直接复制的对吧?哈哈
        首先,上方的轮播图的话,< img src="...,把<和img之间的空格去掉就正常显示了,
        七次,商品列表图片的话,源码中给的是![]({{p.PictUrl}}),换成<img src="{{p.PictUrl}}" alt="">就可以正常显示了,
      • dml1874:可以给我发一下源码吗?看看你是怎么调整样式的,我自己看的官方文档,调整框架自带的样式老是有问题
        IonicBlog:项目已开源,github搜索ionic3-dress
      • 你看Ta好像条狗啊:Get https://tlimama.tongedev.cn./api/ionic3/getCategories?appTag=dress 不到就很尴尬,是我哪里错了么。其他都能get到
        IonicBlog:@你看Ta好像条狗啊 cn后面没有点
      • e133f290eb95:在home.ts文件中缺少方法goProductList的实现,这方法在home.html中是存在的。
        请问能给出项目源码吗?
        IonicBlog:@纸飞机2017 搜索IonicBlog
        e133f290eb95:能给出这个项目源码在github上的地址吗?
        IonicBlog:@纸飞机2017 错误的地方先注释掉,教程继续往下看,goProductList的实现在第7讲。
      • 亮007:图片资源没有,,,,
        7cf8c8a251e9:图片资源请求不到,不知到是不是地址打不开了
        亮007:@IonicBlog :+1: 谢谢
        IonicBlog:@亮007 链接:http://pan.baidu.com/s/1hs5VOX2 密码:taoh
      • 20d8abcce1dd:按照楼主的代码一行行敲的,报错了 提示“ERROR Error: Uncaught (in promise): Error: No provider for AppService!”
        IonicBlog:@1994_22c9 将providers里的Http改成HttpModule
        IonicBlog:app.module.ts
        providers:[AppService,]
      • moocsk:请问图标资源在哪?
        IonicBlog:@向蛮子 已修复
        1bc8fa44d092:其他都正常,就是分类的小图标显示不了,显示的是红色的竖长条,没报错,也不知道什么原因,已经按上面的链接下载了百度盘里面的图标资源
        IonicBlog:链接:http://pan.baidu.com/s/1hs5VOX2 密码:taoh
      • pandaxyh:IT IS OK.
        IonicBlog:@向蛮子 是数据问题,现已修复,谢谢
        1bc8fa44d092:中间的小图标显示不正常,都是一个红色的长条,请问这个是什么原因,也没有报错

      本文标题:ionic3项目实战教程 - 第4讲 ionic3商城首页设计(

      本文链接:https://www.haomeiwen.com/subject/ziwtdxtx.html