From f46786f11c5c08ead7501a82e5a71430ad69b782 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期日, 27 四月 2025 17:39:24 +0800
Subject: [PATCH] 修复线索问题定位错误问题
---
components/gallery/index.wxml | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/components/gallery/index.wxml b/components/gallery/index.wxml
index 0be9eaf..1d74a1f 100644
--- a/components/gallery/index.wxml
+++ b/components/gallery/index.wxml
@@ -1,7 +1,7 @@
<!--component/mygallery/mygallery.wxml-->
<page-container show="{{show}}">
<view class="fyui-gallery {{show ? 'fyui-gallery_show' : ''}} {{extClass}}">
- <mp-icon wx:if="{{showRemark}}" class="fyui-gallery__close" icon="close" color="white" size="26" bindtap="hideGallery"></mp-icon>
+ <t-icon wx:if="{{showRemark}}" class="fyui-gallery__close" name="close" color="white" size="26" bindtap="hideGallery"></t-icon>
<view class="fyui-gallery__info" wx:if="{{true}}">{{current+1}} / {{currentImgs.length}}</view>
<swiper class="fyui-gallery__img__wrp" bindtap="toggle" indicator-dots="{{false}}" bindanimationfinish="change" current="{{current}}" autoplay="{{false}}" duration="{{500}}">
<block wx:for="{{currentImgs}}" wx:key="index">
@@ -26,8 +26,8 @@
</block>
</scroll-view>
<view wx:if="{{showRemark}}" class="fyui-gallery__tool">
- <mp-icon mode="filled" class="fyui-gallery__tool__rotate" icon="refresh" color="white" size="26" data-clockwise="{{true}}" bindtap="rotateImg"></mp-icon>
- <mp-icon mode="filled" class="fyui-gallery__tool__rotate left" icon="refresh" color="white" size="26" data-clockwise="{{false}}" bindtap="rotateImg"></mp-icon>
+ <t-icon class="fyui-gallery__tool__rotate" name="rotate" color="white" size="26" data-clockwise="{{true}}" bindtap="rotateImg"></t-icon>
+ <t-icon class="fyui-gallery__tool__rotate left" name="rotate" color="white" size="26" data-clockwise="{{false}}" bindtap="rotateImg"></t-icon>
</view>
</view>
</page-container>
\ No newline at end of file
--
Gitblit v1.9.3