提交 be3550cf 编写于 作者: B break60

[ui]Script input box to modify the delay loading time

上级 917a4b20
......@@ -14,7 +14,7 @@
# limitations under the License.
# back end interface address
API_BASE = http://192.168.xx.xx:12345
API_BASE = http://192.168.220.189:12345
# If IP access is required for local development, remove the "#"
#DEV_HOST = 192.168.xx.xx
DEV_HOST = http://172.16.99.31
......@@ -207,7 +207,7 @@
this.customConfig = 0
setTimeout(() => {
this._handlerEditor()
}, 200)
}, 350)
}
},
/**
......@@ -431,11 +431,11 @@
if(this.customConfig) {
setTimeout(() => {
this._handlerJsonEditor()
}, 200)
}, 350)
} else {
setTimeout(() => {
this._handlerEditor()
}, 200)
}, 350)
}
},
destroyed () {
......
......@@ -321,9 +321,12 @@
}
},
mounted () {
setTimeout(() => {
this._handlerEditor()
}, 200)
// Added delay loading in script input box
this.$nextTick(() => {
setTimeout(() => {
this._handlerEditor()
}, 350)
})
},
destroyed () {
editor.toTextArea() // Uninstall
......
......@@ -447,9 +447,12 @@
}
},
mounted () {
setTimeout(() => {
this._handlerEditor()
}, 200)
// Added delay loading in script input box
this.$nextTick(() => {
setTimeout(() => {
this._handlerEditor()
}, 350)
})
},
destroyed () {
/**
......
......@@ -982,9 +982,12 @@
},
mounted () {
setTimeout(() => {
this._handlerEditor()
}, 200)
// Added delay loading in script input box
this.$nextTick(() => {
setTimeout(() => {
this._handlerEditor()
}, 350)
})
setTimeout(() => {
this.srcQueryType = this.sourceMysqlParams.srcQueryType
......
......@@ -677,7 +677,7 @@ JSP.prototype.saveStore = function () {
Vue.$message.warning(`${i18n.$t('The workflow canvas is abnormal and cannot be saved, please recreate')}`)
return false
}
// return false
// Storage node
store.commit('dag/setTasks', tasks)
// Store coordinate information
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册