Files
kairos_miniapp/pages/expert/index.wxml
2026-03-27 17:55:18 +08:00

104 lines
2.8 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<view class="head flex-column-center">
<view class="icon flex-center">
<t-icon name="call-1" />
</view>
<view class="t-1">专家服务</view>
<view class="t-2">专业医护团队为您守护</view>
</view>
<view class="padding">
<view class="c-1">
<view class="flex-between">
<view class="flex-align"
style="gap: 20rpx;">
<t-icon name="check-circle" />
可咨询次数
</view>
<view class="num">{{count}}</view>
</view>
<view class="tip">本月剩余 {{count}} 次免费咨询机会</view>
</view>
<t-button block
theme="primary"
class="btn"
icon="call-1"
bind:tap="onPlay">
一键拨打专家电话
</t-button>
<view class="service-card">
<view class="header flex-align">
<view class="icon">
<t-icon name="time" />
</view>
<view class="title">服务时间</view>
</view>
<view class="content">
<view class="row">
<view class="label">工作日</view>
<view class="time">09:00 - 21:00</view>
</view>
<view class="row">
<view class="label">周末及节假日</view>
<view class="time">10:00 - 18:00</view>
</view>
</view>
<view class="status">
<view class="dot"></view>
<view class="text">当前服务中</view>
</view>
</view>
<view class="emergency-card">
<view class="icon flex-center">
<t-icon name="error-triangle" />
</view>
<view style="flex: 1;">
<view class="t-1">紧急情况处理</view>
<view>如遇以下紧急情况,请立即拨打</view>
<view style="margin-bottom: 20rpx;"><text class="num">120</text> 或前往急诊</view>
<view class="list">
<view class="item">大量出血或伤口裂开</view>
<view class="item">高热不退体温≥39°C</view>
<view class="item">剧烈疼痛无法缓解</view>
<view class="item">呼吸困难或胸痛</view>
<view class="item">意识模糊或昏迷</view>
</view>
</view>
</view>
<view class="emergency-card service">
<view class="icon flex-center">
<t-icon name="info-circle" />
</view>
<view style="flex: 1;">
<view class="t-1">服务说明</view>
<view class="list">
<view class="item">每次通话时长不超过15分钟</view>
<view class="item">专家会根据您的情况提供专业建议</view>
<view class="item">复杂问题可能需要您到院面诊</view>
<view class="item">建议提前准备好相关检查报告</view>
<view class="item">咨询记录会同步到您的康复档案</view>
</view>
</view>
</view>
<view class="express">
<view style="font-weight: 700;">专家团队</view>
<view class="item flex-align"
wx:for="{{list}}"
wx:key="index">
<view class="icon flex-center">{{item.s}}</view>
<view>
<view class="t-1">{{item.name}}</view>
<view class="t-2">{{item.title}}</view>
<view class="t-3">{{item.desc}}</view>
</view>
</view>
</view>
</view>