1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <view class='page' ref='saveChildRef0'>
- <view style='margin-top: {{statusBarHeight}}px; height: {{titleBarHeight}}px; line-height: {{titleBarHeight}}px; padding-left: 14px'>
- </view>
- <view class="logo-area {{adminInfo.adminId?'':'margintop120'}}">
- <image src='../../static/home/logo.svg' onTap="startComponent">
- </image>
- </view>
- <view>
- <van-radio-group class='radio-group' value='{{ type }}' direction='horizontal' onChange='changeRadio' ref='saveChildRef1'>
- <van-radio name='1' label-class='text-white' checked-color='#4AA39E' custom-class='padding-sm' ref='saveChildRef2'>
- {{international.Female_guests[language]}}
- </van-radio>
- <van-radio name='2' label-class='text-white' checked-color='#4AA39E' custom-class='padding-sm' ref='saveChildRef3'>
- {{international.foreign_guests[language]}}
- </van-radio>
- </van-radio-group>
- </view>
- <view class='home-header-img'>
- <image class=" " src='http://hanghui.oss-cn-gz-ysgzlt-d01-a.ltops.gzdata.com.cn/photo/20221130/242152d9faf04b7081b58e093d21fc54.jpg' alt=" ">
- </image>
- </view>
- <view class='component-list'>
- <view class='component-item'>
- <image src='../../static/home/visitor.png' onTap='antmoveAction' data-antmove-tap='visitors'>
- </image>
- <van-icon class='tip' name='question-o' data-type='appointment' onTap='showTip' ref='saveChildRef4'>
- </van-icon>
- </view>
- <view class='component-item'>
- <image src='../../static/home/regular.png' onTap='antmoveAction' data-antmove-tap='regular'>
- </image>
- <van-icon class='tip' name='question-o' data-type='regular_tip' onTap='showTip' ref='saveChildRef5'>
- </van-icon>
- </view>
- </view>
- <view class="component-area {{adminInfo.adminId?'height370':''}}">
- <view class='component' a:for='{{component_list}}' data-id='{{item.id}}' a:key='{{id}}' a:if='{{!(item.id==2&&!adminInfo.adminId)&&!(item.id==1&&!adminInfo.adminId)}}' ref-numbers='{{component_list}}' onTap='antmoveAction' data-antmove-tap='goto'>
- <image src='{{item.icon}}'>
- </image>
- <text>
- {{language=='ch'?item.name_ch:item.name_en}} </text>
- </view>
- </view>
- </view>
|