|
@@ -1844,7 +1844,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="tooldetail" @click="updateToolDetail">
|
|
|
+ <div class="tooldetail">
|
|
|
<!-- <div class="toolTitle">工具描述</div> -->
|
|
|
<div
|
|
|
style="height: 100%"
|
|
@@ -15324,6 +15324,7 @@ export default {
|
|
|
this.vChapterData = _chapterData;
|
|
|
this.$forceUpdate();
|
|
|
}
|
|
|
+
|
|
|
this.isUpdateToolDetail = false;
|
|
|
this.$nextTick(() => {
|
|
|
setTimeout(() => {
|
|
@@ -17890,6 +17891,7 @@ export default {
|
|
|
this.updateToolDetailInner = "";
|
|
|
this.getCourseDetail(3);
|
|
|
this.$forceUpdate();
|
|
|
+ this.checkBz(this.toolIndex)
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
console.error(err);
|
|
@@ -18075,6 +18077,11 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
+ document.body.addEventListener('click',(e)=>{
|
|
|
+ if(this.isUpdateToolDetail){
|
|
|
+ this.updateToolDetail();
|
|
|
+ }
|
|
|
+ })
|
|
|
if (this.screenType == 2) {
|
|
|
window.parent.postMessage({ allScreen: 4 }, "*");
|
|
|
} else if (this.screenType == 3) {
|