60 lines
1.8 KiB
Vue
60 lines
1.8 KiB
Vue
<template>
|
||
<view>
|
||
<scroll-view scroll-y class="page">
|
||
<cu-custom bgColor="bg-cyan" :isBack="true"><block slot="backText">返回</block><block slot="content">关于我们</block></cu-custom>
|
||
<view class='margin-xl bg-white padding-xl radius shadow-lg'>
|
||
<view class='text-center margin-bottom text-lg text-grey'>关于智感云医废物联</view>
|
||
<view class='text-content'>
|
||
<view>Hi!欢迎使用智感云医废物联!</view>
|
||
<view class='margin-top-sm'>OpMonitor(智感云),全称为Operation Monitor,利用成熟的物联网、信息化、人工智能技术,实现医疗场景内各类流程的严格、高标准管理。以便捷的安装、部署方式实现原有业务系统升级,全程可控,最终实现智能化精细管理。</view>
|
||
<view class='margin-top-sm'>医废物联致力于让每一次操作都生成一条数据、让每一个流程都由智慧平台支撑、让每一条规范与先进经验都落到日常操作中。</view>
|
||
<view class='margin-top-sm'>更多功能敬请期待!</view>
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
.page {
|
||
width: 100vw;
|
||
height: 100Vh;
|
||
}
|
||
|
||
.UCenter-bg {
|
||
background-image: url(https://image.weilanwl.com/color2.0/index.jpg);
|
||
background-size: cover;
|
||
height: 700rpx;
|
||
display: flex;
|
||
justify-content: center;
|
||
padding-top: 40rpx;
|
||
overflow: hidden;
|
||
position: relative;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
color: #fff;
|
||
font-weight: 300;
|
||
text-shadow: 0 0 3px rgba(0,0,0,0.3);
|
||
}
|
||
.UCenter-bg text{
|
||
opacity: 0.8;
|
||
}
|
||
.UCenter-bg image {
|
||
width: 250rpx;
|
||
height: 250rpx;
|
||
}
|
||
|
||
.UCenter-bg .animation-wave {
|
||
position: absolute;
|
||
bottom: 0;
|
||
}
|
||
</style>
|