We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9740ead commit 83bf8d8Copy full SHA for 83bf8d8
1 file changed
src/views/PluginFramework.vue
@@ -22,21 +22,23 @@ export default {
22
mounted() {
23
this.$refs.iframe.onload = () => {
24
this.loading = false;
25
- if (this.title === "雨云") {
+ if (this.title === "雨云" && this.firstLoad) {
26
showDialog({
27
message:
28
'建议复制以下链接到浏览器打开\n' +
29
'\nhttps://www.rainyun.com/aiyuyun_',
30
confirmButtonColor: "#1989fa",
31
confirmButtonText: "OK"
32
- })
+ });
33
}
34
+ this.firstLoad = false;
35
};
36
},
37
data() {
38
return {
39
loading: true,
- show: false
40
+ show: false,
41
+ firstLoad: true
42
43
44
0 commit comments