| 1234567891011121314151617181920212223242526272829 |
- <view wx:if="{{recorded.length}}" class="grld">
- <view class="group">
- <view class="label"><text class="work work-zuijinshiyong" />最近使用</view>
- <view class="main">
- <navigator version='trial' class="item" target='{{it.appid!=appid?"miniProgram":"self"}}' app-id='{{it.appid}}' path="{{it.path+'?auth='+auth+'&userMsg='+userMsg+'&site='+site}}" wx:for="{{recorded}}" wx:for-item="it" wx:for-index="i" url="{{it.path}}" open-type="{{it.openType||'navigate'}}" wx:key="name" data-item="{{it}}">
- <view class="icon-box" style="background-color: {{it.bColor}};">
- <text class="work {{it.icon}}" style="color: {{it.color}};" />
- </view>
- <view class="name line-1">{{it.name}}</view>
- </navigator>
- </view>
- </view>
- </view>
- <view class="grld">
- <block wx:for="{{entrance}}" wx:key="index">
- <view class="group" wx:if="{{item.list.length}}">
- <view class="label"><text class="work {{item.icon}}" />{{item.label}}</view>
- <view class="main">
- <navigator version='trial' class="item" wx:for="{{item.list}}" wx:for-item="it" wx:for-index="i" target='{{item.appid!=appid?"miniProgram":"self"}}' app-id='{{item.appid}}' path="{{it.path+'?auth='+auth+'&userMsg='+userMsg+'&site='+site}}" url="{{it.path}}" open-type="{{it.openType||'navigate'}}" wx:key="name" data-it="{{it}}" data-item="{{item}}" bindtap="openRecord">
- <view class="icon-box" style="background-color: {{it.bColor}};">
- <text class="work {{it.icon}}" style="color: {{it.color}};" />
- </view>
- <view class="name">{{it.name}}</view>
- </navigator>
- </view>
- </view>
- </block>
- </view>
- <view style="height: 140rpx;" />
|