From 05d623d5b806f6650b9544dcbd4f322d677bf9a8 Mon Sep 17 00:00:00 2001 From: yz3456 <2753272399@qq.com> Date: 星期二, 26 三月 2024 16:44:40 +0800 Subject: [PATCH] 完善直播模块2 --- ruoyi-ui/src/views/travel/index.vue | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/views/travel/index.vue b/ruoyi-ui/src/views/travel/index.vue index 2fdc27e..52c771f 100644 --- a/ruoyi-ui/src/views/travel/index.vue +++ b/ruoyi-ui/src/views/travel/index.vue @@ -119,7 +119,7 @@ alt="" style="width: 35px; height: 35px;" fit="cover" - v-if="!scope.row.url " + v-if="scope.row.url" > <img class="el-upload-list__item-thumbnail" @@ -127,7 +127,7 @@ alt="" style="width: 35px; height: 35px;" fit="cover" - v-if="scope.row.url " + v-if="!scope.row.url" > </template> </el-table-column> @@ -770,6 +770,8 @@ listTravelPrice(this.queryParams).then(response => { this.travelpriceList = response.data.data; + //alert(this.travelpriceList.url) + console.log("0000") console.log(this.travelpriceList) this.total = response.data.total; this.loading = false; @@ -780,6 +782,7 @@ const promises = []; for (const item of this.travelpriceList) { const promise = listTravelBase({ cid: item.id }).then(result => { + console.log(result.data) travelBaseMap[item.id] = result.data; }); promises.push(promise); -- Gitblit v1.9.1