|
@@ -351,6 +351,14 @@
|
|
/>
|
|
/>
|
|
<div style="margin: 5px 0">素材库</div>
|
|
<div style="margin: 5px 0">素材库</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div v-if="tooC == 17">
|
|
|
|
+ <img
|
|
|
|
+ src="../assets/icon/secondToolList/library.png"
|
|
|
|
+ alt
|
|
|
|
+ @click="addTools(tooC, toolIndex)"
|
|
|
|
+ />
|
|
|
|
+ <div style="margin: 5px 0">学习资料</div>
|
|
|
|
+ </div>
|
|
<div v-if="tooC == 2">
|
|
<div v-if="tooC == 2">
|
|
<img
|
|
<img
|
|
@click="addTools(tooC, toolIndex)"
|
|
@click="addTools(tooC, toolIndex)"
|
|
@@ -1827,6 +1835,15 @@ export default {
|
|
this.toolsCount(a, t);
|
|
this.toolsCount(a, t);
|
|
}
|
|
}
|
|
window.parent.postMessage({ tools: "8" }, "*");
|
|
window.parent.postMessage({ tools: "8" }, "*");
|
|
|
|
+ } else if (t == 17) {
|
|
|
|
+ if (this.libraryCount > 0) {
|
|
|
|
+ this.updateCount(this.libraryCount, t);
|
|
|
|
+ } else {
|
|
|
|
+ this.libraryCount++;
|
|
|
|
+ a = this.libraryCount;
|
|
|
|
+ this.toolsCount(a, t);
|
|
|
|
+ }
|
|
|
|
+ window.parent.postMessage({ tools: "17" }, "*");
|
|
} else if (t == 10) {
|
|
} else if (t == 10) {
|
|
if (this.timeCount > 0) {
|
|
if (this.timeCount > 0) {
|
|
this.updateCount(this.timeCount, t);
|
|
this.updateCount(this.timeCount, t);
|