55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
<!--packageH/circleCommunity/circleVideogood/circleVideogood.wxml-->
|
|
<view class="card_goods">
|
|
<view class="search">
|
|
<view class="left">
|
|
<view class="searchBox">
|
|
<view class="img-icon">
|
|
<view class="img-icon-btn"></view>
|
|
</view>
|
|
<van-field value="{{inputsData}}" placeholder="搜索商品标题" border="{{ false }}" bind:change="inpbtn" clearable bind:clear="inpbtnclear" />
|
|
</view>
|
|
</view>
|
|
<view class="right">
|
|
<view class="search_bth" catchtap="getRecommendGoods">
|
|
<view class="span">搜索</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="title">
|
|
<view class="line_left"></view>
|
|
<view class="h1">搜索结果</view>
|
|
<view class="line-right"></view>
|
|
</view>
|
|
<view class="goods_list" wx:if="{{goodList}}">
|
|
<view class="goods_box {{item.id == chooseGoods?'cg':''}}" wx:for="{{goodList}}" wx:key="index" catchtap="chooseGood"
|
|
data-id="{{item.id}}">
|
|
<view class="goods_img">
|
|
<image src="{{item.thumb}}" mode='widthFix' />
|
|
</view>
|
|
<view class="ul goods_text">
|
|
<view class="li name">
|
|
{{ item.title}}
|
|
</view>
|
|
<view class="li sum">
|
|
<view class="span">
|
|
<text class="font">{{language['money']}}</text>{{ item.price }}
|
|
</view>
|
|
<icon class="icon" wx:if="{{item.id == chooseGoods}}"></icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="noMoes" wx:if="{{!goodList}}">
|
|
<view class="img">
|
|
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/no-more-product.png" mode='widthFix' />
|
|
</view>
|
|
</view>
|
|
<view style="height: 100rpx;"></view>
|
|
<view class="card_goods_btm {{chooseGoods?'':'noG'}}">
|
|
<view class="button" catchtap="gotoRelease">确定选择</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|