Fix:[#988,#987,#986,#985,#983]修复测试反馈的问题和调整内容

This commit is contained in:
lifizer
2024-03-22 11:51:18 +08:00
parent 0febe3a5a4
commit 18aeb9bdfd
12 changed files with 536 additions and 282 deletions
@@ -1,8 +1,29 @@
<template>
<view class="waterfalls-flow">
<view v-for="(item,index) in data.column" :key="index" class="waterfalls-flow-column" :id="`waterfalls_flow_column_${index+1}`" :msg="msg" :style="{'width':w,'margin-left':index==0?0:m}">
<view :class="['column-value',{'column-value-show':item2.o}]" v-for="(item2,index2) in columnValue(index)" :key="index2" :style="[s1]" @click.stop="wapperClick(item2)">
<view class="inner" v-if="data.seat==1">
<view
v-for="(item, index) in data.column"
:key="index" class="waterfalls-flow-column"
:id="`waterfalls_flow_column_${index+1}`"
:msg="msg"
:style="{
'width': w,
'margin-left': index == 0 ? 0 : m
}"
>
<view
v-for="(item2, index2) in columnValue(index)"
:key="index2"
:class="[
'column-value',
{ 'column-value-show': item2.o }
]"
:style="[s1]"
@click.stop="wapperClick(item2)"
>
<view
v-if="data.seat == 1"
class="inner"
>
<!-- #ifdef MP-WEIXIN -->
<!-- #ifdef VUE2 -->
<slot name="slot{{item2.index}}"></slot>
@@ -15,8 +36,22 @@
<slot v-bind="item2"></slot>
<!-- #endif -->
</view>
<image :class="['img',{'img-hide':item2[hideImageKey]==true||item2[hideImageKey]==1},{'img-error':!item2[data.imageKey]}]" :src="item2[data.imageKey]" mode="widthFix" @load="imgLoad(item2,index+1)" @error="imgError(item2,index+1)" @click.stop="imageClick(item2)"></image>
<view class="inner" v-if="data.seat==2">
<image
:class="[
'img',
{ 'img-hide': item2[hideImageKey] == true || item2[hideImageKey] == 1 },
{ 'img-error': !item2[data.imageKey] }
]"
:src="item2[data.imageKey]"
mode="widthFix"
@load="imgLoad(item2, index+1)"
@error="imgError(item2, index+1)"
@click.stop="imageClick(item2)"
/>
<view
v-if="data.seat==2"
class="inner"
>
<!-- #ifdef MP-WEIXIN -->
<!-- #ifdef VUE2 -->
<slot name="slot{{item2.index}}"></slot>
@@ -156,6 +191,7 @@
this.msg++;
}
this.$nextTick(() => {
console.log(this.data.list)
this.initValue(this.curIndex, 'refresh==>');
})
}, 1)