109 lines
3.4 KiB
Plaintext
109 lines
3.4 KiB
Plaintext
|
|
<van-tabbar active="{{ active }}" bind:change="onChange" z-index="9999"
|
|
active-color="#3CC7C0" inactive-color="#999999" wx:if="{{usertype != 3}}" >
|
|
|
|
<van-tabbar-item info="{{index_info}}" data-url="{{listAll.list2[0].pagePath}}" url="{{listAll.list2[0].pagePath}}">
|
|
<image
|
|
slot="icon"
|
|
src="{{ listAll.list2[0].iconPath }}"
|
|
data-url="{{ listAll.list2[0].pagePath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
/>
|
|
<image
|
|
slot="icon-active"
|
|
src="{{ listAll.list2[0].selectedIconPath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
data-url="{{ listAll.list2[0].pagePath }}"
|
|
/>
|
|
{{listAll.list2[0].text}}
|
|
</van-tabbar-item>
|
|
|
|
<van-tabbar-item info="{{wenzhen_info}}" data-url="{{listAll.list2[1].pagePath}}" url="{{listAll.list2[1].pagePath}}">
|
|
<image
|
|
slot="icon"
|
|
src="{{ listAll.list2[1].iconPath }}"
|
|
data-url="{{ listAll.list2[1].pagePath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
/>
|
|
<image
|
|
slot="icon-active"
|
|
src="{{ listAll.list2[1].selectedIconPath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
data-url="{{ listAll.list2[1].pagePath }}"
|
|
/>
|
|
{{listAll.list2[1].text}}
|
|
</van-tabbar-item>
|
|
|
|
<van-tabbar-item info="{{my_info}}" data-url="{{listAll.list2[2].pagePath}}" url="{{listAll.list2[2].pagePath}}">
|
|
<image
|
|
slot="icon"
|
|
src="{{ listAll.list2[2].iconPath }}"
|
|
data-url="{{ listAll.list2[2].pagePath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
/>
|
|
<image
|
|
slot="icon-active"
|
|
src="{{ listAll.list2[2].selectedIconPath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
data-url="{{ listAll.list2[2].pagePath }}"
|
|
/>
|
|
{{listAll.list2[2].text}}
|
|
</van-tabbar-item>
|
|
</van-tabbar>
|
|
|
|
<van-tabbar active="{{ active }}" bind:change="onChange" z-index="9999"
|
|
active-color="#74A2FA" inactive-color="#999999" wx:if="{{usertype == 3}}" >
|
|
<van-tabbar-item info="{{my_info}}" data-url="{{listAll.list1[0].pagePath}}" url="{{listAll.list1[0].pagePath}}">
|
|
<image
|
|
slot="icon"
|
|
src="{{ listAll.list1[0].iconPath }}"
|
|
data-url="{{ listAll.list1[0].pagePath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
/>
|
|
<image
|
|
slot="icon-active"
|
|
src="{{ listAll.list1[0].selectedIconPath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
data-url="{{ listAll.list1[0].pagePath }}"
|
|
/>
|
|
{{listAll.list1[0].text}}
|
|
</van-tabbar-item>
|
|
<van-tabbar-item info="{{my_info}}" data-url="{{listAll.list1[1].pagePath}}" url="{{listAll.list1[1].pagePath}}">
|
|
<image
|
|
slot="icon"
|
|
src="{{ listAll.list1[1].iconPath }}"
|
|
data-url="{{ listAll.list1[1].pagePath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
/>
|
|
<image
|
|
slot="icon-active"
|
|
src="{{ listAll.list1[1].selectedIconPath }}"
|
|
mode="aspectFit"
|
|
style="width: 30px; height: 18px;"
|
|
data-url="{{ listAll.list1[1].pagePath }}"
|
|
/>
|
|
{{listAll.list1[1].text}}
|
|
</van-tabbar-item>
|
|
</van-tabbar>
|
|
<t-dialog
|
|
visible="{{ dialog_visible }}"
|
|
title="温馨提示"
|
|
content="{{dialog_content}}"
|
|
>
|
|
<view slot="cancel-btn" class="dialog dialog_cancel_btn" bindtap="cancelDialog">
|
|
取消
|
|
</view>
|
|
<view slot="confirm-btn" class="dialog dialog_confirm_btn" bindtap="confirmDialog">
|
|
确定
|
|
</view>
|
|
</t-dialog>
|