lsc 1 rok pred
rodič
commit
10674c65ee

+ 20 - 1
src/components/pages/addCourse.vue

@@ -664,6 +664,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>
@@ -692,6 +693,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,
@@ -4354,6 +4356,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",
@@ -4415,7 +4428,13 @@ export default {
                   [data.Location.split(".").length - 1].toLocaleUpperCase()
                 ) != -1) {
                   _type = 2
-                } else {
+                } else if (imgA.indexOf(
+                  data.Location
+                    .split(".")
+                  [data.Location.split(".").length - 1].toLocaleLowerCase()
+                ) != -1) {
+                  _type = 13
+                }else {
                   _type = 12
                 }
                 _this.unitJson[unitIndex].chapterInfo[0].taskJson[

+ 21 - 0
src/components/pages/easy/addCourse.vue

@@ -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
                 }

+ 21 - 0
src/components/pages/task/addCourse.vue

@@ -294,6 +294,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>
@@ -322,6 +323,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,
@@ -736,6 +738,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>
@@ -764,6 +767,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,
@@ -4299,6 +4303,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",
@@ -4360,6 +4375,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
                 }