|
|
@ -123,13 +123,17 @@ if ($('#add_video_form').get(0)) { |
|
|
|
// 添加视频表单处理
|
|
|
|
// 添加视频表单处理
|
|
|
|
$('#add_video_form .jsbtn').click(function (e) { |
|
|
|
$('#add_video_form .jsbtn').click(function (e) { |
|
|
|
e.preventDefault(); |
|
|
|
e.preventDefault(); |
|
|
|
let inputList = $('#add_video_form textarea'); |
|
|
|
var inputList = $('#add_video_form textarea'); |
|
|
|
|
|
|
|
var selectedTag = $('#add_video_form select').val(); |
|
|
|
if (!inputList[0].value) { |
|
|
|
if (!inputList[0].value) { |
|
|
|
alert('请填写分享内容或网址!'); |
|
|
|
alert('请填写分享内容或网址!'); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} else if (/https:\/\/[\w\.]+\/[\w]+/ig.test(inputList[0].value) == false) { |
|
|
|
}else if (/https:\/\/[\w\.]+\/[\w]+/ig.test(inputList[0].value) == false) { |
|
|
|
alert('目前只支持抖音、快手、西瓜视频和Bilibili的分享网址哦!'); |
|
|
|
alert('目前只支持抖音、快手、西瓜视频和Bilibili的分享网址哦!'); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
|
|
|
|
}else if (!selectedTag) { |
|
|
|
|
|
|
|
alert('请先选择分类!'); |
|
|
|
|
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let bt = $(this), btLoading = bt.children('.bt_class_JS'), btText = bt.children('.bt_text_JS'); |
|
|
|
let bt = $(this), btLoading = bt.children('.bt_class_JS'), btText = bt.children('.bt_text_JS'); |
|
|
@ -139,7 +143,7 @@ if ($('#add_video_form').get(0)) { |
|
|
|
|
|
|
|
|
|
|
|
let datas = { |
|
|
|
let datas = { |
|
|
|
'content': inputList[0].value, |
|
|
|
'content': inputList[0].value, |
|
|
|
'tag': $('#add_video_form select').val() |
|
|
|
'tag': selectedTag |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let apiUrl = taJian.debug ? taJian.domain + taJian.apis.addVideos : taJian.apis.addVideos; |
|
|
|
let apiUrl = taJian.debug ? taJian.domain + taJian.apis.addVideos : taJian.apis.addVideos; |
|
|
|