From 72edc07a7fe714316d318708710c150f7d247bbc Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期四, 28 三月 2024 11:50:19 +0800 Subject: [PATCH] 图书分类、列表、详情页bug修改 --- pages/bookServices/assort/index.wxml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/bookServices/assort/index.wxml b/pages/bookServices/assort/index.wxml index b2a5581..26407f4 100644 --- a/pages/bookServices/assort/index.wxml +++ b/pages/bookServices/assort/index.wxml @@ -70,7 +70,7 @@ <view wx:for="{{startList}}" wx:for-item="item" - wx:key="item.id" + wx:key="id" id="{{ 'list' + item.id}}" class="class-box" wx:if="{{!listLoading}}" @@ -89,7 +89,7 @@ > <view class="assort-img"> <image - src="{{citem.icon ? citem.icon : '/static/images/bookService/assort/book-img.png'}}" + src="{{citem.icon ? citem.icon : '/static/images/default-book-img.png'}}" mode="widthFix" /> </view> @@ -103,7 +103,7 @@ > <view class="assort-img"> <image - src="{{item.icon ? item.icon : '/static/images/bookService/assort/book-img.png'}}" + src="{{item.icon ? item.icon : '/static/images/default-book-img.png'}}" mode="widthFix" ></image> </view> -- Gitblit v1.9.1