26 lines
938 B
Vue
26 lines
938 B
Vue
<template>
|
||
<view>
|
||
<cu-custom bgColor="bg-cyan"><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'>该项目是我公司联合开发的一款高性能的微信小程序。</view>
|
||
<view class='margin-top-sm'>利用成熟的物联网、信息化、人工智能技术,实现医疗场景内各类流程的严格、高标准管理。以便捷的安装、部署方式实现原有业务系统升级,全程可控,最终实现智能化精细管理。</view>
|
||
<view class='margin-top-sm'>更多功能敬请期待!</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
</style> |