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.
14 lines
679 B
14 lines
679 B
<!--index.wxml-->
|
|
<view class="container">
|
|
<image class="logo" mode="aspectFit" src="/images/logo.png" />
|
|
<view class="f-c f-18">智慧养老平台</view>
|
|
<view class="m-t20 menuBox">
|
|
<view class="menuRow" wx:for="{{ menus }}" wx:key="index" >
|
|
<view class="menuItem" bindtap="getUserProfile" wx:for="{{item}}" wx:for-item="menuItem" wx:key="loginType" data-item="{{menuItem.type}}" data-loginType="{{menuItem.loginType}}">
|
|
<image class="icon" mode="aspectFit" src="{{menuItem.img}}" />
|
|
<view class="f-c f-16 f-w">{{menuItem.name}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom-text f-14 f-c ">惠军智慧养老平台APP</view>
|
|
</view>
|