diff --git a/src/permission.js b/src/permission.js
index 7f070fe0..310a82b2 100644
--- a/src/permission.js
+++ b/src/permission.js
@@ -30,6 +30,23 @@ const whiteList = [
'/attestationDetail',
'/noticeDetail',
'/homestead/login',
+ '/onlineHomeLogin',
+ '/onlineHomeIndex',
+ '/onlineHome/publicity',
+ '/onlineHome/workbench',
+ '/onlineHome/home',
+ '/onlineHome/my',
+ '/onlineHome/threeAffairs',
+ '/onlineHome/homePoll',
+ '/onlineHome/incomeDetail',
+ '/onlineHome/inAndOutDetail',
+ '/onlineHome/expenditureDetail',
+ '/onlineHome/mailList',
+ '/onlineHome/password',
+ '/onlineHome/livePay',
+ '/onlineHome/advice',
+ '/onlineHome/done',
+ '/onlineHome/personalPicture',
]
diff --git a/src/router/index.js b/src/router/index.js
index 2d76982b..f7a21831 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -381,9 +381,161 @@ export const constantRoutes = [
hidden: true,
},
component: (resolve) => require(['@/views/authenticRight/login'], resolve)
+ },
+ {
+ path: '/onlineHomeLogin',
+ name: 'onlineHomeLogin',
+ meta: {
+ title: '登录页',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHomeLogin'], resolve)
+ },
+ {
+ path: '/onlineHomeIndex',
+ name: 'onlineHomeIndex',
+ meta: {
+ title: '网上家园',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHomeIndex'], resolve)
+ },
+ {
+ path: '/onlineHome/publicity',
+ name: 'onlineHomePublicity',
+ meta: {
+ title: '公示',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/publicity'], resolve)
+ },
+ {
+ path: '/onlineHome/workbench',
+ name: 'onlineHomeWorkbench',
+ meta: {
+ title: '公示',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/workbench'], resolve)
+ },
+ {
+ path: '/onlineHome/home',
+ name: 'onlineHomeHome',
+ meta: {
+ title: '公示',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/home'], resolve)
+ },
+ {
+ path: '/onlineHome/my',
+ name: 'onlineHomeMy',
+ meta: {
+ title: '公示',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/my'], resolve)
+ },
+ {
+ path: '/onlineHome/threeAffairs',
+ name: 'onlineHomeThreeAffairs',
+ meta: {
+ title: '三务公开',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/threeAffairs'], resolve)
+ },
+ {
+ path: '/onlineHome/homePoll',
+ name: 'onlineHomeHomePoll',
+ meta: {
+ title: '投票',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/homePoll'], resolve)
+ },
+ {
+ path: '/onlineHome/incomeDetail',
+ name: 'onlineHomeIncomeDetail',
+ meta: {
+ title: '收入明细公开表',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/incomeDetail'], resolve)
+ },
+ {
+ path: '/onlineHome/expenditureDetail',
+ name: 'onlineHomeExpenditureDetail',
+ meta: {
+ title: '支出明细公开表',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/expenditureDetail'], resolve)
+ },
+ {
+ path: '/onlineHome/inAndOutDetail',
+ name: 'onlineHomeInAndOutDetail',
+ meta: {
+ title: '收支明细公开表',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/inAndOutDetail'], resolve)
+ },
+ {
+ path: '/onlineHome/mailList',
+ name: 'onlineHomeMailList',
+ meta: {
+ title: '通讯录',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/mailList'], resolve)
+ }
+ ,
+ {
+ path: '/onlineHome/password',
+ name: 'onlineHomePassword',
+ meta: {
+ title: '密码修改',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/password'], resolve)
+ },
+ {
+ path: '/onlineHome/livePay',
+ name: 'onlineHomeLivePay',
+ meta: {
+ title: '生活缴费',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/livePay'], resolve)
+ },
+ {
+ path: '/onlineHome/personalPicture',
+ name: 'onlineHomePersonalPicture',
+ meta: {
+ title: '画像',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/personalPicture'], resolve)
+ },
+ {
+ path: '/onlineHome/done',
+ name: 'onlineHomeDone',
+ meta: {
+ title: '我的已办',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/done'], resolve)
+ },
+ {
+ path: '/onlineHome/advice',
+ name: 'onlineHomeAdvice',
+ meta: {
+ title: '投诉建议',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/onlineHome/advice'], resolve)
}
-
-
];
diff --git a/src/views/index.vue b/src/views/index.vue
index fdebffe0..3d3b48c0 100644
--- a/src/views/index.vue
+++ b/src/views/index.vue
@@ -38,10 +38,10 @@
个人供求
-
+
新闻咨询
diff --git a/src/views/onlineHome/advice.vue b/src/views/onlineHome/advice.vue
new file mode 100644
index 00000000..99fd5dfc
--- /dev/null
+++ b/src/views/onlineHome/advice.vue
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+ 类型:
+
+
+
+ 投诉
+ 建议
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提交
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/done.vue b/src/views/onlineHome/done.vue
new file mode 100644
index 00000000..4783a1ce
--- /dev/null
+++ b/src/views/onlineHome/done.vue
@@ -0,0 +1,292 @@
+
+
+
+
+
+
+
+
+
+ 刘权泽提交的宅基地申请
+
+
+
+
+
+
+ 申请:张村镇东夼村87号宅基地
+
+
+ 审批通过
+
+
+
+
+
+
+
+
+ 2021-08-06
+
+
+ 来自宅基地改革管理
+
+
+
+
+
+
+
+
+
+
+
+ 刘权泽提交的宅基地申请
+
+
+
+
+
+
+ 申请:张村镇东夼村87号宅基地
+
+
+ 审批通过
+
+
+
+
+
+
+
+
+ 2021-08-06
+
+
+ 来自宅基地改革管理
+
+
+
+
+
+
+
+
+
+
+
+ 刘权泽提交的宅基地申请
+
+
+
+
+
+
+ 申请:张村镇东夼村87号宅基地
+
+
+ 审批通过
+
+
+
+
+
+
+
+
+ 2021-08-06
+
+
+ 来自宅基地改革管理
+
+
+
+
+
+
+
+
+
+
+
+ 刘权泽提交的宅基地申请
+
+
+
+
+
+
+ 申请:张村镇东夼村87号宅基地
+
+
+ 审批通过
+
+
+
+
+
+
+
+
+ 2021-08-06
+
+
+ 来自宅基地改革管理
+
+
+
+
+
+
+
+
+
+
+ 刘权泽提交的宅基地申请
+
+
+
+
+
+
+ 申请:张村镇东夼村87号宅基地
+
+
+ 审批通过
+
+
+
+
+
+
+
+
+ 2021-08-06
+
+
+ 来自宅基地改革管理
+
+
+
+
+
+
+
+
+
+
+
+ 刘权泽提交的宅基地申请
+
+
+
+
+
+
+ 申请:张村镇东夼村87号宅基地
+
+
+ 审批通过
+
+
+
+
+
+
+
+
+ 2021-08-06
+
+
+ 来自宅基地改革管理
+
+
+
+
+
+
+
+
+
+
+
+ 刘权泽提交的宅基地申请
+
+
+
+
+
+
+ 申请:张村镇东夼村87号宅基地
+
+
+ 审批通过
+
+
+
+
+
+
+
+
+ 2021-08-06
+
+
+ 来自宅基地改革管理
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/expenditureDetail.vue b/src/views/onlineHome/expenditureDetail.vue
new file mode 100644
index 00000000..c7dca62d
--- /dev/null
+++ b/src/views/onlineHome/expenditureDetail.vue
@@ -0,0 +1,215 @@
+
+
+
+
+
+ 北行庄村账套
+
+
+  日期选择
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/home.vue b/src/views/onlineHome/home.vue
new file mode 100644
index 00000000..fbcf297d
--- /dev/null
+++ b/src/views/onlineHome/home.vue
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/homePoll.vue b/src/views/onlineHome/homePoll.vue
new file mode 100644
index 00000000..9621c5f2
--- /dev/null
+++ b/src/views/onlineHome/homePoll.vue
@@ -0,0 +1,171 @@
+
+
+
+
+
+
+
+
+
+ 活动主题活动主题活动主题活动主题
+
+
+
+
+ 活动描述活动描述活动描述
+
+
+
+
+
+
+ 实名
+
+ 单选
+
+ 多选
+
+
+
+ 3人已参与
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 57票 87%
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 57票 87%
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 57票 87%
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 57票 87%
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/inAndOutDetail.vue b/src/views/onlineHome/inAndOutDetail.vue
new file mode 100644
index 00000000..c3362702
--- /dev/null
+++ b/src/views/onlineHome/inAndOutDetail.vue
@@ -0,0 +1,227 @@
+
+
+
+
+
+ 北行庄村账套
+
+
+  日期选择
+
+
+
+
+
+ 157
+
+
+
+
+ 池塘租赁收租
+
+
+ 180.00
+
+
+
+
+
+
+ 经营收入
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 除草修路费
+
+
+ -180.00
+
+
+
+
+
+
+ 经营支出
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/incomeDetail.vue b/src/views/onlineHome/incomeDetail.vue
new file mode 100644
index 00000000..727c1370
--- /dev/null
+++ b/src/views/onlineHome/incomeDetail.vue
@@ -0,0 +1,227 @@
+
+
+
+
+
+ 北行庄村账套
+
+
+  日期选择
+
+
+
+
+
+ 157
+
+
+
+
+ 池塘租赁收租
+
+
+ 200
+
+
+
+
+
+
+ 经营收入
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 池塘租赁收租
+
+
+ 200
+
+
+
+
+
+
+ 经营收入
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 池塘租赁收租
+
+
+ 200
+
+
+
+
+
+
+ 经营收入
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 池塘租赁收租
+
+
+ 200
+
+
+
+
+
+
+ 经营收入
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 池塘租赁收租
+
+
+ 200
+
+
+
+
+
+
+ 经营收入
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+ 池塘租赁收租
+
+
+ 200
+
+
+
+
+
+
+ 经营收入
+
+
+ 记27
+
+
+ 2021-08-06
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/livePay.vue b/src/views/onlineHome/livePay.vue
new file mode 100644
index 00000000..1bb0e986
--- /dev/null
+++ b/src/views/onlineHome/livePay.vue
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+ 缴费类型
+
+
+
+
+
+
+
+
+ 水费
+
+
+
+
+
+
+
+
+ 电费
+
+
+
+
+
+
+
+
+ 燃气费
+
+
+
+
+
+
+
+
+ 物业费
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/mailList.vue b/src/views/onlineHome/mailList.vue
new file mode 100644
index 00000000..1d8281ee
--- /dev/null
+++ b/src/views/onlineHome/mailList.vue
@@ -0,0 +1,84 @@
+
+
+
+
+
+ 张村村民联系方式
+
+
+
+
+
+ {{item.name.substring(item.name.length-2)}}
+
+
+
+
+ {{item.name}}
+
+
+ {{item.phone}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/my.vue b/src/views/onlineHome/my.vue
new file mode 100644
index 00000000..2617dcaf
--- /dev/null
+++ b/src/views/onlineHome/my.vue
@@ -0,0 +1,106 @@
+
+
+
+
+
+ 刘泽权
+
+
+ 环翠区张村镇柳沟村
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/password.vue b/src/views/onlineHome/password.vue
new file mode 100644
index 00000000..6dfbdebd
--- /dev/null
+++ b/src/views/onlineHome/password.vue
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+ 原密码
+
+
+
+
+
+
+
+ 新密码
+
+
+
+
+ 完成
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/personalPicture.vue b/src/views/onlineHome/personalPicture.vue
new file mode 100644
index 00000000..161b403b
--- /dev/null
+++ b/src/views/onlineHome/personalPicture.vue
@@ -0,0 +1,119 @@
+
+
+
+
+
+
+
+
+ 基本信息
+
+
+
+
+ 刘泽权
+
+
+ 张村镇东夼村
+
+
+
+
+ 年龄:23
+
+
+ 民族:汉族
+
+
+
+
+ 性别:男
+
+
+ 学历:本科
+
+
+
+
+ 电话:13306311234
+
+
+
+
+ 身份证号:371481200101042566
+
+
+
+
+ 住址:威海市环翠区张村镇东夼村56号
+
+
+
+
+
+
+ 资产信息
+
+
+
+
+ 宅基地信息
+
+
+ 股权信息
+
+
+
+
+ 147号1宗
+
+
+ 12股
+
+
+
+
+ 承包地信息
+
+
+ 议事会组织
+
+
+
+
+ 3亩
+
+
+ 议事成员
+
+
+
+
+ 农户画像
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/publicity.vue b/src/views/onlineHome/publicity.vue
new file mode 100644
index 00000000..3e6ae232
--- /dev/null
+++ b/src/views/onlineHome/publicity.vue
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+ {{item}}
+
+
+ 内容
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/threeAffairs.vue b/src/views/onlineHome/threeAffairs.vue
new file mode 100644
index 00000000..63eccede
--- /dev/null
+++ b/src/views/onlineHome/threeAffairs.vue
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+ {{item}}
+
+
+ 内容
+
+
+
+
+
+
+
+
+ {{item}}
+
+
+ 内容
+
+
+
+
+
+
+
+
+ {{item}}
+
+
+ 内容
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHome/workbench.vue b/src/views/onlineHome/workbench.vue
new file mode 100644
index 00000000..c5e619e2
--- /dev/null
+++ b/src/views/onlineHome/workbench.vue
@@ -0,0 +1,321 @@
+
+
+
+
+
+ 柳沟村
+
+
+
+
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+ 待办
+
+
+ 暂无代办
+
+
+
+
+
+
+
+ 业务申请
+
+
+
+
+
+

+
+ 用章申请
+
+
+
+
+

+
+
+ 宅基地申请
+
+
+
+
+

+
+
+ 宅基地流转
+
+
+
+
+

+
+
+ 宅基地退出
+
+
+
+
+

+
+
+ 付款申请
+
+
+
+
+

+
+
+ 项目申报
+
+
+
+
+

+
+
+ 拨付申请
+
+
+
+
+

+
+
+ 验收申请
+
+
+
+
+
+
+ 农村三资管理
+
+
+
+
+
+

+
+ 支出明细
+
+
+
+
+

+
+
+ 收入明细
+
+
+
+
+

+
+
+ 收支明细
+
+
+
+
+

+
+
+ 现金银行
+
+
+
+
+
+
+ 农村产权交易管理
+
+
+
+
+
+

+
+ 挂牌项目
+
+
+
+
+

+
+
+ 成交公示
+
+
+
+
+

+
+
+ 合同管理
+
+
+
+
+

+
+
+ 招标管理
+
+
+
+
+
+
+ 农村产权交易管理
+
+
+
+
+
+

+
+ 宅基地申请
+
+
+
+
+

+
+
+ 证书打印
+
+
+
+
+

+
+
+ 公示查询
+
+
+
+
+

+
+
+ 巡查执法
+
+
+
+
+

+
+
+ 村庄规划
+
+
+
+
+

+
+
+ 基础档案
+
+
+
+
+

+
+
+ 盘活利用
+
+
+
+
+
+
+ 农村产权制度改革管理
+
+
+
+
+
+

+
+ 财务管理
+
+
+
+
+

+
+
+ 资产管理
+
+
+
+
+

+
+
+ 合同管理
+
+
+
+
+

+
+
+ 股权管理
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/onlineHomeIndex.vue b/src/views/onlineHomeIndex.vue
new file mode 100644
index 00000000..794c4c34
--- /dev/null
+++ b/src/views/onlineHomeIndex.vue
@@ -0,0 +1,35 @@
+
+
+
+
+ 公示
+ 工作台
+ 家园
+ 我的
+
+
+
+
+
+
diff --git a/src/views/onlineHomeLogin.vue b/src/views/onlineHomeLogin.vue
new file mode 100644
index 00000000..4585f6bf
--- /dev/null
+++ b/src/views/onlineHomeLogin.vue
@@ -0,0 +1,481 @@
+
+
+
+

+

+
+
+
+
+
+
+ 忘记密码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 获取验证码
+
+
+
+ 注册
+
+
+
+
+
+
+
+
输入短信验证码
+ 验证码已发送至13333333333,请在下方输入框内输入4位数字验证码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{
+ computeTime > 0 ? `(${computeTime}s)已发送` : "获取验证码"
+ }}
+
+
+
+
+ 登录
+
+
+
+
+
+
+
+ 注册账户
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/images/onlineHome/OHlogo.png b/static/images/onlineHome/OHlogo.png
new file mode 100644
index 00000000..3b32023f
Binary files /dev/null and b/static/images/onlineHome/OHlogo.png differ
diff --git a/static/images/onlineHome/OHlogo1.png b/static/images/onlineHome/OHlogo1.png
new file mode 100644
index 00000000..08586f8d
Binary files /dev/null and b/static/images/onlineHome/OHlogo1.png differ
diff --git a/static/images/onlineHome/OHlogoWord.png b/static/images/onlineHome/OHlogoWord.png
new file mode 100644
index 00000000..f8187be7
Binary files /dev/null and b/static/images/onlineHome/OHlogoWord.png differ
diff --git a/static/images/onlineHome/afford1.png b/static/images/onlineHome/afford1.png
new file mode 100644
index 00000000..b253c187
Binary files /dev/null and b/static/images/onlineHome/afford1.png differ
diff --git a/static/images/onlineHome/afford2.png b/static/images/onlineHome/afford2.png
new file mode 100644
index 00000000..ab90fcab
Binary files /dev/null and b/static/images/onlineHome/afford2.png differ
diff --git a/static/images/onlineHome/afford3.png b/static/images/onlineHome/afford3.png
new file mode 100644
index 00000000..b640140f
Binary files /dev/null and b/static/images/onlineHome/afford3.png differ
diff --git a/static/images/onlineHome/afford4.png b/static/images/onlineHome/afford4.png
new file mode 100644
index 00000000..5d8c59fc
Binary files /dev/null and b/static/images/onlineHome/afford4.png differ
diff --git a/static/images/onlineHome/bg1.jpg b/static/images/onlineHome/bg1.jpg
new file mode 100644
index 00000000..2b430d52
Binary files /dev/null and b/static/images/onlineHome/bg1.jpg differ
diff --git a/static/images/onlineHome/done.png b/static/images/onlineHome/done.png
new file mode 100644
index 00000000..ba4fa300
Binary files /dev/null and b/static/images/onlineHome/done.png differ
diff --git a/static/images/onlineHome/home1.png b/static/images/onlineHome/home1.png
new file mode 100644
index 00000000..ee08d0e1
Binary files /dev/null and b/static/images/onlineHome/home1.png differ
diff --git a/static/images/onlineHome/home2.png b/static/images/onlineHome/home2.png
new file mode 100644
index 00000000..c2505111
Binary files /dev/null and b/static/images/onlineHome/home2.png differ
diff --git a/static/images/onlineHome/home3.png b/static/images/onlineHome/home3.png
new file mode 100644
index 00000000..168241a2
Binary files /dev/null and b/static/images/onlineHome/home3.png differ
diff --git a/static/images/onlineHome/home4.png b/static/images/onlineHome/home4.png
new file mode 100644
index 00000000..8f6c2a1c
Binary files /dev/null and b/static/images/onlineHome/home4.png differ
diff --git a/static/images/onlineHome/home5.png b/static/images/onlineHome/home5.png
new file mode 100644
index 00000000..e451948b
Binary files /dev/null and b/static/images/onlineHome/home5.png differ
diff --git a/static/images/onlineHome/home6.png b/static/images/onlineHome/home6.png
new file mode 100644
index 00000000..5e6a76c7
Binary files /dev/null and b/static/images/onlineHome/home6.png differ
diff --git a/static/images/onlineHome/icon1.png b/static/images/onlineHome/icon1.png
new file mode 100644
index 00000000..5be8387e
Binary files /dev/null and b/static/images/onlineHome/icon1.png differ
diff --git a/static/images/onlineHome/icon10.png b/static/images/onlineHome/icon10.png
new file mode 100644
index 00000000..5b94d3ff
Binary files /dev/null and b/static/images/onlineHome/icon10.png differ
diff --git a/static/images/onlineHome/icon11.png b/static/images/onlineHome/icon11.png
new file mode 100644
index 00000000..e7a66809
Binary files /dev/null and b/static/images/onlineHome/icon11.png differ
diff --git a/static/images/onlineHome/icon12.png b/static/images/onlineHome/icon12.png
new file mode 100644
index 00000000..52343caa
Binary files /dev/null and b/static/images/onlineHome/icon12.png differ
diff --git a/static/images/onlineHome/icon13.png b/static/images/onlineHome/icon13.png
new file mode 100644
index 00000000..489cac7a
Binary files /dev/null and b/static/images/onlineHome/icon13.png differ
diff --git a/static/images/onlineHome/icon14.png b/static/images/onlineHome/icon14.png
new file mode 100644
index 00000000..6b87777d
Binary files /dev/null and b/static/images/onlineHome/icon14.png differ
diff --git a/static/images/onlineHome/icon15.png b/static/images/onlineHome/icon15.png
new file mode 100644
index 00000000..7174ce19
Binary files /dev/null and b/static/images/onlineHome/icon15.png differ
diff --git a/static/images/onlineHome/icon16.png b/static/images/onlineHome/icon16.png
new file mode 100644
index 00000000..bca40e64
Binary files /dev/null and b/static/images/onlineHome/icon16.png differ
diff --git a/static/images/onlineHome/icon17.png b/static/images/onlineHome/icon17.png
new file mode 100644
index 00000000..f7fb9495
Binary files /dev/null and b/static/images/onlineHome/icon17.png differ
diff --git a/static/images/onlineHome/icon18.png b/static/images/onlineHome/icon18.png
new file mode 100644
index 00000000..854f31a8
Binary files /dev/null and b/static/images/onlineHome/icon18.png differ
diff --git a/static/images/onlineHome/icon19.png b/static/images/onlineHome/icon19.png
new file mode 100644
index 00000000..3bb30809
Binary files /dev/null and b/static/images/onlineHome/icon19.png differ
diff --git a/static/images/onlineHome/icon2.png b/static/images/onlineHome/icon2.png
new file mode 100644
index 00000000..8ee37466
Binary files /dev/null and b/static/images/onlineHome/icon2.png differ
diff --git a/static/images/onlineHome/icon20.png b/static/images/onlineHome/icon20.png
new file mode 100644
index 00000000..8ba32caf
Binary files /dev/null and b/static/images/onlineHome/icon20.png differ
diff --git a/static/images/onlineHome/icon3.png b/static/images/onlineHome/icon3.png
new file mode 100644
index 00000000..6e10145f
Binary files /dev/null and b/static/images/onlineHome/icon3.png differ
diff --git a/static/images/onlineHome/icon4.png b/static/images/onlineHome/icon4.png
new file mode 100644
index 00000000..f8868b16
Binary files /dev/null and b/static/images/onlineHome/icon4.png differ
diff --git a/static/images/onlineHome/icon5.png b/static/images/onlineHome/icon5.png
new file mode 100644
index 00000000..ef432a89
Binary files /dev/null and b/static/images/onlineHome/icon5.png differ
diff --git a/static/images/onlineHome/icon6.png b/static/images/onlineHome/icon6.png
new file mode 100644
index 00000000..5d9e74a5
Binary files /dev/null and b/static/images/onlineHome/icon6.png differ
diff --git a/static/images/onlineHome/icon7.png b/static/images/onlineHome/icon7.png
new file mode 100644
index 00000000..2a139d7c
Binary files /dev/null and b/static/images/onlineHome/icon7.png differ
diff --git a/static/images/onlineHome/icon8.png b/static/images/onlineHome/icon8.png
new file mode 100644
index 00000000..20649acc
Binary files /dev/null and b/static/images/onlineHome/icon8.png differ
diff --git a/static/images/onlineHome/icon9.png b/static/images/onlineHome/icon9.png
new file mode 100644
index 00000000..8d6673b7
Binary files /dev/null and b/static/images/onlineHome/icon9.png differ
diff --git a/static/images/onlineHome/location.png b/static/images/onlineHome/location.png
new file mode 100644
index 00000000..22b5339c
Binary files /dev/null and b/static/images/onlineHome/location.png differ
diff --git a/static/images/onlineHome/lock.png b/static/images/onlineHome/lock.png
new file mode 100644
index 00000000..fcbb800d
Binary files /dev/null and b/static/images/onlineHome/lock.png differ
diff --git a/static/images/onlineHome/myIcon1.png b/static/images/onlineHome/myIcon1.png
new file mode 100644
index 00000000..b19bf1ae
Binary files /dev/null and b/static/images/onlineHome/myIcon1.png differ
diff --git a/static/images/onlineHome/myIcon2.png b/static/images/onlineHome/myIcon2.png
new file mode 100644
index 00000000..9f8528cc
Binary files /dev/null and b/static/images/onlineHome/myIcon2.png differ
diff --git a/static/images/onlineHome/myIcon4.png b/static/images/onlineHome/myIcon4.png
new file mode 100644
index 00000000..cc207fea
Binary files /dev/null and b/static/images/onlineHome/myIcon4.png differ
diff --git a/static/images/onlineHome/myIcon5.png b/static/images/onlineHome/myIcon5.png
new file mode 100644
index 00000000..0f2fe3d7
Binary files /dev/null and b/static/images/onlineHome/myIcon5.png differ
diff --git a/static/images/onlineHome/myIcon6.png b/static/images/onlineHome/myIcon6.png
new file mode 100644
index 00000000..5664bd4a
Binary files /dev/null and b/static/images/onlineHome/myIcon6.png differ
diff --git a/static/images/onlineHome/myIcon7.png b/static/images/onlineHome/myIcon7.png
new file mode 100644
index 00000000..ee72ce7e
Binary files /dev/null and b/static/images/onlineHome/myIcon7.png differ
diff --git a/static/images/onlineHome/phone.png b/static/images/onlineHome/phone.png
new file mode 100644
index 00000000..55904520
Binary files /dev/null and b/static/images/onlineHome/phone.png differ
diff --git a/static/images/onlineHome/vote.png b/static/images/onlineHome/vote.png
new file mode 100644
index 00000000..9b2efa80
Binary files /dev/null and b/static/images/onlineHome/vote.png differ
diff --git a/static/images/onlineHome/vote1.png b/static/images/onlineHome/vote1.png
new file mode 100644
index 00000000..83c5d0a7
Binary files /dev/null and b/static/images/onlineHome/vote1.png differ