companyIntroduction.vue 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <div class="page_companyIntroduction">
  3. <div class="companyIntroductionTitle">
  4. <i class="iconfont icon-zuojiantou jiantou" @click="$router.go(-1)"></i>
  5. <span class="titleName">公司介绍</span>
  6. </div>
  7. <div class="introduce">
  8. <p>酷医云是一家正在改变血透行业的科技公司</p>
  9. <br />
  10. <p>我们致力于用技术赋能血透产业,打造值得信赖的血透医疗互联网平台,推动血透产业升级。</p>
  11. <br />
  12. <p>酷医云,是专为肾科和血透中心研发的免费血透管理平台,覆盖诊前、诊中、诊后全流程管理;为血透中心提供覆盖智能营销管理、血透管理、慢病管理、医患沟通、进销存管理以及商城管理等全流程一体化的管理平台。</p>
  13. <br />
  14. <p>平台目前有血液透析管理、患者关系管理、慢病管理系统、线上商城系统几大业务,我们致力于用一个平台实现院内院外全方位管理。</p>
  15. <br />
  16. <p>在酷医云,我们既着眼于现实,用产品和服务帮助每一所血透机构实现互联网医疗+的改革方案;也放眼于未来,通过数据挖掘、人工智能为血透医疗机构带来真正更深远的价值。</p>
  17. <br />
  18. </div>
  19. </div>
  20. </template>
  21. <script>
  22. import { setRem } from "@/libs/functionRem";
  23. export default {
  24. created(){
  25. setRem()
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .page_companyIntroduction {
  31. .companyIntroductionTitle {
  32. background: #fff;
  33. padding: 0 1.125rem;
  34. height: 3.125rem;
  35. display: flex;
  36. align-items: center;
  37. }
  38. .jiantou {
  39. font-size: 1.5rem;
  40. font-weight: 600;
  41. margin-right: 7rem;
  42. }
  43. .titleName {
  44. font-size: 1.125rem;
  45. font-weight: 600;
  46. }
  47. .introduce {
  48. padding: 0 1.125rem;
  49. p {
  50. font-size: 1rem;
  51. line-height: 1.125rem;
  52. }
  53. }
  54. }
  55. </style>