mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 13:17:50 +08:00
[Feture-3327][ui]Add the function of re-uploading files in the udf subdirectory
This commit is contained in:
parent
0b2da77751
commit
7a866ff20a
@ -43,7 +43,7 @@
|
||||
<th scope="col" width="140">
|
||||
<span>{{$t('Update Time')}}</span>
|
||||
</th>
|
||||
<th scope="col" width="110">
|
||||
<th scope="col" width="130">
|
||||
<span>{{$t('Operation')}}</span>
|
||||
</th>
|
||||
</tr>
|
||||
@ -76,6 +76,16 @@
|
||||
<span v-else>-</span>
|
||||
</td>
|
||||
<td>
|
||||
<x-button
|
||||
type="info"
|
||||
shape="circle"
|
||||
size="xsmall"
|
||||
data-toggle="tooltip"
|
||||
:title="$t('ReUpload File')"
|
||||
:disabled="item.directory? true: false"
|
||||
@click="_reUpload(item)"
|
||||
icon="ans-icon-upload">
|
||||
</x-button>
|
||||
<x-button
|
||||
type="info"
|
||||
shape="circle"
|
||||
@ -127,6 +137,7 @@
|
||||
import mRename from './rename'
|
||||
import { downloadFile } from '@/module/download'
|
||||
import { bytesToSize } from '@/module/util/util'
|
||||
import { findComponentDownward } from '@/module/util'
|
||||
import localStore from '@/module/util/localStorage'
|
||||
|
||||
export default {
|
||||
@ -155,6 +166,12 @@
|
||||
this.$router.push({ path: `/resource/udf/subUdfDirectory/${item.id}` })
|
||||
}
|
||||
},
|
||||
/**
|
||||
* File Upload
|
||||
*/
|
||||
_reUpload (item) {
|
||||
findComponentDownward(this.$root, 'roof-nav')._fileChildReUpload('UDF', item, this.$route.params.id)
|
||||
},
|
||||
_rtSize (val) {
|
||||
return bytesToSize(parseInt(val))
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user