2020-02-06 08:01:35 +00:00
|
|
|
<template>
|
2021-12-18 13:55:31 +00:00
|
|
|
<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 slot="error" class="image-slot el-image__error">暂无封面</div>
|
|
|
|
</el-image>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="歌曲">
|
|
|
|
<template #default="scope">
|
|
|
|
<span>{{ scope.row.title }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="歌手">
|
|
|
|
<template #default="scope">
|
|
|
|
<p>{{ scope.row.artist }}</p>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="专辑">
|
|
|
|
<template #default="scope">
|
|
|
|
<p>{{ scope.row.album }}</p>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-button circle icon="el-icon-video-play" type="success" @click="handlePlay(scope.$index, scope.row)">
|
|
|
|
</el-button>
|
|
|
|
<el-button circle icon="el-icon-download" @click="handleDownload(scope.row)"></el-button>
|
|
|
|
<el-button circle icon="el-icon-delete" type="danger" @click="handleDelete(scope.$index, scope.row)">
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
2020-02-06 08:01:35 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-12-18 13:55:31 +00:00
|
|
|
import { RemoveBlobMusic } from '@/utils/utils';
|
2020-02-06 08:01:35 +00:00
|
|
|
|
2021-05-24 14:19:37 +00:00
|
|
|
export default {
|
2021-12-18 13:55:31 +00:00
|
|
|
name: 'PreviewTable',
|
|
|
|
props: {
|
|
|
|
tableData: { type: Array, required: true },
|
|
|
|
policy: { type: Number, required: true },
|
|
|
|
},
|
2020-02-06 08:01:35 +00:00
|
|
|
|
2021-12-18 13:55:31 +00:00
|
|
|
methods: {
|
|
|
|
handlePlay(index, row) {
|
|
|
|
this.$emit('play', row.file);
|
|
|
|
},
|
|
|
|
handleDelete(index, row) {
|
|
|
|
RemoveBlobMusic(row);
|
|
|
|
this.tableData.splice(index, 1);
|
|
|
|
},
|
|
|
|
handleDownload(row) {
|
|
|
|
this.$emit('download', row);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2020-02-06 08:01:35 +00:00
|
|
|
</script>
|
|
|
|
|
2021-12-18 13:55:31 +00:00
|
|
|
<style scoped></style>
|