|
@@ -15,6 +15,7 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import { mapGetters } from "vuex";
|
|
import { mapGetters } from "vuex";
|
|
|
|
+import { tenantId } from '@/common/request.js'
|
|
export default {
|
|
export default {
|
|
components: {},
|
|
components: {},
|
|
data() {
|
|
data() {
|
|
@@ -77,7 +78,7 @@ export default {
|
|
this.paramObj = paramObj;
|
|
this.paramObj = paramObj;
|
|
this.sectionType = this.paramObj.sectionType || 2; // 默认直播,回放的加了sectionType=3
|
|
this.sectionType = this.paramObj.sectionType || 2; // 默认直播,回放的加了sectionType=3
|
|
this.vid = this.paramObj.vid || "";
|
|
this.vid = this.paramObj.vid || "";
|
|
- this.url = this.url + "&tid=" + this.config.tenantId;
|
|
|
|
|
|
+ this.url = this.url + "&tid=" + tenantId;
|
|
this.studyLog(paramObj);
|
|
this.studyLog(paramObj);
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -153,7 +154,7 @@ export default {
|
|
"&vid=" +
|
|
"&vid=" +
|
|
this.vid +
|
|
this.vid +
|
|
"&tid=" +
|
|
"&tid=" +
|
|
- this.config.tenantId;
|
|
|
|
|
|
+ tenantId;
|
|
this.studyLog(item);
|
|
this.studyLog(item);
|
|
} else {
|
|
} else {
|
|
// 没有权限
|
|
// 没有权限
|