未验证 提交 62c2e852 编写于 作者: D dailidong 提交者: GitHub

Merge pull request #4110 from chengshiwen/dev

[Improvement][UI] download url resolve and security page disappear delay problem under GENERAL_USER
......@@ -169,7 +169,7 @@
* Download log
*/
_downloadLog () {
downloadFile('/dolphinscheduler/log/download-log', {
downloadFile('log/download-log', {
taskInstanceId: this.stateId || this.logId
})
},
......
......@@ -87,7 +87,7 @@
this.$router.go(-1)
},
_downloadFile () {
downloadFile('/dolphinscheduler/resources/download', {
downloadFile('resources/download', {
id: this.$route.params.id
})
},
......
......@@ -162,7 +162,7 @@
}
},
_downloadFile (item) {
downloadFile('/dolphinscheduler/resources/download', {
downloadFile('resources/download', {
id: item.id
})
},
......
......@@ -163,7 +163,7 @@
}
},
_downloadFile (item) {
downloadFile('/dolphinscheduler/resources/download', {
downloadFile('resources/download', {
id: item.id
})
},
......
......@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
v-ps<template>
<template>
<div class="list-model">
<div class="table-box">
<table class="fixed">
......
......@@ -143,7 +143,7 @@
methods: {
...mapActions('resource', ['deleteResource']),
_downloadFile (item) {
downloadFile('/dolphinscheduler/resources/download', {
downloadFile('resources/download', {
id: item.id
})
},
......
......@@ -144,7 +144,7 @@
methods: {
...mapActions('resource', ['deleteResource']),
_downloadFile (item) {
downloadFile('/dolphinscheduler/resources/download', {
downloadFile('resources/download', {
id: item.id
})
},
......
......@@ -16,12 +16,14 @@
*/
import i18n from '@/module/i18n'
import { resolveURL } from '@/module/io'
/**
* download file
*/
const downloadFile = ($url, $obj) => {
const param = {
url: $url,
url: resolveURL($url),
obj: $obj
}
......
......@@ -44,6 +44,7 @@ Permissions.prototype = {
if ($(el).prop('tagName') === 'BUTTON') {
$(el).attr('disabled', true)
} else {
$(el).css('display', 'none')
setTimeout(function () { el.parentNode.removeChild(el) }, 100)
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册