| 1234567891011121314151617181920212223242526272829303132333435 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <!-- 加载图层 -->
- <loading wx:if="{{loading}}"></loading>
- <!-- 粘性布局的查询条件 -->
- <van-sticky scroll-top="0">
- <van-search model:value="{{ searchText }}" bind:change="onSearchText" bind:search="doSearch" use-action-slot placeholder="搜索 客户名称/地址/标签/电话/备注">
- </van-search>
- <view style="display: flex; padding: 4vw; background: white;">
- <view class="image-frame">
- <van-image round width="20rpx" height="24rpx" src="/static/image/Vector.png" />
- </view>
- <view>沈阳蒙娜丽莎红星美凯龙专营店</view>
- </view>
- </van-sticky>
- <!-- 暂无数据 -->
- <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
- <!-- 列表 -->
- <view wx:for="{{tableData}}" style="margin:10px;background:white;border-radius:15rpx;padding: 10px;">
- <view wx:for="{{item}}" wx:for-item="item_" wx:for-index="index_" >
- <view style="width: 100vw; display:flex;align-items:center; font-size:36rpx;margin-top: 5px;"data-item="{{item_}}" bindtap="clickName">
- <view style="margin-left: 5vw;font-size: 14px;" >
- {{item_.orgName}}
- </view>
- </view>
- </view>
- </view>
-
- <van-divider wx:if="{{noMore}}" contentPosition="center" borderColor="#DCDCDC">{{$t['noMore']}}</van-divider>
- <view style="height: 135rpx;"></view>
-
-
|