12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back" bind:tabPath="tabPath">
- <view slot="info" class="container main">
- <view class="zero one">
- <view class="one_1">
- <input type="text" value="{{searchInfo.title}}" bindconfirm="search" placeholder="请输入话题名称" />
- </view>
- <view class="one_2">
- <button type="primary" bindtap="toAdd">添加</button>
- </view>
- </view>
- <view class="zero two">
- <scroll-view scroll-y="true" class="scroll-view">
- <view class="list-scroll-view">
- <view class="list" wx:for="{{list}}" wx:key="item">
- <view class="info">
- <view class="list_2">
- <view class="other">
- <view class="other_1">
- <text>话题名称:</text>
- <text class="names">{{item.title||'暂无'}}</text>
- </view>
- <view class="other_1">
- <text>来源:</text>
- <text>{{item.origin||'暂无'}}</text>
- </view>
- <view class="other_1">
- <text>发布时间:</text>
- <text>{{item.create_time||'暂无'}}</text>
- </view>
- <view class="other_1">
- <text>是否公开:</text>
- <text>{{item.is_show=='0'?'公开':'不公开'}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="btn">
- <button type="primary" bindtap="toEdit" data-id="{{item._id}}" size="mini">信息维护</button>
- <button size="mini" type="warn" bindtap="toDel" data-id="{{item._id}}">信息删除</button>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
|