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/quest/quest.wxml-->
|
|
|
|
<view class="main">
|
|
|
|
<!-- 素材展示 -->
|
|
|
|
<view class="mat">
|
|
|
|
<view class="mat_card" data-name="最新素材" data-url="/pages/material/subpage/newest/newest" bindtap="to">
|
|
|
|
<view class="mat_top">
|
|
|
|
<!-- <view class="mat_image"></view> -->
|
|
|
|
<image class="mat_image" src="{{cdn + '/upload/4aa061649ffd458a8d340bf89933bb021655158747555.png'}}"></image>
|
|
|
|
</view>
|
|
|
|
<view style="width: 328rpx;height: 1rpx;background: linear-gradient(90deg, rgba(232, 232, 232, 0) 0%, #E8E8E8 49%, rgba(232, 232, 232, 0) 100%);"></view>
|
|
|
|
<view class="mat_bottom">最新素材</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="mat_card" wx:for="{{questes}}" wx:key="index" data-id="{{item.id}}" data-name="{{item.name}}" data-url="/pages/material/subpage/newest/newest" bindtap="to">
|
|
|
|
<view class="mat_top">
|
|
|
|
<!-- <view class="mat_image"></view> -->
|
|
|
|
<image class="mat_image" src="{{cdn + item.coverUrl}}"></image>
|
|
|
|
</view>
|
|
|
|
<view style="width: 328rpx;height: 1rpx;background: linear-gradient(90deg, rgba(232, 232, 232, 0) 0%, #E8E8E8 49%, rgba(232, 232, 232, 0) 100%);"></view>
|
|
|
|
<view class="mat_bottom">{{item.name}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|