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