102 lines
3.0 KiB
Plaintext
102 lines
3.0 KiB
Plaintext
<!-- 问诊页面 -->
|
|
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
|
<view class="container" style="height: calc(100vh - 96rpx - {{height}}px);">
|
|
<view class="top">
|
|
<view class="top_left" bindtap="go" data-url="/Pages/yishi/service_notice/index">
|
|
<t-image src="https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com/applet/doctor/static/images/yishi/service_notice.png" mode="heightFix" height="108rpx" aria-label="notice" />
|
|
服务通知
|
|
</view>
|
|
<view class="top_right" bindtap="go" data-url="/Pages/yishi/system_notice/index">
|
|
<t-image src="https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com/applet/doctor/static/images/yishi/system_notice.png" mode="heightFix" height="108rpx" aria-label="notice" />
|
|
系统公告
|
|
</view>
|
|
</view>
|
|
|
|
<view class="empty" wx:if="{{ !has_data }}" >
|
|
<t-image src="https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com/applet/doctor/static/images/yishi/wnzhen_empty.png" mode="heightFix" height="108rpx" aria-label="empty" />
|
|
<view class="empty_note">您还未设置在线问诊价格</view>
|
|
</view>
|
|
<van-button color="#3CC7C0" custom-style="width: 92vw;margin: 0 auto;border-radius: 10rpx;" block wx:if="{{ !has_data }}">开通图文问诊</van-button>
|
|
|
|
<view class="tabs" wx:if="{{ has_data }}" >
|
|
<t-tabs
|
|
defaultValue="{{0}}"
|
|
sticky
|
|
bind:change="onTabsChange"
|
|
bind:click="onTabsClick"
|
|
bind:scroll="onStickyScroll"
|
|
t-class="custom-tabs"
|
|
theme="line"
|
|
custom-style="font-size: 32rpx"
|
|
|
|
>
|
|
<t-tab-panel label="快速问诊" value="0">
|
|
<wenzhen-data
|
|
name="李四"
|
|
sex="女"
|
|
age="19"
|
|
desc="VVVVVVVV"
|
|
status="0"
|
|
status_text="待接诊"
|
|
note="xxx"
|
|
/>
|
|
|
|
<wenzhen-data
|
|
name="李放四"
|
|
sex="女"
|
|
age="199"
|
|
desc="VVVVVVVV"
|
|
status="1"
|
|
status_text="接诊中"
|
|
/>
|
|
</t-tab-panel>
|
|
|
|
<t-tab-panel label="问诊购药" value="1">
|
|
<wenzhen-data
|
|
name="张三"
|
|
sex="男"
|
|
age="19"
|
|
desc="VVVVVVVV"
|
|
status="0"
|
|
status_text="待接诊"
|
|
note="xxx"
|
|
/>
|
|
</t-tab-panel>
|
|
<t-tab-panel label="在线问诊" value="2">
|
|
<wenzhen-data
|
|
name="王五"
|
|
sex="女"
|
|
age="19"
|
|
desc="VVVVVVVV"
|
|
status="0"
|
|
status_text="待接诊"
|
|
note="xxx"
|
|
/>
|
|
</t-tab-panel>
|
|
<t-tab-panel label="公益问诊" value="3">
|
|
<wenzhen-data
|
|
name="赵柳"
|
|
sex="女"
|
|
age="19"
|
|
desc="VVVVVVVV"
|
|
status="0"
|
|
status_text="待接诊"
|
|
note="xxx"
|
|
/>
|
|
</t-tab-panel>
|
|
<t-tab-panel label="问诊结束" value="4">
|
|
<wenzhen-data
|
|
name="谢广坤"
|
|
sex="女"
|
|
age="199"
|
|
desc="VVVVVVVV"
|
|
status="2"
|
|
status_class="status_end"
|
|
status_text="快速问诊"
|
|
/>
|
|
</t-tab-panel>
|
|
</t-tabs>
|
|
</view>
|
|
|
|
<view style="height: 200rpx;"></view>
|
|
</view> |