修改上传图片安全验证问题

This commit is contained in:
张成
2026-02-14 12:59:21 +08:00
parent 8688b6b82d
commit 64f0267457
54 changed files with 239 additions and 240 deletions

View File

@@ -85,7 +85,7 @@ const FollowPage: React.FC = () => {
}));
} catch (error) {
console.error(`加载${TAB_CONFIG.find(t => t.key === tab)?.label}列表失败:`, error);
console.warn(`加载${TAB_CONFIG.find(t => t.key === tab)?.label}列表失败:`, error);
Taro.showToast({
title: '加载失败',
icon: 'none'
@@ -163,7 +163,7 @@ const FollowPage: React.FC = () => {
}
} catch (error) {
console.error('关注操作失败:', error);
console.warn('关注操作失败:', error);
Taro.showToast({
title: '操作失败',
icon: 'none'
@@ -202,7 +202,7 @@ const FollowPage: React.FC = () => {
try {
load_user_list(default_tab, true);
} catch (error) {
console.error('初始化加载失败:', error);
console.warn('初始化加载失败:', error);
Taro.showToast({
title: '初始化失败',
icon: 'none'
@@ -243,7 +243,7 @@ const FollowPage: React.FC = () => {
// icon: 'success'
// });
} catch (error) {
console.error('取消关注失败:', error);
console.warn('取消关注失败:', error);
Taro.showToast({
title: '操作失败',
icon: 'none'