perf: file transfer add boot step help tips

This commit is contained in:
wangruidong 2024-05-13 14:33:50 +08:00 committed by w940853815
parent b139d8d049
commit acde080e48
2 changed files with 23 additions and 2 deletions

View File

@ -1 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.0605 10L24.0239 38" stroke="#333" stroke-width="4" stroke-linecap="square" stroke-linejoin="round"/><path d="M10 24L38 24" stroke="#333" stroke-width="4" stroke-linecap="square" stroke-linejoin="round"/></svg> <?xml version="1.0" encoding="UTF-8"?>
<svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 8C8.92487 8 4 12.9249 4 19C4 30 17 40 24 42.3262C31 40 44 30 44 19C44 12.9249 39.0751 8 33 8C29.2797 8 25.9907 9.8469 24 12.6738C22.0093 9.8469 18.7203 8 15 8Z"
fill="none" stroke="#333" stroke-width="4" stroke-linecap="square" stroke-linejoin="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 355 B

After

Width:  |  Height:  |  Size: 423 B

View File

@ -1,5 +1,16 @@
<template> <template>
<Page> <Page>
<el-alert
:center="false"
class="announcement"
type="success"
>
<span v-for="(tip,index) of FileTransferBootStepHelpTips" :key="index" style="padding-right: 24px">
<span style="font-weight: 700; color:#1C84C6">{{ index + 1 }}</span>
{{ tip }}
</span>
</el-alert>
<TreeTable ref="TreeTable" :tree-setting="treeSetting"> <TreeTable ref="TreeTable" :tree-setting="treeSetting">
<template slot="table"> <template slot="table">
<div class="transition-box" style="width: calc(100% - 17px);"> <div class="transition-box" style="width: calc(100% - 17px);">
@ -14,6 +25,7 @@
<i :class="runButton.icon" style="margin-right: 4px;" />{{ runButton.name }} <i :class="runButton.icon" style="margin-right: 4px;" />{{ runButton.name }}
</el-button> </el-button>
</div> </div>
<span style="color: red">*</span>
<div class="upload_input">{{ $t('Account') }}:</div> <div class="upload_input">{{ $t('Account') }}:</div>
<div class="upload_input"> <div class="upload_input">
<el-autocomplete <el-autocomplete
@ -216,7 +228,12 @@ export default {
'success': 0, 'success': 0,
'failed': 0, 'failed': 0,
'skip': 0 'skip': 0
} },
FileTransferBootStepHelpTips: [
this.$tc('FileTransferBootStepHelpTips1'),
this.$tc('FileTransferBootStepHelpTips2'),
this.$tc('FileTransferBootStepHelpTips3')
]
} }
}, },
computed: { computed: {