12345678910111213141516171819 |
- <view class='dotLine-index {{className}}' style='{{style}}' ref='saveChildRef0'>
- <view class='tip'>
- <block a:for='{{tabList}}' ref-numbers='{{tabList}}'>
- <view a:if='{{index !== 0}}' class='dot-line-area' style='width: {{width}}rpx'>
- <view class='dot-line' style='width: {{item.width}}rpx'>
- </view>
- <view class='dot-line-behind' style='width: {{width}}rpx'>
- </view>
- </view>
- <view class='dot-area'>
- <view class="dot {{item.isPass?'dot-start':'dot-end'}}">
- </view>
- <text class="{{item.isPass?'text-white':'text-light'}}">
- {{language=='en'?item.name1:item.name}}{{information}}
- </text>
- </view>
- </block>
- </view>
- </view>
|