water_xcx/pages/index/index.wxml

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-04-15 15:44:51 +08:00
<!--pages/index/index.wxml-->
<view class="container">
<!--<t-dropdown-menu>
<t-dropdown-item
label="{{label}}"
options="{{singleSelect.options}}"
value="{{singleSelect.value}}"
keys="{{keys}}"
name="{{singleSelect.name}}"
bindchange="handleSingleSelect"
/>
</t-dropdown-menu>-->
<view class="example-search">
<t-search model:value="{{projectName}}" bindtap="search" placeholder="搜索项目" />
</view>
<view class="map-base">
<map
class="map"
markers="{{markers}}"
longitude="{{longitude}}"
latitude="{{latitude}}"
scale="{{scale}}"
></map>
</view>
<view class="foot" style="width:{{bottmwidth}};transform: translateX({{slateX}});" bindtouchstart="myTouchStart" bindtouchmove="myTouchMove">
<view class="foot-item" wx:for="{{userInfo.menus}}" wx:key="{{item.id}}" >
<view
class="t-foot"
wx:for="{{item}}"
data-path="{{item.component}}"
bindtap="toJump"
>
<image src="{{item.icon}}" />
<text>{{item.name}}</text>
</view>
</view>
</view>
</view>