|
@@ -237,6 +237,7 @@
|
|
|
<div v-if="item1.type == 2" class="chapter_upload_l_i1"></div>
|
|
|
<div v-if="item1.type == 3 ||
|
|
|
item1.type == 12 ||
|
|
|
+ item1.type == 13 ||
|
|
|
item1.type == 6 ||
|
|
|
item1.type == 7
|
|
|
" class="chapter_upload_l_i5" style="margin-left: 1px"></div>
|
|
@@ -265,6 +266,7 @@
|
|
|
<input v-if="item1.type == 2 ||
|
|
|
item1.type == 3 ||
|
|
|
item1.type == 12 ||
|
|
|
+ item1.type == 13 ||
|
|
|
item1.type == 7
|
|
|
" :placeholder="item1.name" @change="updataVideoT(
|
|
|
$event,
|
|
@@ -731,6 +733,7 @@
|
|
|
<div v-if="item1.type == 2" class="chapter_upload_l_i1"></div>
|
|
|
<div v-if="item1.type == 3 ||
|
|
|
item1.type == 12 ||
|
|
|
+ item1.type == 13 ||
|
|
|
item1.type == 6 ||
|
|
|
item1.type == 7
|
|
|
" class="chapter_upload_l_i5" style="margin-left: 1px"></div>
|
|
@@ -759,6 +762,7 @@
|
|
|
<input v-if="item1.type == 2 ||
|
|
|
item1.type == 3 ||
|
|
|
item1.type == 12 ||
|
|
|
+ item1.type == 13 ||
|
|
|
item1.type == 7
|
|
|
" :placeholder="item1.name" @change="updataVideoT(
|
|
|
$event,
|
|
@@ -4298,6 +4302,17 @@ export default {
|
|
|
} else {
|
|
|
if (type == 13) {
|
|
|
let _type = 2
|
|
|
+ var imgA = [
|
|
|
+ "png",
|
|
|
+ "jpg",
|
|
|
+ "jpeg",
|
|
|
+ "bmp",
|
|
|
+ "gif",
|
|
|
+ "webp",
|
|
|
+ "psd",
|
|
|
+ "svg",
|
|
|
+ "tiff",
|
|
|
+ ]
|
|
|
var fileA = [
|
|
|
"PDF",
|
|
|
"DOC",
|
|
@@ -4359,6 +4374,12 @@ export default {
|
|
|
[data.Location.split(".").length - 1].toLocaleUpperCase()
|
|
|
) != -1) {
|
|
|
_type = 2
|
|
|
+ } else if (imgA.indexOf(
|
|
|
+ data.Location
|
|
|
+ .split(".")
|
|
|
+ [data.Location.split(".").length - 1].toLocaleLowerCase()
|
|
|
+ ) != -1) {
|
|
|
+ _type = 13
|
|
|
} else {
|
|
|
_type = 12
|
|
|
}
|