This commit is contained in:
YunaiV
2025-04-26 18:57:49 +08:00
3 changed files with 17 additions and 9 deletions
+12 -4
View File
@@ -104,13 +104,21 @@
return;
}
if (!chat.toolsMode || chat.toolsMode === mode) {
chat.showTools = !chat.showTools;
// 第二次点击关闭
if (chat.showTools && chat.toolsMode === mode){
handleToolsClose();
return;
}
chat.toolsMode = mode;
if (!chat.showTools) {
// 切换工具栏
if (chat.showTools && chat.toolsMode !== mode) {
chat.showTools = false;
chat.toolsMode = '';
}
// 延迟打开等一下过度效果
setTimeout(()=>{
chat.toolsMode = mode;
chat.showTools = true;
}, 200)
}
function onShowSelect(mode) {
@@ -96,8 +96,8 @@ const groupon = async (poster) => {
text: poster.shareInfo.link,
css: {
position: 'fixed',
left: width * 0.5,
top: width * 1.3,
left: width * 0.75,
top: width * 1.4,
width: width * 0.2,
height: width * 0.2,
},
@@ -110,7 +110,7 @@ const groupon = async (poster) => {
css: {
position: 'fixed',
left: width * 0.75,
top: width * 1.3,
top: width * 1.4,
width: width * 0.2,
height: width * 0.2,
},
+2 -2
View File
@@ -147,7 +147,7 @@ export function jsonParse(str) {
try {
return JSON.parse(str);
} catch (e) {
console.error(`str[${str}] 不是一个 JSON 字符串`);
return '';
console.warn(`str[${str}] 不是一个 JSON 字符串`);
return str;
}
}