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.
19 lines
748 B
19 lines
748 B
<view >
|
|
<!-- <view class="title">{{images.model_name}}</view> -->
|
|
<view class="image_upload_title" >
|
|
<view class="vb"></view>
|
|
<view class="text">{{images.model_name}}</view>
|
|
</view>
|
|
<view class="model-card">
|
|
<view class="b-image" bind:tap="bigImgClick" id="{{images.prompt_id}}">
|
|
<t-image t-class="b-image__img" src="{{images.img_url_thumb}}" mode="aspectFill" />
|
|
</view>
|
|
<view class="s-image">
|
|
<block wx:for="{{images.listImg}}" wx:for-item="item" wx:key="index">
|
|
<view class="s-image-item" bind:tap="smallImgClick" id="{{item.prompt_id}}">
|
|
<t-image t-class="b-image__img" src="{{item.img_url_thumb}}" mode="aspectFill" />
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</view> |