去掉来自分享标签

This commit is contained in:
fofolee
2024-01-23 13:40:07 +08:00
parent 6fd5b87a33
commit cfe1653ae4
3 changed files with 15 additions and 5 deletions

View File

@@ -291,7 +291,7 @@ export default {
"默认",
"未分类",
"搜索结果",
"来自分享"
// "来自分享"
);
},
},

View File

@@ -431,7 +431,14 @@ export default {
return data;
},
tagVerify(val, done) {
if (["默认", "未分类", "搜索结果", "来自分享"].includes(val)) {
if (
[
"默认",
"未分类",
"搜索结果",
// "来自分享"
].includes(val)
) {
return done(`_${val}_`);
}
done(val);