123 lines
3.2 KiB
Vue
123 lines
3.2 KiB
Vue
<template>
|
||
<view class="app">
|
||
<view class="concent">
|
||
<view class="background">
|
||
<image src="/static/logo.png" mode=""></image>
|
||
<view>
|
||
<view class="detailed">
|
||
<view class="title">
|
||
山东贴心智养简介
|
||
</view>
|
||
<view class="" style="text-indent: 2em;">
|
||
96558是以24小时呼叫中心为载体,以多元化服务体系为依托,为社区居民特别是老年人提供紧急救助、精神慰藉、健康管理和便民服务的综合性智慧健康养老服务平台。
|
||
2012年以来,先后承接了济南市民政局1万余名80岁以上低保、空巢、贫困老人的居家养老服务工作、济南市委老干部局3000余户离退休老干部的居家养老服务工作、山东省委老干部局1800户离休老干部的居家养老服务项目,以及远郊区县5个分平台的筹建及运营工作。
|
||
截止目前,平台在网用户已达30余万人,活跃用户4万余人,平台日呼入量近600人次,累计完成紧急援助近6000人次,累计提供各种服务近200万次,居民对服务的满意率达到99%。
|
||
2017年11月,公司被山东省质监局、山东省发改委正式授予“山东省服务标准化示范单位”称号。同时,先后多次被中国服务贸易协会授予
|
||
“健康养老最佳商业模式机构”、“最具成长型服务企业”、“健康养老品牌服务机构”、“服务贸易创新型企业”等荣誉称号。
|
||
<view class="btn" @tap='phone'>
|
||
立即呼叫
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {};
|
||
},
|
||
methods: {
|
||
phone() {
|
||
var that = this
|
||
uni.getSystemInfo({
|
||
success: function(res) {
|
||
if (res.platform == 'ios') {
|
||
uni.makePhoneCall({
|
||
phoneNumber: '053196558' //仅为示例
|
||
});
|
||
} else {
|
||
uni.showActionSheet({
|
||
itemList: ['呼叫'],
|
||
success: function(res) {
|
||
if (res.tapIndex + 1 == 1) {
|
||
uni.makePhoneCall({
|
||
phoneNumber: '053196558' //仅为示例
|
||
});
|
||
}
|
||
},
|
||
fail: function(res) {}
|
||
});
|
||
}
|
||
}
|
||
});
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.app {
|
||
padding-top: 10rpx;
|
||
|
||
.btn {
|
||
background-color: #4C7BC9;
|
||
text-align: center;
|
||
color: #FFFFFF;
|
||
width: 70%;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
margin: 80rpx auto;
|
||
text-indent: 0em;
|
||
border-radius: 10rpx;
|
||
}
|
||
|
||
.concent {
|
||
width: 701rpx;
|
||
height: 1700rpx;
|
||
background: #4C7BC9;
|
||
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||
border-radius: 20rpx;
|
||
margin: 14rpx auto 20px;
|
||
|
||
.background {
|
||
position: relative;
|
||
width: 657rpx;
|
||
height: 1650rpx;
|
||
background: #FFFFFF;
|
||
border-radius: 25rpx;
|
||
background-color: white;
|
||
margin: 0 auto;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
|
||
image {
|
||
width: 178rpx;
|
||
height: 200rpx;
|
||
background: #FFFFFF;
|
||
border-radius: 25px;
|
||
margin-left: 68%;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.detailed {
|
||
width: 657rpx;
|
||
padding: 0 42rpx;
|
||
line-height: 56rpx;
|
||
}
|
||
|
||
.detailed view {}
|
||
|
||
.title {
|
||
text-align: center;
|
||
font-size: 36rpx;
|
||
font-weight: 600;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
</style>
|