@ -169,7 +169,7 @@
* Download log
*/
_downloadLog () {
downloadFile('/dolphinscheduler/log/download-log', {
downloadFile('log/download-log', {
taskInstanceId: this.stateId || this.logId
})
},
@ -81,7 +81,7 @@
this.$router.push({ name: 'file' })
_downloadFile () {
downloadFile('/dolphinscheduler/resources/download', {
downloadFile('resources/download', {
id: this.$route.params.id
@ -179,7 +179,7 @@
findComponentDownward(this.$root, 'roof-nav')._fileReUpload('FILE',item)
_downloadFile (item) {
id: item.id
@ -180,7 +180,7 @@
findComponentDownward(this.$root, 'roof-nav')._fileChildReUpload('FILE',item,this.$route.params.id)
@ -155,7 +155,7 @@
methods: {
...mapActions('resource', ['deleteResource']),
@ -156,7 +156,7 @@
@ -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)