202226701016 4 months ago
parent
commit
b524a4d99b

+ 9 - 3
src/app/app-routing.module.ts

@@ -2,10 +2,16 @@ import { NgModule } from '@angular/core';
 import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
 
 const routes: Routes = [
+  { path: '', redirectTo: 'home', pathMatch: 'full' },
+  { path: 'home', loadChildren: () => import('./home/home.module').then(m => m.HomeModule) },
+  { path: 'merchant', loadChildren: () => import('./merchant/merchant.module').then(m => m.MerchantModule) },
+  { path: 'discover', loadChildren: () => import('./discover/discover.module').then(m => m.DiscoverModule) },
+  { path: 'chat', loadChildren: () => import('./chat/chat.module').then(m => m.ChatModule) },
+  { path: 'profile', loadChildren: () => import('./profile/profile.module').then(m => m.ProfileModule) },
   {
-    path: '',
-    loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule)
-  }
+    path: 'homeionic',
+    loadChildren: () => import('./homeionic/homeionic.module').then(m => m.HomeionicPageModule)
+  },
 ];
 @NgModule({
   imports: [

+ 32 - 0
src/app/app.component.html

@@ -1,3 +1,35 @@
 <ion-app>
   <ion-router-outlet></ion-router-outlet>
+  <ion-tabs>
+
+    <ion-tab-bar slot="bottom">
+      
+      <ion-tab-button tab="home">
+        <ion-icon name="home-outline"></ion-icon>
+        <ion-label>首页</ion-label>
+      </ion-tab-button>
+
+      <ion-tab-button tab="merchant">
+        <ion-icon name="storefront-outline"></ion-icon>
+        <ion-label>商家</ion-label>
+      </ion-tab-button>
+
+      <ion-tab-button tab="discover">
+        <ion-icon name="compass-outline"></ion-icon>
+        <ion-label>发现</ion-label>
+      </ion-tab-button>
+
+      <ion-tab-button tab="chat">
+        <ion-icon name="chatbubble-outline"></ion-icon>
+        <ion-label>聊天</ion-label>
+      </ion-tab-button>
+
+      <ion-tab-button tab="profile">
+        <ion-icon name="person-outline"></ion-icon>
+        <ion-label>我的</ion-label>
+      </ion-tab-button>
+
+    </ion-tab-bar>
+
+  </ion-tabs>
 </ion-app>

+ 12 - 0
src/app/chat/chat.module.ts

@@ -0,0 +1,12 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+
+
+@NgModule({
+  declarations: [],
+  imports: [
+    CommonModule
+  ]
+})
+export class ChatModule { }

+ 12 - 0
src/app/discover/discover.module.ts

@@ -0,0 +1,12 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+
+
+@NgModule({
+  declarations: [],
+  imports: [
+    CommonModule
+  ]
+})
+export class DiscoverModule { }

+ 16 - 0
src/app/home/home-routing.module.ts

@@ -0,0 +1,16 @@
+import { NgModule } from '@angular/core';
+import { RouterModule, Routes } from '@angular/router';
+import { HomePage } from './home.page';
+
+const routes: Routes = [
+  {
+    path: '',
+    component: HomePage
+  }
+];
+
+@NgModule({
+  imports: [RouterModule.forChild(routes)],
+  exports: [RouterModule],
+})
+export class HomePageRoutingModule {} 

+ 18 - 0
src/app/home/home.module.ts

@@ -0,0 +1,18 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { FormsModule } from '@angular/forms';
+import { IonicModule } from '@ionic/angular';
+
+import { HomePageRoutingModule } from './home-routing.module';
+import { HomePage } from './home.page';
+
+@NgModule({
+  imports: [
+    CommonModule,
+    FormsModule,
+    IonicModule,
+    HomePageRoutingModule
+  ],
+  declarations: [HomePage]
+})
+export class HomeModule {}

+ 35 - 0
src/app/home/home.page.html

@@ -0,0 +1,35 @@
+<ion-header>
+  <ion-toolbar>
+    <ion-title>一行商城</ion-title>
+  </ion-toolbar>
+</ion-header>
+
+<ion-content>
+  <ion-grid>
+    <ion-row>
+      <ion-col size="3">
+        <ion-avatar>
+          <img src="assets/avatar.png" alt="用户头像">
+        </ion-avatar>
+      </ion-col>
+      <ion-col size="9">
+        <ion-text>
+          <h2>登录</h2>
+        </ion-text>
+      </ion-col>
+    </ion-row>
+
+    <ion-row>
+      <ion-col>
+        <ion-card>
+          <ion-card-header>
+            <ion-card-title>新活动</ion-card-title>
+          </ion-card-header>
+          <ion-card-content>
+            十分钟玩转平台
+          </ion-card-content>
+        </ion-card>
+      </ion-col>
+    </ion-row>
+  </ion-grid>
+</ion-content> 

+ 25 - 0
src/app/home/home.page.scss

@@ -0,0 +1,25 @@
+ion-avatar {
+  width: 60px;
+  height: 60px;
+  margin: 10px;
+}
+
+ion-text h2 {
+  margin-top: 20px;
+  font-size: 1.2em;
+  color: #333;
+}
+
+ion-card {
+  margin-top: 20px;
+}
+
+ion-card-title {
+  font-size: 1.4em;
+  color: #3880ff;
+}
+
+ion-card-content {
+  font-size: 1em;
+  color: #666;
+} 

+ 41 - 0
src/app/home/home.page.ts

@@ -0,0 +1,41 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-home',
+  templateUrl: './home.page.html',
+  styleUrls: ['./home.page.scss'],
+})
+export class HomePage implements OnInit {
+
+  user = {
+    avatar: 'assets/avatar.png',
+    name: '登录'
+  };
+
+  activities = [
+    {
+      title: '新活动',
+      description: '1小时玩转平台宝典'
+    }
+  ];
+
+  kingKongItems = [
+    { icon: 'storefront-outline', name: '我的供应' },
+    { icon: 'videocam-outline', name: '我的视频' },
+    { icon: 'business-outline', name: '我的店铺' },
+    { icon: 'clipboard-outline', name: '订单管理' },
+    { icon: 'people-outline', name: '采购商在线' },
+    { icon: 'globe-outline', name: '全国行情' },
+    { icon: 'megaphone-outline', name: '推广中心' },
+    { icon: 'eye-outline', name: '市场实况' },
+    { icon: 'cart-outline', name: '有货代卖' },
+    { icon: 'create-outline', name: '需求发布' }
+  ];
+
+  constructor() { }
+
+  ngOnInit() {
+    // 模拟数据可以在这里初始化
+  }
+
+} 

+ 17 - 0
src/app/homeionic/homeionic-routing.module.ts

@@ -0,0 +1,17 @@
+import { NgModule } from '@angular/core';
+import { Routes, RouterModule } from '@angular/router';
+
+import { HomeionicPage } from './homeionic.page';
+
+const routes: Routes = [
+  {
+    path: '',
+    component: HomeionicPage
+  }
+];
+
+@NgModule({
+  imports: [RouterModule.forChild(routes)],
+  exports: [RouterModule],
+})
+export class HomeionicPageRoutingModule {}

+ 20 - 0
src/app/homeionic/homeionic.module.ts

@@ -0,0 +1,20 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { FormsModule } from '@angular/forms';
+
+import { IonicModule } from '@ionic/angular';
+
+import { HomeionicPageRoutingModule } from './homeionic-routing.module';
+
+import { HomeionicPage } from './homeionic.page';
+
+@NgModule({
+  imports: [
+    CommonModule,
+    FormsModule,
+    IonicModule,
+    HomeionicPageRoutingModule
+  ],
+  declarations: [HomeionicPage]
+})
+export class HomeionicPageModule {}

+ 13 - 0
src/app/homeionic/homeionic.page.html

@@ -0,0 +1,13 @@
+<ion-header [translucent]="true">
+  <ion-toolbar>
+    <ion-title>homeionic</ion-title>
+  </ion-toolbar>
+</ion-header>
+
+<ion-content [fullscreen]="true">
+  <ion-header collapse="condense">
+    <ion-toolbar>
+      <ion-title size="large">homeionic</ion-title>
+    </ion-toolbar>
+  </ion-header>
+</ion-content>

+ 0 - 0
src/app/homeionic/homeionic.page.scss


+ 17 - 0
src/app/homeionic/homeionic.page.spec.ts

@@ -0,0 +1,17 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+import { HomeionicPage } from './homeionic.page';
+
+describe('HomeionicPage', () => {
+  let component: HomeionicPage;
+  let fixture: ComponentFixture<HomeionicPage>;
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(HomeionicPage);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 15 - 0
src/app/homeionic/homeionic.page.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-homeionic',
+  templateUrl: './homeionic.page.html',
+  styleUrls: ['./homeionic.page.scss'],
+})
+export class HomeionicPage implements OnInit {
+
+  constructor() { }
+
+  ngOnInit() {
+  }
+
+}

+ 12 - 0
src/app/merchant/merchant.module.ts

@@ -0,0 +1,12 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+
+
+@NgModule({
+  declarations: [],
+  imports: [
+    CommonModule
+  ]
+})
+export class MerchantModule { }

+ 12 - 0
src/app/profile/profile.module.ts

@@ -0,0 +1,12 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+
+
+@NgModule({
+  declarations: [],
+  imports: [
+    CommonModule
+  ]
+})
+export class ProfileModule { }

+ 115 - 11
src/app/tab1/tab1.page.html

@@ -1,17 +1,121 @@
-<ion-header [translucent]="true">
+<ion-header>
   <ion-toolbar>
-    <ion-title>
-      Tab 1
-    </ion-title>
+    <ion-title>助农产品销售商城</ion-title>
   </ion-toolbar>
 </ion-header>
 
-<ion-content [fullscreen]="true">
-  <ion-header collapse="condense">
-    <ion-toolbar>
-      <ion-title size="large">Tab 1</ion-title>
-    </ion-toolbar>
-  </ion-header>
+<ion-content>
+  <ion-grid>
+    <!-- 顶部用户信息 -->
+    <ion-row>
+      <ion-col size="3">
+        <ion-avatar>
+          <img src="assets/avatar.png" alt="用户头像">
+        </ion-avatar>
+      </ion-col>
+      <ion-col size="6">
+        <ion-text>
+          <h2>登录</h2>
+        </ion-text>
+      </ion-col>
+      <ion-col size="3" class="text-right">
+        <ion-button fill="clear" size="small">
+          <ion-icon name="gift-outline"></ion-icon>
+          买货
+          <ion-icon name="chevron-forward-outline"></ion-icon>
+        </ion-button>
+      </ion-col>
+    </ion-row>
 
-  <app-explore-container name="Tab 1 page"></app-explore-container>
+    <!-- 活动横幅 -->
+    <ion-card class="activity-banner">
+      <ion-card-header>
+        <ion-card-title>领取卖货福利红包,开启卖货之旅</ion-card-title>
+      </ion-card-header>
+      <ion-card-content>
+        <ion-grid>
+          <ion-row>
+            <ion-col size="8">
+              <ion-avatar-group>
+                <ion-avatar>
+                  <img src="assets/avatar1.png" alt="用户头像1">
+                </ion-avatar>
+                <ion-avatar>
+                  <img src="assets/avatar2.png" alt="用户头像2">
+                </ion-avatar>
+                <ion-avatar>
+                  <img src="assets/avatar3.png" alt="用户头像3">
+                </ion-avatar>
+              </ion-avatar-group>
+              <p>20名采购商正在等你联系</p>
+            </ion-col>
+            <ion-col size="4" class="text-right">
+              <ion-button color="primary">免费发布</ion-button>
+            </ion-col>
+          </ion-row>
+        </ion-grid>
+      </ion-card-content>
+    </ion-card>
+
+    <!-- 推荐客户区域 -->
+    <ion-row>
+      <ion-col>
+        <ion-text>
+          <h3>推荐客户</h3>
+          <p class="small-text">每天早8点/晚6点更新</p>
+        </ion-text>
+      </ion-col>
+    </ion-row>
+    <ion-row>
+      <ion-col>
+        <ion-slides pager="true">
+          <ion-slide>
+            <ion-card>
+              <ion-card-header>
+                <ion-badge color="secondary">对家采购商</ion-badge>
+                <ion-card-title>新商机</ion-card-title>
+              </ion-card-header>
+              <ion-card-content>
+                <p>在线询价</p>
+                <p class="small-text">采购西瓜</p>
+              </ion-card-content>
+            </ion-card>
+          </ion-slide>
+          <!-- 其他卡片 -->
+        </ion-slides>
+      </ion-col>
+    </ion-row>
+
+    <!-- 金刚区 -->
+    <ion-row>
+      <ion-col>
+        <ion-grid>
+          <ion-row>
+            <ion-col *ngFor="let item of kingKongItems">
+              <ion-button fill="clear">
+                <ion-badge color="danger" slot="end">1</ion-badge>
+                <ion-icon [name]="item.icon" size="large"></ion-icon>
+                <p>{{ item.name }}</p>
+              </ion-button>
+            </ion-col>
+          </ion-row>
+        </ion-grid>
+      </ion-col>
+    </ion-row>
+
+    <!-- 轮播图区域 -->
+    <ion-slides pager="true">
+      <ion-slide>
+        <img src="assets/promo1.png" alt="促销海报1">
+      </ion-slide>
+      <!-- 其他海报 -->
+    </ion-slides>
+
+    <!-- 浮动发布按钮 -->
+    <ion-fab vertical="bottom" horizontal="end" slot="fixed">
+      <ion-fab-button>
+        <ion-icon name="add"></ion-icon>
+      </ion-fab-button>
+    </ion-fab>
+  </ion-grid>
 </ion-content>

+ 27 - 0
src/app/tab1/tab1.page.scss

@@ -0,0 +1,27 @@
+ion-avatar {
+  width: 60px;
+  height: 60px;
+  margin: 10px;
+}
+
+.text-right {
+  text-align: right;
+}
+
+.activity-banner {
+  background: url('assets/banner-bg.png') no-repeat center/cover;
+  color: #fff;
+}
+
+.small-text {
+  font-size: 0.8em;
+  color: #888;
+}
+
+ion-badge {
+  margin-right: 5px;
+}
+
+ion-fab {
+  margin-bottom: 20px;
+}

+ 34 - 5
src/app/tab1/tab1.page.ts

@@ -1,12 +1,41 @@
-import { Component } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
 
 @Component({
   selector: 'app-tab1',
-  templateUrl: 'tab1.page.html',
-  styleUrls: ['tab1.page.scss']
+  templateUrl: './tab1.page.html',
+  styleUrls: ['./tab1.page.scss'],
 })
-export class Tab1Page {
+export class Tab1Page implements OnInit {
 
-  constructor() {}
+  user = {
+    avatar: 'assets/avatar.png',
+    name: '登录'
+  };
+
+  activities = [
+    {
+      title: '新活动',
+      description: '1小时玩转平台宝典'
+    }
+  ];
+
+  kingKongItems = [
+    { icon: 'storefront-outline', name: '我的供应' },
+    { icon: 'videocam-outline', name: '我的视频' },
+    { icon: 'business-outline', name: '我的店铺' },
+    { icon: 'clipboard-outline', name: '订单管理' },
+    { icon: 'people-outline', name: '采购商在线' },
+    { icon: 'globe-outline', name: '全国行情' },
+    { icon: 'megaphone-outline', name: '推广中心' },
+    { icon: 'eye-outline', name: '市场实况' },
+    { icon: 'cart-outline', name: '有货代卖' },
+    { icon: 'create-outline', name: '需求发布' }
+  ];
+
+  constructor() { }
+
+  ngOnInit() {
+    // 模拟数据可以在这里初始化
+  }
 
 }