智慧申请系统
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.

13 lines
679 B

  1. <!--index.wxml-->
  2. <view class="container">
  3. <image class="logo" mode="aspectFit" src="/images/logo.png" />
  4. <view class="f-c f-18">智慧养老平台</view>
  5. <view class="m-t20 menuBox">
  6. <view class="menuRow" wx:for="{{ menus }}" wx:key="index" >
  7. <view class="menuItem" bindtap="getUserProfile" wx:for="{{item}}" wx:for-item="menuItem" wx:key="loginType" data-item="{{menuItem.type}}" data-loginType="{{menuItem.loginType}}">
  8. <image class="icon" mode="aspectFit" src="{{menuItem.img}}" />
  9. <view class="f-c f-16 f-w">{{menuItem.name}}</view>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="bottom-text f-14 f-c ">惠军智慧养老平台APP</view>
  14. </view>