You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
<view class="tabbar"> |
|
<block wx:for="{{tabbar}}" wx:key="index"> |
|
<view class="custom" wx:if="{{item.custom && userInfo.DoctorLevel<3}}" bind:tap="handleTab" data-index="{{index}}"> |
|
<image class="add" src="{{imageUrl}}tabbar/add.png?t={{Timestamp}}"></image> |
|
<view class="popup-tip" wx:if="{{showEntryCase}}"> |
|
<image class="close" catch:tap="handleClsoeCaseTip" src="{{imageUrl}}icon-close-white.png?t={{Timestamp}}"></image> |
|
<view class="content"> |
|
点击 |
|
<text class="plus">+</text> |
|
,可录入病历 |
|
<view></view> |
|
邀约合作医生一起讨论哦 |
|
</view> |
|
<view class="pt-footer"> |
|
<view class="ok">去录入</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view |
|
class="tab-item {{active===item.activeIndex && 'active'}}" |
|
wx:elif="{{!item.custom}}" |
|
bind:tap="handleTab" |
|
data-index="{{index}}" |
|
> |
|
<view class="icon-wrap"> |
|
<view class="dot" wx:if="{{notice && index===3}}"></view> |
|
<image class="icon" src="{{imageUrl}}tabbar/{{item.icon}}?t={{Timestamp}}"></image> |
|
<image class="icon-active" src="{{imageUrl}}tabbar/{{item.iconActive}}?t={{Timestamp}}"></image> |
|
</view> |
|
<view class="name">{{item.name}}</view> |
|
</view> |
|
</block> |
|
</view>
|
|
|