- <!--pagesPublic/pages/tdcr/tdcr-list/index.wxml-->
- <view
- capture-bind:touchmove="handleTouchmove"
- capture-bind:touchstart="handleTouchstart"
- capture-catch:touchend="handleTouchend"
- class="main" style="background-image: url('{{imgUrl}}tdcrlist/tdcrlist3.png');">
- <view class="map-block" style="background-image: url('{{imgUrl}}tdcrlist/tdcrlist1.png');">
- <view class="map-block-item" wx:for="{{list}}" style="top: {{item.top}}vh;left: {{item.left}}vw;">
- <view bindtap="gotoDetail" data-index="{{index}}" class="item-name" style="background-image:url('{{imgUrl}}tdcrlist/{{item.nameStyle.img}}');{{item.nameStyle.color ? 'color: ' + item.nameStyle.color + ';' : ''}}{{item.nameStyle.top ? 'top: ' + item.nameStyle.top + 'vh;' : ''}}{{item.nameStyle.left ? 'left: ' + item.nameStyle.left + 'vw;' : ''}}{{item.nameStyle.x ? 'background-position-x: ' + item.nameStyle.x + 'vw;' : ''}}">{{item.nameStyle.txt}}</view>
- <view class="item-line" style="height: {{item.lineStyle.height}}vh;left: {{item.lineStyle.left}}vw;top: {{item.lineStyle.top}}vh;"></view>
- <view class="item-postion" style="background-image: url('{{imgUrl}}tdcrlist/tdcrlist11.png');left: {{item.postionStyle.left}}vw;top: {{item.postionStyle.top}}vh;"></view>
- </view>
- </view>
- </view>
|