2020-02-06 08:01:35 +00:00
|
|
|
<template>
|
|
|
|
<el-table :data="tableData" style="width: 100%">
|
|
|
|
|
|
|
|
<el-table-column label="封面">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-image :src="scope.row.picture" style="width: 100px; height: 100px">
|
|
|
|
<div class="image-slot el-image__error" slot="error">
|
|
|
|
暂无封面
|
|
|
|
</div>
|
|
|
|
</el-image>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2020-02-11 08:35:45 +00:00
|
|
|
<el-table-column label="歌曲">
|
2020-02-06 08:01:35 +00:00
|
|
|
<template slot-scope="scope">
|
|
|
|
<span style="margin-left: 10px">{{ scope.row.title }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2020-02-11 08:35:45 +00:00
|
|
|
<el-table-column label="歌手">
|
2020-02-06 08:01:35 +00:00
|
|
|
<template slot-scope="scope">
|
|
|
|
<p>{{ scope.row.artist }}</p>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2020-02-11 08:35:45 +00:00
|
|
|
<el-table-column label="专辑">
|
2020-02-06 08:01:35 +00:00
|
|
|
<template slot-scope="scope">
|
|
|
|
<p>{{ scope.row.album }}</p>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button @click="handlePlay(scope.$index, scope.row)"
|
|
|
|
circle icon="el-icon-video-play" type="success">
|
|
|
|
</el-button>
|
|
|
|
<el-button @click="handleDownload(scope.row)"
|
|
|
|
circle icon="el-icon-download">
|
|
|
|
</el-button>
|
|
|
|
<el-button @click="handleDelete(scope.$index, scope.row)"
|
|
|
|
circle icon="el-icon-delete" type="danger">
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {DownloadBlobMusic, RemoveBlobMusic} from './util'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "preview",
|
|
|
|
props: {
|
|
|
|
tableData: {type: Array, required: true},
|
|
|
|
download_format: {type: String, required: true}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
handlePlay(index, row) {
|
|
|
|
this.$emit("music_changed", row.file);
|
|
|
|
},
|
|
|
|
handleDelete(index, row) {
|
|
|
|
RemoveBlobMusic(row);
|
|
|
|
this.tableData.splice(index, 1);
|
|
|
|
},
|
|
|
|
handleDownload(row) {
|
|
|
|
DownloadBlobMusic(row, this.download_format)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|