|
@@ -33,6 +33,7 @@
|
|
:max-height="vheight">
|
|
:max-height="vheight">
|
|
<el-table-column label="ID" prop="id"></el-table-column>
|
|
<el-table-column label="ID" prop="id"></el-table-column>
|
|
<el-table-column label="歌曲名字" prop="department_name"></el-table-column>
|
|
<el-table-column label="歌曲名字" prop="department_name"></el-table-column>
|
|
|
|
+ <el-table-column label="原唱" prop="department_name"></el-table-column>
|
|
<el-table-column label="点歌次数" prop="department_project_name"></el-table-column>
|
|
<el-table-column label="点歌次数" prop="department_project_name"></el-table-column>
|
|
<el-table-column label="添加时间" prop="department_project_name"></el-table-column>
|
|
<el-table-column label="添加时间" prop="department_project_name"></el-table-column>
|
|
<el-table-column label="已预定" prop="department_project_name"></el-table-column>
|
|
<el-table-column label="已预定" prop="department_project_name"></el-table-column>
|
|
@@ -78,7 +79,7 @@ export default {
|
|
time: [],
|
|
time: [],
|
|
searchForm: {},
|
|
searchForm: {},
|
|
tableData: [],
|
|
tableData: [],
|
|
- tableUrl: '/department/list'
|
|
|
|
|
|
+ tableUrl: '/v1/user/song/list'
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -96,8 +97,8 @@ export default {
|
|
cancelButtonText: '取消',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
type: 'warning'
|
|
}).then(async () => {
|
|
}).then(async () => {
|
|
- const data = await this.$fetch('/api/auth/department/del', { id: row.id })
|
|
|
|
- if (data.code == 200) {
|
|
|
|
|
|
+ const data = await this.$fetch('/v1/user/song/modify', { id: row.id })
|
|
|
|
+ if (data.code === 200) {
|
|
this.$message.success('删除成功')
|
|
this.$message.success('删除成功')
|
|
this.init()
|
|
this.init()
|
|
}
|
|
}
|
|
@@ -105,6 +106,7 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
mounted () {
|
|
mounted () {
|
|
|
|
+ this.$set(this.searchForm, 'id', this.$route.query.id)
|
|
this.init()
|
|
this.init()
|
|
},
|
|
},
|
|
}
|
|
}
|