|
@@ -80,7 +80,8 @@ export default {
|
|
|
let domain = window.location.domain;
|
|
|
this.Teacherurl = domain
|
|
|
? domain + `/live/?roomUid=${this.row.roomUid}`
|
|
|
- : "https://test.dayaedu.com/" + `/live/?roomUid=${this.row.roomUid}`;
|
|
|
+ : "https://test.dayaedu.com" + `/live/?roomUid=${this.row.roomUid}`;
|
|
|
+ this.copyText()
|
|
|
},
|
|
|
methods: {
|
|
|
copyText(e) {
|
|
@@ -105,7 +106,7 @@ export default {
|
|
|
},
|
|
|
});
|
|
|
clipboard.on("success", (e) => {
|
|
|
- console.log("复制成功");
|
|
|
+
|
|
|
this.$message.success("复制成功");
|
|
|
this.$emit("close");
|
|
|
// 释放内存
|