lsc 1 anno fa
parent
commit
bdd88ec0a3

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.5c06d18a7f635b5dc11ce2d6207542b3.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.80563afc1c81a8896e85.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.43caf608ed851928af50c20f6ea50e26.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.9e22ba70f12da085e271.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.43caf608ed851928af50c20f6ea50e26.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.43caf608ed851928af50c20f6ea50e26.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.5c06d18a7f635b5dc11ce2d6207542b3.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.5c06d18a7f635b5dc11ce2d6207542b3.css.map


BIN
dist/static/img/stuBg.f8fe622.png


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.80563afc1c81a8896e85.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.9e22ba70f12da085e271.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.9e22ba70f12da085e271.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 31 - 0
src/components/pages/addCourse.vue

@@ -749,6 +749,9 @@
                       <button class="info_btn" @click="openLine(itemTaskIndex)">
                         添加链接
                       </button>
+                      <button class="info_btn" @click="pasteLine(itemTaskIndex)">
+                        粘贴链接
+                      </button>
                       <button class="info_btn" @click="openSource(itemTaskIndex)">
                         添加资源
                       </button>
@@ -3822,6 +3825,34 @@ export default {
       this.$forceUpdate();
       this.dialogVisible7 = true;
     },
+    pasteLine(i){
+      navigator.clipboard
+      .readText()
+      .then((v) => {
+        console.log("获取剪贴板成功:", v);
+        const html = v;    
+          const regex = /src="(.*?)"/g;    
+          const match = regex.exec(html);    
+          if (match && match[1]) {    
+              console.log(match[1]);    
+              this.$message.success("粘贴成功")
+              this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
+              i
+              ].chapterData.push({
+                name: "链接",
+                title: "粘贴链接",
+                url: match[1],
+                type: 8,
+              });
+          } else {    
+              // console.log("未找到包含 src 属性的 iframe");    
+              this.$message.error("没有找到粘贴的链接")
+          }    
+      })
+      .catch((v) => {
+        console.log("获取剪贴板失败: ", v);
+      });
+    },
     openSource(i) {
       this.lineCount = i;
       this.sourceData = {}

Some files were not shown because too many files changed in this diff