diff --git a/App.vue b/App.vue
index 12ad699..dffde2d 100644
--- a/App.vue
+++ b/App.vue
@@ -15,12 +15,11 @@
}
.app {
- background-color: #F4F5F7;
width: 100%;
height: 100%;
- position: relative;
+ // position: relative;
color: #000000;
- padding: 30rpx 0 200rpx 0;
+ padding: 30rpx 0 150rpx 0;
.cards {
width: 94%;
diff --git a/api/Healthknowledge/index.js b/api/Healthknowledge/index.js
new file mode 100644
index 0000000..54ebd8b
--- /dev/null
+++ b/api/Healthknowledge/index.js
@@ -0,0 +1,8 @@
+import request from "../request.js"
+
+export function getHeathHousingList(pageNum, pageSize) {
+ return request({
+ url: `/nurseApplet/nearbyNursingStation/getHeathHousingList?pageNum=${pageNum}&pageSize=${pageSize}&informationCategoryType=HEALTH_NOUS`,
+ method: 'get',
+ })
+}
diff --git a/api/ProjectDetails/index.js b/api/ProjectDetails/index.js
index bf08060..2d54396 100644
--- a/api/ProjectDetails/index.js
+++ b/api/ProjectDetails/index.js
@@ -2,7 +2,7 @@ import request from "../request.js"
export function getAppStationItemInfo(stationId, stationItemId, stationItemPriceId) {
return request({
- url: `/nurseApp/login/getAppStationItemInfo?stationId=${stationId}&stationItemId=${stationItemId}&stationItemPriceId=${stationItemPriceId}`,
+ url: `/nurseApplet/login/getStationItemInfo?stationId=${stationId}&stationItemId=${stationItemId}&stationItemPriceId=${stationItemPriceId}`,
method: 'GET'
})
}
diff --git a/api/homepage/index.js b/api/homepage/index.js
new file mode 100644
index 0000000..d692231
--- /dev/null
+++ b/api/homepage/index.js
@@ -0,0 +1,9 @@
+import request from "../request.js"
+
+export function getPoserInfoListByType() {
+ return request({
+ url: `/nurseApplet/nearbyNursingStation/getPoserInfoListByType?moduleType=HOME_PAGE_MODULE`,
+ method: 'GET'
+ })
+}
+
diff --git a/api/nursestation/nursestation.js b/api/nursestation/nursestation.js
index b8a3368..6e59c0d 100644
--- a/api/nursestation/nursestation.js
+++ b/api/nursestation/nursestation.js
@@ -9,9 +9,9 @@ export function introductionList(id) {
}
-export function itemList(id,pageSize,pageNum) {
+export function itemList(id,pageSize,pageNum,nurseClassifyInfoId) {
return request({
- url: `/nurseApplet/nearbyNursingStation/itemList?pageSize=${pageSize}&pageNum=${pageNum}&nurseStationId=${id}`,
+ url: `/nurseApplet/nearbyNursingStation/itemList?pageSize=${pageSize}&pageNum=${pageNum}&nurseStationId=${id}&nurseClassifyInfoId=${nurseClassifyInfoId}`,
method: 'GET'
})
}
diff --git a/api/site/site.js b/api/site/site.js
index b09dba8..53f0fb3 100644
--- a/api/site/site.js
+++ b/api/site/site.js
@@ -1,11 +1,8 @@
import request from "../request.js"
-
-
-
-export function nearbyList(pageSize,pageNum,longitude, latitude) {
+export function nearbyList(pageSize, pageNum, longitude, latitude,ClassifyInfoId,itemClassId,searchName) {
return request({
- url: `/nurseApplet/nearbyNursingStation/nearbyList?pageSize=${pageSize}&pageNum=${pageNum}&homeLongitude=${longitude}&homeLatitude=${latitude}`,
+ url: `/nurseApplet/nearbyNursingStation/nearbyList?pageSize=${pageSize}&pageNum=${pageNum}&homeLongitude=${longitude}&homeLatitude=${latitude}&nurseClassifyInfoId=${ClassifyInfoId}&nurseItemClassifyInfoId=${itemClassId}&searchName=${searchName}`,
method: 'GET'
})
}
@@ -16,4 +13,12 @@ export function getPatientInfo(id) {
url: `/nurseApplet/login/getPatientInfo?patientId=${id}`,
method: 'GET'
})
-}
\ No newline at end of file
+}
+
+//护理站和护理项目分类
+export function getNurseClassifyList() {
+ return request({
+ url: `/nurseApplet/nearbyNursingStation/getNurseClassifyList?moduleType=NURSE_AGENCY_INTRODUCE_MODULE`,
+ method: 'GET'
+ })
+}
diff --git a/manifest.json b/manifest.json
index a7dd506..d8115d2 100644
--- a/manifest.json
+++ b/manifest.json
@@ -43,13 +43,19 @@
]
},
/* ios打包配置 */
- "ios" : {},
+ "ios" : {
+ "dSYMs" : false
+ },
/* SDK配置 */
"sdkConfigs" : {
"geolocation" : {
"system" : {
"__platform__" : [ "ios", "android" ]
}
+ },
+ "ad" : {},
+ "push" : {
+ "unipush" : null
}
},
"splashscreen" : {
@@ -84,7 +90,10 @@
"uniStatistics" : {
"enable" : true
},
- "lazyCodeLoading" : "requiredComponents"
+ "lazyCodeLoading" : "requiredComponents",
+ "unipush" : {
+ "enable" : false
+ }
},
"mp-alipay" : {
"usingComponents" : true
diff --git a/pages.json b/pages.json
index 3845169..b8f4d6a 100644
--- a/pages.json
+++ b/pages.json
@@ -9,6 +9,13 @@
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
+ }, {
+ "path": "pages/ProjectDetails/ProjectDetails",
+ "style": {
+ "navigationBarTitleText": "护理项目详情",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#ffffff" //背景颜色
+ }
}, {
"path": "pages/modifyAddress/modifyAddress",
"style": {
@@ -31,23 +38,13 @@
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff"
}
-
}, {
"path": "pages/ServiceDetails/ServiceDetails",
"style": {
"navigationBarTitleText": "服务详情",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff" //背景颜色
-
}
- }, {
- "path": "pages/ProjectDetails/ProjectDetails",
- "style": {
- "navigationBarTitleText": "护理项目详情",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#ffffff" //背景颜色
- }
-
}, {
"path": "pages/goodsorderRate/goodsorderRate",
"style": {
@@ -55,13 +52,6 @@
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff" //背景颜色
}
- }, {
- "path": "pages/Bodysatelliteintegration/Bodysatelliteintegration",
- "style": {
- "navigationBarTitleText": "体卫融合",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#ffffff" //背景颜色
- }
},
{
"path": "pages/modify/modify",
@@ -98,7 +88,8 @@
"navigationBarTitleText": "医路优品",
"navigationBarBackgroundColor": "#ffffff",
"onReachBottomDistance": 40, //距离底部多远时触发 单位为px
- "enablePullDownRefresh": true //设置参数为true
+ "enablePullDownRefresh": true ,//设置参数为true
+ "navigationStyle": "custom"
}
}, {
"path": "pages/CommodityOrder/CommodityOrder",
@@ -109,7 +100,6 @@
"enablePullDownRefresh": true //设置参数为true
}
},
-
{
"path": "pages/user/user",
"style": {
@@ -142,13 +132,12 @@
"navigationBarBackgroundColor": "#ffffff"
}
},
-
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录",
- // "navigationStyle": "custom"
- "enablePullDownRefresh": false
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#ffffff" //背景颜色
}
},
{
@@ -159,11 +148,10 @@
"navigationBarBackgroundColor": "#ffffff" //背景颜色
}
},
-
{
"path": "pages/Nursingstationserviceorder/Nursingstationserviceorder",
"style": {
- "navigationBarTitleText": "护理站服务订单",
+ "navigationBarTitleText": "护理机构服务订单",
"navigationBarBackgroundColor": "#ffffff", //背景颜色
"onReachBottomDistance": 40, //距离底部多远时触发 单位为px
"enablePullDownRefresh": true //设置参数为true
@@ -202,7 +190,6 @@
"enablePullDownRefresh": false
}
},
-
{
"path": "pages/order/order",
"style": {
@@ -217,17 +204,16 @@
"navigationBarTitleText": "预约详情",
"enablePullDownRefresh": false
}
-
},
{
"path": "pages/homepage/homepage",
"style": {
"navigationBarTitleText": "泉医到家",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#ffffff"
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#ffffff",
+ "enablePullDownRefresh": false
}
},
-
{
"path": "pages/confirmOrder/confirmOrder",
"style": {
@@ -258,7 +244,6 @@
"path": "pages/ProductList/ProductList", //商品列表
"style": {
"navigationBarTitleText": "医路优品",
- "enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff",
"onReachBottomDistance": 40, //距离底部多远时触发 单位为px
"enablePullDownRefresh": true //设置参数为true
@@ -275,75 +260,86 @@
{
"path": "pages/nursestation/nursestation",
"style": {
- "navigationBarTitleText": "护理站详情",
+ "navigationBarTitleText": "护理机构详情",
"navigationBarBackgroundColor": "#ffffff",
"onReachBottomDistance": 100, //距离底部多远时触发 单位为px
"enablePullDownRefresh": true //设置参数为true
}
-
},
{
"path": "pages/site/site",
"style": {
- "navigationBarTitleText": "附近护理站",
+ "navigationBarTitleText": "护理机构",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff", //背景颜色
- "onReachBottomDistance": 40, //距离底部多远时触发 单位为px
+ "onReachBottomDistance": 100, //距离底部多远时触发 单位为px
"enablePullDownRefresh": true //设置参数为true
}
},
- {
- "path": "pages/detail/detail",
- "style": {
- "navigationBarTitleText": "护理站简介",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#ffffff" //背景颜色
- }
- },
{
"path": "pages/medicine/medicine",
"style": {
- "navigationBarTitleText": "就医",
+ "navigationBarTitleText": "健康咨询",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff"
}
},
-
{
- "path": "pages/Doctordetails/Doctordetails",
- "style": {
- "navigationBarTitleText": "医生信息",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#ffffff"
- }
- }, {
- "path": "pages/Geriatricdisease/Geriatricdisease",
- "style": {
- "navigationBarTitleText": "老年病中心",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#ffffff"
- }
-
- }, {
"path": "pages/diseasemanagement/diseasemanagement",
"style": {
"navigationBarTitleText": "专病管理",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff"
}
- }, {
- "path": "pages/toptabbar/toptabbar",
+ },
+ {
+ "path": "pages/utabs/u-tabs",
"style": {
"navigationBarTitleText": "",
- "enablePullDownRefresh": false
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#ffffff"
}
-
},
{
"path": "pages/classification/classification",
"style": {
"navigationBarTitleText": "分类",
- "enablePullDownRefresh": false
+ "enablePullDownRefresh": false,
+ "disableScroll": true
+ // "navigationBarBackgroundColor": "#ffffff",
+ // "onReachBottomDistance": 50 //距离底部多远时触发 单位为px
+ // "enablePullDownRefresh": true //设置参数为true
+ }
+
+ }, {
+ "path": "pages/Healthknowledge/Healthknowledge",
+ "style": {
+ "navigationBarTitleText": "健康常识",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#ffffff"
+ }
+
+ }, {
+ "path": "pages/Healthitem/Healthitem",
+ "style": {
+ "navigationBarTitleText": "健康常识",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#ffffff"
+ }
+ },
+ {
+ "path": "pages/customerservice/customerservice",
+ "style": {
+ "navigationBarTitleText": "在线客服",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#ffffff"
+ }
+ }, {
+ "path": "pages/materialbenefits/materialbenefits",
+ "style": {
+ "navigationBarTitleText": "新人福利",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#ffffff"
}
}
@@ -366,11 +362,17 @@
"selectedIconPath": "static/homepagews.png",
"text": "首页"
},
+ {
+ "pagePath": "pages/shopping/shopping",
+ "iconPath": "static/shoping.png",
+ "selectedIconPath": "static/shopingw.png",
+ "text": "商城"
+ },
{
"pagePath": "pages/Personal/Personal",
"iconPath": "static/userw.png",
"selectedIconPath": "static/users.png",
- "text": "个人中心"
+ "text": "我的"
}
]
}
diff --git a/pages/CommodityDetails/CommodityDetails.vue b/pages/CommodityDetails/CommodityDetails.vue
index ce6db32..44a11cc 100644
--- a/pages/CommodityDetails/CommodityDetails.vue
+++ b/pages/CommodityDetails/CommodityDetails.vue
@@ -410,6 +410,7 @@
// 查询商品详细信息
goodsDetailsinfo(goodsInfoId) {
let that = this
+ this.info = []
goodsDetails(goodsInfoId).then(res => {
uni.removeStorageSync('Refresh');
if (res.data.goodsRemark) {
diff --git a/pages/Doctordetails/Doctordetails.vue b/pages/Doctordetails/Doctordetails.vue
deleted file mode 100644
index 1a98460..0000000
--- a/pages/Doctordetails/Doctordetails.vue
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
- 某某某
-
-
- 主任医师
-
-
-
-
- 熟悉呼吸系统疾病的诊治,尤其擅 长肺栓塞、肺动脉高压和慢性气道疾 病的研究。
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/Geriatricdisease/Geriatricdisease.vue b/pages/Geriatricdisease/Geriatricdisease.vue
deleted file mode 100644
index 2fd7ef5..0000000
--- a/pages/Geriatricdisease/Geriatricdisease.vue
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
-
-
-
-
-
- 国家老年病中心山东分中心是依托于首都医科大学宣武医院的国家老年疾病临床医学研究中心(国家科技部、国家卫计委、中央军委后勤保障部、国家食品药品监督管理总局联合批准的国家级临床医学研究中心),老年慢性病全国网络化诊治体系及医疗大数据系统,医疗与健康一体化的新型服务体系和数据体系山东省建设单位。为提升山东省基层医院老年病学科水平,建设区域老年疾病预防、管理体系。利用国家中心在老年疾病临床诊疗的优势:在衰老、老年常见重大疾病(帕金森和老年痴呆等老年神经变性病、心脑及外周血管病、糖尿病)和老年综合征(衰弱、跌倒、便秘等)防治领域,围绕老年高龄外科围手术期管理、老年用药管理、老年共病、老年重症、以及老年常见疾病(帕金森病、痴呆、心脑外周血管病、糖尿病等)早期预警、干预及全程管理的综合评估、干预和管理新技术。
-
-
- 主要开展的科室有:帕金森,两腺科,妇科,心脑血管等精准治疗
-
-
- 开展项目有:慢病管理,血液净化(高血脂症)妇科筛查,老年病筛查、康复治疗等
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/Healthitem/Healthitem.vue b/pages/Healthitem/Healthitem.vue
new file mode 100644
index 0000000..1a4da59
--- /dev/null
+++ b/pages/Healthitem/Healthitem.vue
@@ -0,0 +1,50 @@
+
+
+
+ {{item.informationTitle}}
+
+
+
+
+
+
+
+
+
diff --git a/pages/Healthknowledge/Healthknowledge.vue b/pages/Healthknowledge/Healthknowledge.vue
new file mode 100644
index 0000000..69ad69b
--- /dev/null
+++ b/pages/Healthknowledge/Healthknowledge.vue
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+
+ {{item.informationTitle}}
+
+
+
+
+
+
+
+
+
+ 暂无内容
+
+
+
+
+
+
+
+
+
diff --git a/pages/Personal/Personal.vue b/pages/Personal/Personal.vue
index 90ab0fc..09890ed 100644
--- a/pages/Personal/Personal.vue
+++ b/pages/Personal/Personal.vue
@@ -1,37 +1,19 @@
-
-
-
-
- 个人信息
-
-
-
-
-
- 我的订单
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 个人信息
+
+
+
+
+
+ 我的订单
-
-
diff --git a/pages/customerservice/customerservice.vue b/pages/customerservice/customerservice.vue
new file mode 100644
index 0000000..69ec122
--- /dev/null
+++ b/pages/customerservice/customerservice.vue
@@ -0,0 +1,67 @@
+
+
+
+ 长按识别二维码
+
+
+
+
+
+
+
+
diff --git a/pages/detail/detail.vue b/pages/detail/detail.vue
deleted file mode 100644
index 27d6a5b..0000000
--- a/pages/detail/detail.vue
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
- 护理站是以维护社区人群健康、满足社区 人群基本医疗护理需求为宗旨,以护士为核心 的各类护理人员组成的团队,在一定社区范围 内,为长期卧床老人、患者、残疾人、临终患
- 者和其他需要护理服务者提供基础护理、专科 护理、临终护理、消毒隔离技术指导、营养指导、社区康复指导、健康宣教和其他护理服务 的医疗机构。
- 护理站以遵医嘱的上门护理服务为主,包括生活护理和医疗护理,详情如下:
-
-
-
-
-
- 生活护理
-
-
-
- 医疗护理
-
-
-
-
-
-
-
-
diff --git a/pages/diseasemanagement/diseasemanagement.vue b/pages/diseasemanagement/diseasemanagement.vue
index f11b3de..cfd9cf2 100644
--- a/pages/diseasemanagement/diseasemanagement.vue
+++ b/pages/diseasemanagement/diseasemanagement.vue
@@ -49,7 +49,7 @@
.concent {
width: 701rpx;
- height: 850rpx;
+ height: 900rpx;
background: #4C7BC9;
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
border-radius: 20rpx;
@@ -58,7 +58,7 @@
.background {
position: relative;
width: 657rpx;
- height: 800rpx;
+ height: 850rpx;
background: #FFFFFF;
border-radius: 25rpx;
background-color: white;
@@ -68,11 +68,11 @@
image {
width: 178rpx;
- height: 84rpx;
+ height: 160rpx;
background: #FFFFFF;
border-radius: 25px;
margin-left: 68%;
- margin-top: 5%;
+ margin-top: 0;
}
}
}
@@ -80,7 +80,7 @@
.detailed {
width: 657rpx;
- padding: 0 42rpx;
+ padding: 0 20rpx;
line-height: 56rpx;
}
diff --git a/pages/homepage/homepage.vue b/pages/homepage/homepage.vue
index 5770158..e929b59 100644
--- a/pages/homepage/homepage.vue
+++ b/pages/homepage/homepage.vue
@@ -1,40 +1,81 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- 护理站
+ 护理机构
-
-
+
+
- 就医
+ 健康咨询
-
-
+
+
专病管理
-
-
-
- 体卫融合
-
+
+
+
+
+
+
+
+ 健康常识
-
-
-
- 国家老年病中心
-
-
-
-
+
- 商城
+ 查看更多
+
+
+
+
+
+
+ {{item.informationTitle}}
+
+
+
@@ -43,10 +84,164 @@
-
diff --git a/pages/medicine/medicine.vue b/pages/medicine/medicine.vue
index 388c063..f9e6a0b 100644
--- a/pages/medicine/medicine.vue
+++ b/pages/medicine/medicine.vue
@@ -1,23 +1,5 @@
-
-
-
-
-
@@ -102,11 +84,10 @@
image {
width: 178rpx;
- height: 84rpx;
+ height: 160rpx;
background: #FFFFFF;
border-radius: 25px;
margin-left: 68%;
- margin-top: 5%;
}
}
}
diff --git a/pages/menttimeorder/menttimeorder.vue b/pages/menttimeorder/menttimeorder.vue
index 0b90326..43f415b 100644
--- a/pages/menttimeorder/menttimeorder.vue
+++ b/pages/menttimeorder/menttimeorder.vue
@@ -40,7 +40,8 @@
·联系人:{{list.patientName}}
·电话:{{list.patientPhone}}
·地址:{{list.serviceAddress}}
- ·时间:{{list.serviceDate}} {{list.serviceStartTime}}-{{list.serviceEndTime}}
+ ·预约时间:{{list.serviceDate}} {{list.serviceStartTime}}
+ ·下单时间:{{list.createTime}}
套餐信息:
¥{{list.nurseItemPrice}}
diff --git a/pages/nursestation/nursestation.scss b/pages/nursestation/nursestation.scss
index f91a9ac..29451ad 100644
--- a/pages/nursestation/nursestation.scss
+++ b/pages/nursestation/nursestation.scss
@@ -1,6 +1,25 @@
.app{
padding:10rpx 0 0 0;
+ -webkit-overflow-scrolling: touch;
}
+ .swiper-box {
+ width: 100%;
+ height: 500rpx;
+ }
+ .swiper-item {
+ height: 500rpx;
+ text-align: center;
+ image{
+ width: 100%;
+ height: 500rpx !important;
+ }
+ }
+
+ video{
+ height: 100%;
+ width: 100%;
+ }
+
.mask {
.information {
width: 70%;
@@ -48,11 +67,16 @@
}
.content {
- font-size: 36rpx;
+ font-size: 34rpx;
padding-bottom: 10rpx;
+ // margin-top: -80rpx;
+ z-index: 999;
+ ::v-deep .u-tabs{
+ padding-bottom: 10rpx;
+ border-radius: 20rpx;
+ }
.tive {
width: 94%;
- background-color: #ffffff;
margin: 20rpx auto;
border-radius: 11rpx;
padding-bottom: 60rpx;
@@ -74,74 +98,92 @@
width: 100%;
height: 100%;
position: relative;
- padding: 30rpx 30rpx;
+ background-color: #fff;
+ padding: 30rpx 0;
+ margin: 10rpx auto;
+ border-radius: 20rpx;
+ color: #000000;
image {
width: 170rpx;
height: 170rpx;
margin-left: 3%;
}
- .servicetime {
- color: #999999;
- line-height: 37rpx;
- font-size: 30rpx;
- position: absolute;
- top:35%;
- left:35%;
- }
+ // .servicetime {
+ // color: #999999;
+ // line-height: 37rpx;
+ // font-size: 30rpx;
+ // position: absolute;
+ // top:35%;
+ // left:35%;
+ // }
.appointment {
+ font-size: 30rpx;
width: 120rpx;
- height: 70rpx;
- background: #4C7BC9;
+ height: 52rpx;
border-radius: 26rpx;
color: #ffffff;
+ background: #F44B2F;
text-align: center;
- line-height: 70rpx;
+ line-height: 52rpx;
position: absolute;
- top:40%;
+ top:70%;
right:5%;
}
- .buy{
- position: absolute;
- top: 55%;
- }
.price {
- color: red;
- font-size: 32rpx;
+ height: 52rpx;
+ color: #F44B2F;
+ line-height: 52rpx;
+ font-size: 36rpx;
position: absolute;
- top:65%;
+ top:70%;
left:35%;
}
.product {
- color: #000000;
- width: 60%;
position: absolute;
- top:14%;
- left:32%;
- font-size: 28rpx;
- overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
- }
- .huanyao {
- color: #000000;
- position: absolute;
- top:10%;
+ top:15%;
left:35%;
- width: 60%;
+ width: 65%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
+ .day{
+ font-size: 24rpx;
+ position: absolute;
+ top:53%;
+ left:35%;
+ width: 65%;
+ }
+ .huanyao {
+ position: absolute;
+ top:10%;
+ left:35%;
+ width: 45%;
+ line-height: 50rpx;
+ height: 100rpx;
+ text-overflow: -o-ellipsis-lastline;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ line-clamp: 2;
+ -webkit-box-orient: vertical;
+ white-space:normal;
+ word-break:break-all;
+ }
.pingfen {
float: right;
}
}
.tab-box {
display: flex;
+ font-weight: 600;
.tab-item {
flex-shrink: 0;
padding: 3%;
position: relative;
transition: all 0.2s linear;
- font-size: 31rpx;
+ font-size: 36rpx;
&::after {
transition: all 0.2s linear;
transform: translateX(-50%) scaleX(0);
@@ -150,10 +192,10 @@
position: absolute;
left: 50%;
bottom: 10rpx;
- border-bottom: 6rpx solid #D43953;
border-radius: 4rpx;
}
&.active {
+ color: #2979ff;
&::after {
content: '';
width: 50%;
@@ -161,36 +203,25 @@
left: 50%;
transform: translateX(-50%) scaleX(1);
bottom: 10rpx;
- border-bottom: 6rpx solid red;
}
}
}
}
}
- .Nursestationconfiguration {
- width: 94%;
- height: 100%;
- background: #FFFFFF;
- border-radius: 20rpx;
- padding-bottom: 30rpx;
- margin: 20rpx auto;
.configuration {
- font-size: 31rpx;
- color: #333333;
- padding: 3%;
+ margin:20rpx 30rpx 0;
+ padding-bottom: 30rpx;
+ border-bottom: 1rpx solid #CDC9C9;
.text {
- margin-top: 10rpx;
+ background: #F8D7D1;
+ border-radius: 15rpx;
display: inline-block;
padding: 10rpx 20rpx;
- margin-right: 18rpx;
- line-height: 40rpx;
- background-color: #f6f6f6;
- border-radius: 34rpx;
+ margin-right: 10rpx;
font-size: 24rpx;
- color: #666666;
+ color: #F44B2F;
}
}
- }
.detail {
position: relative;
width: 94%;
@@ -228,76 +259,65 @@
background-color: #ffffff;
border-radius: 20rpx;
margin: 10px auto;
- padding-bottom: 20rpx;
- .picture {
- position: absolute;
- width: 170rpx;
- height: 170rpx;
- margin-left: 5%;
- margin-top: 5%;
+ padding-bottom: 30rpx;
+ .time{
+ font-size: 30rpx;
+ margin: 10rpx 0;
+ color: #666666;
+ .timeday{
+ display: inline-block;
+ }
+ .text{
+ margin:0 10rpx 0 30rpx;
+ display: inline-block;
+ }
+ .texttime{
+ margin:0 20rpx 0 30rpx;
+ view{
+ display: inline-block;
+ margin-right: 20rpx;
+ }
+ }
}
.title {
- margin-left: 35%;
- line-height: 49px;
- font-size: 33rpx;
+ padding-top: 40rpx;
+ margin:0 0 0 30rpx;
+ font-size: 40rpx;
+ line-height: 59rpx;
+ font-weight: 700;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
- .call {
- // display: flex;
- .Navigation {
- width: 103rpx;
- height: 48rpx;
- background: #00C176;
- border-radius: 24px;
- font-size: 21rpx;
- color: #ffffff;
- line-height: 48rpx;
- margin-left: 5%;
- text-align: center;
- margin-top: 3%;
-
- image {
- width: 24rpx;
- height: 24rpx;
- }
- }
- .callme {
- width: 150rpx;
- height: 48rpx;
- background: #D43953;
- border-radius: 24px;
- font-size: 21rpx;
- color: #ffffff;
- line-height: 48rpx;
- margin-left: 35%;
- margin-top: 3%;
- text-align: center;
- position: relative;
- .icon{
- position: absolute;
- left:10%;
- top:50%;
- transform: translateY(-50%);
- }
- .text{
- position: absolute;
- top:50%;
- right:10%;
- transform: translateY(-50%);
- }
- }
- }
.address {
- font-size: 25rpx;
- margin-left: 35%;
- color: #999999;
- line-height: 37rpx;
+ font-size: 30rpx;
+ color: #666666;
+ margin:40rpx 0 20rpx 30rpx;
word-break:break-all;
+ line-height: 50rpx;
// overflow: hidden;
// text-overflow: ellipsis;
// white-space: nowrap;
+ position: relative;
+ .distance{
+ // position: absolute;
+ // right:30rpx;
+ // top:50%;
+ float: right;
+ display: inline-block;
+ padding-right: 10rpx;
+ }
+ .text{
+ padding-left: 40rpx;
+ display: inline-block;
+ }
+ image{
+ position: absolute;
+ top:50%;
+ transform: translateY(-50%);
+ width: 28rpx;
+ height: 35rpx;
+ }
}
}
}
diff --git a/pages/nursestation/nursestation.vue b/pages/nursestation/nursestation.vue
index d528587..d31af51 100644
--- a/pages/nursestation/nursestation.vue
+++ b/pages/nursestation/nursestation.vue
@@ -1,61 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
{{list.nurseStationName}}
暂无
- {{list.address}}
-
- 暂无
-
-
-
-
- 联系我们
+
+
+ {{list.businessStatus}}
-
-
-
-
- 机构简介
-
-
-
-
-
- 护理站配置
-
-
- {{item.labelDescription}}
+
+ {{list.openingHoursDescribe}}
+
+
+
+ 上午:{{list.morningOpenStartTime}}-{{list.morningOpenEndTime}}
+
+ 下午:{{list.afternoonOpenStartTime}}-{{list.afternoonOpenEndTime}}
+
+
+
+
+
+ {{item.labelDescription}}
+
+
+
+
+
+ {{list.address}}
+
+
+ {{distance}}KM
+
+
+
+
+
+ 暂无
+
+
+ {{distance}}KM
+
+
+
+
+
+ {{list.dutyPhone}}
+
+
+
+
+
+ 暂无
-
{{item.name}}
-
+
+
+
{{item.nurseItemName}}
+
+ {{item.advanceAppointDuration=='HALF_DAY'?'提前预约时长:半天':''}}
+ {{item.advanceAppointDuration=='ONE_DAY'?'提前预约时长:一天':''}}
+
- 服务时长:{{item.serveDurationUnit?item.serveDurationUnit:'0'}}
- 预约
+
+ 预约
¥{{item.nurseItemPrice==null?'0':item.nurseItemPrice}}
@@ -69,9 +130,11 @@
{{item.goodsName}}
- {{item.attributeDetailsName}}
- 购买
- ¥{{item.goodsPrice==null?'0':item.goodsPrice}}
+
+ 购买
+ ¥{{item.goodsPrice==null?'0':item.goodsPrice}}
@@ -97,6 +160,7 @@
+
@@ -113,6 +177,10 @@
export default {
data() {
return {
+ Banners: [], //轮播图
+ autoplay: true, //自动切换轮播图
+ videoContext: '',
+ baseurl: '',
usershow: false, //完善信息开关
choicetab: false, //切换
list: [], //护理站list
@@ -126,23 +194,95 @@
nurseStationId: '',
pageNum: 1,
pageSize: 10,
- tabIndex: 0,
timer: null,
tabList: [{
- name: "服务项目"
- }, {
- name: "产品"
- }, ]
+ name: '全部',
+ id: ''
+ }], //分类标题
+ tabIndex: 0,
+ tabLists: [{
+ name: '服务项目',
+ id: 0,
+ },
+ {
+ name: '产品',
+ id: 1,
+ }
+ ],
+ classifycurrent: 0, //分类下标
+ distance: null, //距离
+ nurseClassifyInfoId: '', //分类id
+ scrollTop: 0,
}
},
onShow() {
+ this.baseurl = baseurl
this.usershow = false
this.getInfo()
},
onLoad(options) {
+ let that = this
+ this.GetBanner()
this.nurseStationId = options.nurseStationId
+ this.distance = options.distance
},
methods: {
+ //跳转地图
+ goMap() {
+ uni.openLocation({
+ latitude: Number(this.list.latitude),
+ longitude: Number(this.list.longitude),
+ })
+ },
+ swiperChange(e) {
+ let {
+ current,
+ source
+ } = e.detail
+ this.videoContext = uni.createVideoContext('myVideo' + (current - 1));
+ //只有手动切换时开始轮播,并且上一页视频暂停
+ if (source === 'touch') {
+ this.videoContext.pause(); //暂停
+ this.autoplay = true
+ }
+ },
+ // 获取数据
+ GetBanner() {},
+ // 处理banner返回的是是视频还是图片
+ splits(url) {
+ if (url.indexOf('.') != -1) {
+ var ext = url.substring(url.lastIndexOf('.') + 1);
+ return ['mp4', 'webm', 'mpeg4', 'ogg'].indexOf(ext) != -1
+ }
+ },
+ // 点击开始/继续播放
+ play() {
+ this.autoplay = false
+ // this.videoContext.requestFullScreen()
+ },
+ // 视频暂停
+ pause() {
+ this.autoplay = true
+ },
+ // 视频结束
+ ended() {
+ this.autoplay = true
+ },
+ testTabClick(item) {
+ this.tabIndex = item.id
+ if (item.id == 0) {
+ this.choicetab = false
+ } else {
+ this.choicetab = true
+ }
+ },
+ //点击分类标题
+ change(index) {
+ this.classifycurrent = index;
+ this.nurseClassifyInfoId = this.tabList[index].id
+ this.serveinfo()
+ },
+ //预约
goappointments(item) {
let that = this
try {
@@ -197,14 +337,38 @@
getInfo() {
introductionList(this.nurseStationId).then(res => {
if (res.code == 200) {
+ this.Banners = []
this.serveinfo()
this.productinfo()
+ res.data.morningOpenStartTime = res.data.morningOpenStartTime.slice(0, 5)
+ res.data.morningOpenEndTime = res.data.morningOpenEndTime.slice(0, 5)
+ res.data.afternoonOpenStartTime = res.data.afternoonOpenStartTime.slice(0, 5)
+ res.data.afternoonOpenEndTime = res.data.afternoonOpenEndTime.slice(0, 5)
res.data.stationIntroducePcitureUrl = baseurl + res.data.stationIntroducePcitureUrl
+ res.data.stationPictureUrl = baseurl + res.data.stationPictureUrl
if (res.data.agencyIntroduce) {
res.data.agencyIntroduce = res.data.agencyIntroduce.replace(/\![]()
{
+ e.name = e.classifyName
+ this.tabList.push(e)
+ })
this.list = res.data
+ if (res.data.poserInfoList.length >= 1) {
+ res.data.poserInfoList.forEach(e => {
+ e.image = baseurl + e.posterPictureUrl
+ this.Banners.push(e.image)
+ })
+ if (res.data.poserInfoList[0].video) {
+ res.data.poserInfoList[0].video = baseurl + res.data.poserInfoList[0]
+ .posterVideoUrl
+ this.Banners.push(res.data.poserInfoList[0].video)
+ }
+ } else {
+ this.Banners.push(res.data.stationPictureUrl)
+ this.Banners.push(res.data.stationIntroducePcitureUrl)
+ }
if (res.data.nurseStationLabelList) {
this.nurseStationLabelList = res.data.nurseStationLabelList
}
@@ -213,7 +377,7 @@
},
serveinfo() {
this.pageNum = 1
- itemList(this.nurseStationId, this.pageSize, this.pageNum).then(res => {
+ itemList(this.nurseStationId, this.pageSize, this.pageNum, this.nurseClassifyInfoId).then(res => {
uni.removeStorageSync('Refresh');
res.rows.forEach(e => {
e.itemPictureUrl = baseurl + e.itemPictureUrl
@@ -233,10 +397,6 @@
this.producttotal = res.total
})
},
- testTabClick(index) {
- this.tabIndex = index
- this.choicetab = this.tabIndex
- },
//跳转商品详情页
goCommodityDetails(item) {
uni.navigateTo({
@@ -280,11 +440,11 @@
});
}
},
- onReachBottom() { //下滑加载
- if (this.choicetab == 0) {
+ onReachBottom() { //上滑加载
+ if (!this.choicetab) {
if (this.servelist.length >= this.servetotal) {} else {
this.pageNum++
- itemList(this.nurseStationId, this.pageSize, this.pageNum).then(res => {
+ itemList(this.nurseStationId, this.pageSize, this.pageNum, this.nurseClassifyInfoId).then(res => {
res.rows.forEach(e => {
e.itemPictureUrl = baseurl + e.itemPictureUrl
this.servelist.push(e)
@@ -305,7 +465,7 @@
},
onPullDownRefresh() { //下拉刷新
this.pageNum = 1;
- if (this.choicetab == 0) {
+ if (!this.choicetab) {
itemList(this.nurseStationId, this.pageSize, this.pageNum).then(res => {
res.rows.forEach(e => {
e.itemPictureUrl = baseurl + e.itemPictureUrl
@@ -342,6 +502,9 @@
path: url,
}
},
+ onPageScroll(e) {
+ this.scrollTop = e.scrollTop;
+ },
}
diff --git a/pages/picker/picker.vue b/pages/picker/picker.vue
deleted file mode 100644
index 591b840..0000000
--- a/pages/picker/picker.vue
+++ /dev/null
@@ -1,562 +0,0 @@
-
-
-
-
-
-
-
-
- {{ item }}
- 年
-
-
-
-
- {{ formatNumber(item) }}
- 月
-
-
-
-
- {{ formatNumber(item) }}
- 日
-
-
-
-
-
- {{ formatNumber(item) }}
-
- 时
-
-
-
-
-
- {{ formatNumber(item) }}
-
- 分
-
-
-
-
- 至
-
-
-
-
-
- {{ formatNumber(item) }}
-
- 时
-
-
-
-
-
- {{ formatNumber(item) }}
-
- 分
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/shopping/shopping.vue b/pages/shopping/shopping.vue
index fd1e5ca..39cfa37 100644
--- a/pages/shopping/shopping.vue
+++ b/pages/shopping/shopping.vue
@@ -1,10 +1,10 @@
-
-
+
-
+
{{item.goodsCategoryName}}
@@ -25,21 +25,7 @@
pageSize: 10, //列
total: 0, //list总长度
goodsCategoryList: [], //商品列表list
- // listimg:[
- // {
- // img:'../../static/sp.png',
- // },
- // {
- // img:'../../static/yyss.png',
- // },
- // {
- // img:'../../static/znsb.png',
- // },
- // {
- // img:'../../static/cp.png',
- // },
- // ],
- listcolor: ['#00C176', '#D43953', '#E1AE3C', '#4C7BC9', '#9e4dd0'], //颜色随动
+ listcolor: ['#E69874', '#09C87E', '#E4B958', '#6592DC', '#EF6A80'] //颜色随动
};
},
//1.分享给朋友
@@ -61,10 +47,18 @@
}
},
//初始化加载
- onLoad(options) {},
- onShow() {
+ onLoad(options) {
+ this.pageNum = 1
this.goodsCategory()
},
+ onShow() {
+ let that = this
+ this.pageNum = 1
+ const value = uni.getStorageSync('Refresh');
+ if (value) {
+ that.goodsCategory();
+ }
+ },
methods: {
//跳转到商品列表页面
goProductList(item) {
@@ -116,8 +110,40 @@
diff --git a/pages/site/site.scss b/pages/site/site.scss
index 468727f..b3cfd7e 100644
--- a/pages/site/site.scss
+++ b/pages/site/site.scss
@@ -1,54 +1,173 @@
//护理站列表
.app{
- padding: 0 0 5rpx 0;
- .map{
- padding-top: 100rpx;
- z-index: 1;
- .map{
- z-index: 1;
+ padding: 0;
+ background-color: #fff;
+ }
+ ::v-deep .u-swiper-item{
+ }
+ ::v-deep .u-swiper-image {
+ }
+ ::v-deep .u-tabs{
+ background-color: #F4F5F7 !important;
+ padding-bottom: 20rpx;
+ }
+ .Classificationlist{
+ margin: 30rpx 0 0;
+ width: 100%;
+ display: flex;
+ justify-content: flex-start;
+ flex-wrap: wrap;
+ text-align: center;
+ .itemclass{
+ color: #4C7BC9;
+ width: 25%;
+ height: 190rpx;
+ image{
+ display: block;
+ margin: 0 auto;
+ width: 100rpx;
+ height: 100rpx;
+ }
+ .title{
+ padding: 0 10rpx;
+ width: 100%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ font-size: 30rpx;
+ font-weight: 600;
+ line-height: 70rpx;
+ }
+ }
+ .item{
+ width: 25%;
+ height: 190rpx;
+ image{
+ display: block;
+ margin: 0 auto;
+ width: 100rpx;
+ height: 100rpx;
+ }
+ .title{
+ padding: 0 10rpx;
+ width: 100%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ font-size: 30rpx;
+ font-weight: 500;
+ line-height: 70rpx;
}
}
-
+ }
+ .inputs {
+ border: 1px solid #f0f0f0;
+ width: 90%;
+ height: 65rpx;
+ margin: 0 0 10rpx 50%;
+ transform: translateX(-50%);
+ border-radius: 20rpx;
+ background-color: #F4F5F7;
+ z-index: 999;
+
+ .input {
+ margin: 0 auto;
+ position: absolute;
+ height: 65rpx;
+ // top: 8%;
+ left: 10%;
+ width: 90%;
+ font-size: 26rpx;
+ color: #000000;
+ }
+
+ .icon {
+ background: url(@/static/sousuo.png) no-repeat;
+ width: 30rpx;
+ height: 28rpx;
+ background-size: cover;
+ position: absolute;
+ top: 30%;
+ left: 3%;
+ }
}
.conNew {
- width: 96%;
- // z-index: 999;
- // position: fixed;
- // top: 450rpx;
+ background-color: #F4F5F7;
+ width: 100%;
+ padding: 30rpx 0 50rpx;
margin: 0 auto;
- // left: 2%;
height: 100%;
+ .noorder{
+ margin-top: 90rpx;
+ image{
+ display: block;
+ margin: 0 auto;
+ width: 100rpx;
+ height: 120rpx;
+ }
+ view{
+ text-align: center;
+ font-size: 36rpx;
+ color: #BFBFBF;
+ }
+ }
+ .title{
+ font-size: 32rpx;
+ font-weight: bold;
+ padding-left: 2%;
+ }
.addressContent {
- width: 100%;
+ width: 96%;
+ background-color: #ffffff;
+ margin: 0 auto;
}
.lists {
- background-color: #ffffff;
width: 100%;
- height: 240rpx;
+ height: 300rpx;
margin-bottom: 14rpx;
border-radius: 20rpx;
position: relative;
-
- .nurse {
- font-size: 28rpx;
+ background-color: #ffffff;
+ .tags{
+ display: flex;
position: absolute;
- top: 15%;
+ top: 55%;
left: 35%;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
+ width: 65%;
+ flex-wrap: wrap;
+ .tag{
+ background: #F8D7D1;
+ opacity: 0.8;
+ margin: 0 10rpx 10rpx 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ padding: 0 10rpx;
+ height: 50rpx;
+ line-height: 50rpx;
+ text-align: center;
+ border-radius: 10rpx;
+ font-size: 22rpx;
+ color: #F44B2F;
+ }
+ }
+ .nurse {
+ font-size: 32rpx;
+ position: absolute;
+ top: 12%;
+ left: 35%;
+ width: 63%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
}
.distance {
position: absolute;
- bottom: 20%;
- font-size: 24rpx;
- left: 35%;
+ top: 32%;
+ left:35%;
+ font-size: 27rpx;
color: #666666;
}
@@ -82,20 +201,6 @@
display: block;
margin: 10% auto;
}
-
- .understand {
- font-size: 28rpx;
- color: #ffffff;
- width: 160rpx;
- height: 60rpx;
- line-height: 60rpx;
- text-align: center;
- background-color: #4C7BC9;
- position: absolute;
- bottom: 10%;
- right: 1%;
- border-radius: 35rpx;
- }
}
}
diff --git a/pages/site/site.vue b/pages/site/site.vue
index dbfe565..4e555d1 100644
--- a/pages/site/site.vue
+++ b/pages/site/site.vue
@@ -1,26 +1,58 @@
-
- 什么是护理站?
-
+
+
+
-
-
+
+
+
+
+ {{item.classifyName}}
+
+
+
+
+
+ 更多
+
+
+
+
+
+ 收起
+
+
+
-
-
- {{item.nurseStationName}}
-
- 距离您{{item.distance}}KM
-
-
- 点击了解
+
+ 周边医养机构
+
+
+
+
+
+ {{item.nurseStationName}}
+
+ 距离您{{item.distance}}KM
+
+
+
+ {{uitem.classifyName}}
+
+
+
+
+
+ 暂无护理站
+
+
@@ -36,31 +68,93 @@
+
diff --git a/pages/utabs/u-tabs.vue b/pages/utabs/u-tabs.vue
new file mode 100644
index 0000000..197e400
--- /dev/null
+++ b/pages/utabs/u-tabs.vue
@@ -0,0 +1,385 @@
+
+
+
+
+
+
+
+
+ {{item.dates}}
+
+
+ {{ item[name] || item['name']}}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/192x192.png b/static/192x192.png
deleted file mode 100644
index cfeb33c..0000000
Binary files a/static/192x192.png and /dev/null differ
diff --git a/static/chaxun.png b/static/chaxun.png
deleted file mode 100644
index 0629232..0000000
Binary files a/static/chaxun.png and /dev/null differ
diff --git a/static/cp.png b/static/cp.png
deleted file mode 100644
index 156aab8..0000000
Binary files a/static/cp.png and /dev/null differ
diff --git a/static/dingdan.png b/static/dingdan.png
index df60c20..0f2b51b 100644
Binary files a/static/dingdan.png and b/static/dingdan.png differ
diff --git a/static/fuli.png b/static/fuli.png
new file mode 100644
index 0000000..6827c11
Binary files /dev/null and b/static/fuli.png differ
diff --git a/static/gd.png b/static/gd.png
new file mode 100644
index 0000000..4fdf680
Binary files /dev/null and b/static/gd.png differ
diff --git a/static/head.png b/static/head.png
deleted file mode 100644
index ee21ec4..0000000
Binary files a/static/head.png and /dev/null differ
diff --git a/static/hlz.png b/static/hlz.png
new file mode 100644
index 0000000..725073b
Binary files /dev/null and b/static/hlz.png differ
diff --git a/static/home.png b/static/home.png
deleted file mode 100644
index 8eb8e55..0000000
Binary files a/static/home.png and /dev/null differ
diff --git a/static/huijiantou.png b/static/huijiantou.png
new file mode 100644
index 0000000..b8beb97
Binary files /dev/null and b/static/huijiantou.png differ
diff --git a/static/jjhl.png b/static/jjhl.png
deleted file mode 100644
index 9dc8732..0000000
Binary files a/static/jjhl.png and /dev/null differ
diff --git a/static/jkzx.png b/static/jkzx.png
new file mode 100644
index 0000000..cc7ca69
Binary files /dev/null and b/static/jkzx.png differ
diff --git a/static/kefu.png b/static/kefu.png
new file mode 100644
index 0000000..ca45095
Binary files /dev/null and b/static/kefu.png differ
diff --git a/static/kefuzx.jpg b/static/kefuzx.jpg
new file mode 100644
index 0000000..f749fc5
Binary files /dev/null and b/static/kefuzx.jpg differ
diff --git a/static/lifeserve.png b/static/lifeserve.png
deleted file mode 100644
index 3ef037b..0000000
Binary files a/static/lifeserve.png and /dev/null differ
diff --git a/static/locatinsmall.png b/static/locatinsmall.png
index 14620d1..ab6fc14 100644
Binary files a/static/locatinsmall.png and b/static/locatinsmall.png differ
diff --git a/static/logo.png b/static/logo.png
index 2f386b6..cfeb33c 100644
Binary files a/static/logo.png and b/static/logo.png differ
diff --git a/static/order.png b/static/order.png
deleted file mode 100644
index 98ecbc2..0000000
Binary files a/static/order.png and /dev/null differ
diff --git a/static/pb.png b/static/pb.png
deleted file mode 100644
index cab5f98..0000000
Binary files a/static/pb.png and /dev/null differ
diff --git a/static/person.png b/static/person.png
deleted file mode 100644
index 0d3600c..0000000
Binary files a/static/person.png and /dev/null differ
diff --git a/static/phone.png b/static/phone.png
new file mode 100644
index 0000000..73ebe36
Binary files /dev/null and b/static/phone.png differ
diff --git a/static/shoping.png b/static/shoping.png
new file mode 100644
index 0000000..93f8eaa
Binary files /dev/null and b/static/shoping.png differ
diff --git a/static/shopingw.png b/static/shopingw.png
new file mode 100644
index 0000000..1ea4896
Binary files /dev/null and b/static/shopingw.png differ
diff --git a/static/shopping.png b/static/shopping.png
deleted file mode 100644
index 936f8f9..0000000
Binary files a/static/shopping.png and /dev/null differ
diff --git a/static/sp.png b/static/sp.png
deleted file mode 100644
index 6fa2833..0000000
Binary files a/static/sp.png and /dev/null differ
diff --git a/static/user.png b/static/user.png
index 4cdb845..6e70dbb 100644
Binary files a/static/user.png and b/static/user.png differ
diff --git a/static/yiliaohuli.png b/static/yiliaohuli.png
deleted file mode 100644
index 6974a9b..0000000
Binary files a/static/yiliaohuli.png and /dev/null differ
diff --git a/static/ylfw.png b/static/ylfw.png
deleted file mode 100644
index c1d322b..0000000
Binary files a/static/ylfw.png and /dev/null differ
diff --git a/static/yuyue.png b/static/yuyue.png
deleted file mode 100644
index a7ed0e7..0000000
Binary files a/static/yuyue.png and /dev/null differ
diff --git a/static/yyss.png b/static/yyss.png
deleted file mode 100644
index 65c8b53..0000000
Binary files a/static/yyss.png and /dev/null differ
diff --git a/static/zbgl.png b/static/zbgl.png
new file mode 100644
index 0000000..f181e76
Binary files /dev/null and b/static/zbgl.png differ
diff --git a/static/zhuanjia.png b/static/zhuanjia.png
deleted file mode 100644
index f0e4354..0000000
Binary files a/static/zhuanjia.png and /dev/null differ
diff --git a/static/znsb.png b/static/znsb.png
deleted file mode 100644
index 0917e1f..0000000
Binary files a/static/znsb.png and /dev/null differ
diff --git a/static/zs.png b/static/zs.png
deleted file mode 100644
index 4ef06d4..0000000
Binary files a/static/zs.png and /dev/null differ