|
@@ -27,6 +27,13 @@
|
|
<js-mind-component ref="jsmind1" @openNode="openNode"></js-mind-component>
|
|
<js-mind-component ref="jsmind1" @openNode="openNode"></js-mind-component>
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
</el-tabs> -->
|
|
</el-tabs> -->
|
|
|
|
+ <!-- 功能停用提示 -->
|
|
|
|
+ <el-dialog title="提示" :visible.sync="visible" width="25%">
|
|
|
|
+ <span>功能升级中,暂时不可用......</span>
|
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button size="small" type="primary" @click="visible=false">我知道了</el-button>
|
|
|
|
+ </span>
|
|
|
|
+ </el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
@@ -52,7 +59,8 @@
|
|
return {
|
|
return {
|
|
jsMind: "",
|
|
jsMind: "",
|
|
activeIndex: 0,
|
|
activeIndex: 0,
|
|
- mindArr: []
|
|
|
|
|
|
+ mindArr: [],
|
|
|
|
+ visible: false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -65,7 +73,11 @@
|
|
return this.$store.getters['layout/projectId']
|
|
return this.$store.getters['layout/projectId']
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- created() {},
|
|
|
|
|
|
+ created() {
|
|
|
|
+ setTimeout(()=>{
|
|
|
|
+ this.visible = true
|
|
|
|
+ },200)
|
|
|
|
+ },
|
|
mounted() {
|
|
mounted() {
|
|
this.clickTabs({
|
|
this.clickTabs({
|
|
index: this.activeIndex
|
|
index: this.activeIndex
|