You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<!--pages/list/culturalUnit/index.wxml-->
|
|
|
|
|
<title title="文旅单位"></title>
|
|
|
|
|
<navigator wx:for="{{list}}" url="/pages/info/culturalUnitInfo/index?id={{item.id}}" class="item">
|
|
|
|
|
<image src="{{item.head_img}}" mode="aspectFill"></image>
|
|
|
|
|
<view class="textOver title">{{item.company_name}}</view>
|
|
|
|
|
<view class="location textOver"><view class="iconfont icon-location"></view><text class="textOver">{{item.address}}</text></view>
|
|
|
|
|
</navigator>
|
|
|
|
|
<view class="nomoredata" wx:if="{{list.length==0}}">暂无数据</view>
|