|
@@ -109,6 +109,7 @@
|
|
<div class="name">{{item.name}}</div>
|
|
<div class="name">{{item.name}}</div>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</div>
|
|
</div>
|
|
|
|
+ <empty v-if="photos.length == 0"/>
|
|
<el-dialog
|
|
<el-dialog
|
|
:title="detail ? '修改展演信息' : '添加展演信息'"
|
|
:title="detail ? '修改展演信息' : '添加展演信息'"
|
|
:visible.sync="formVisible"
|
|
:visible.sync="formVisible"
|
|
@@ -185,7 +186,8 @@ export default {
|
|
async FetchList() {
|
|
async FetchList() {
|
|
try {
|
|
try {
|
|
const res = await musicGroupPerformanceQueryPage({
|
|
const res = await musicGroupPerformanceQueryPage({
|
|
- page: this.rules.page
|
|
|
|
|
|
+ page: this.rules.page,
|
|
|
|
+ musicGroupId: this.$route.query.id,
|
|
})
|
|
})
|
|
this.tableList = res.data.rows;
|
|
this.tableList = res.data.rows;
|
|
this.rules.total = res.data.total;
|
|
this.rules.total = res.data.total;
|