This commit is contained in:
Vinjor 2025-05-09 14:37:51 +08:00
parent 52d36d8eff
commit ef486c4ff3
2 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@
<view class="info-box notice-detail" v-if="viewMy">
<view class="detail-title">已报名{{allImgNum||0}}</view>
<view class="image-box" v-if="imageArray.length>0"
:style="{height:(imageArray.length*(imageWidth*2))+'rpx'}">
:style="{height:(imageArray.length*((imageWidth-15)*2))+'rpx'}">
<view class="image-row" v-for="(row,rowIndex) in imageArray">
<image v-for="(item,i) in row" v-if="!item"
:style="{ top:(imageWidth+10)*rowIndex+'rpx',left:imageWidth*i+'rpx'}"

View File

@ -234,6 +234,7 @@
* 下拉刷新数据
*/
onRefresherrefresh() {
console.log("刷新")
let queryData = {}
if (this.menuIndex == 0) {
queryData = this.waitingParams
@ -343,7 +344,7 @@
.content {
border-top: 1rpx solid #F4F4F4;
height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 195rpx);
height: 100%;
overflow-y: scroll;
width: 100%;
background-color: #F2F2F2;
@ -388,7 +389,7 @@
}
.data-list-box {
flex: 1;
height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 270rpx);
padding: 20rpx 30rpx;
display: flex;
flex-direction: column;