|
@@ -655,8 +655,16 @@
|
|
|
:file-list="fileList"
|
|
|
:auto-upload="false"
|
|
|
>
|
|
|
- <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
|
|
|
- <el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload">上传到服务器</el-button>
|
|
|
+ <el-button slot="trigger" size="small" type="primary"
|
|
|
+ >选取文件</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ style="margin-left: 10px;"
|
|
|
+ size="small"
|
|
|
+ type="success"
|
|
|
+ @click="submitUpload"
|
|
|
+ >上传到服务器</el-button
|
|
|
+ >
|
|
|
<div slot="tip" class="el-upload__tip">
|
|
|
只能上传mp3文件,且一次不超过6个
|
|
|
</div>
|
|
@@ -767,7 +775,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
- submitUpload (){
|
|
|
+ submitUpload() {
|
|
|
this.$refs.upload.submit();
|
|
|
},
|
|
|
handleRemove(file, fileList) {
|