From c17dba9251df86e0fe23afe87ef540c493fae219 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期二, 25 二月 2025 16:08:40 +0800 Subject: [PATCH] treeselect禁用设置 --- src/utils/validate.js | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/utils/validate.js b/src/utils/validate.js index 57a568e..2f80643 100644 --- a/src/utils/validate.js +++ b/src/utils/validate.js @@ -78,3 +78,7 @@ } return Array.isArray(arg) } + +export function isHttp(url) { + return url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1; +} -- Gitblit v1.8.0