File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
components/infinite-scroll
layout/components/top-bar/avatar Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ const disabledScroll = computed(() => props.size > 0 && (props.loading || noMore
56
56
function loadDataset() {
57
57
if (props .total > props .page_size ) {
58
58
current .value += 1
59
- emit (' update:current_page' , current )
59
+ emit (' update:current_page' , current . value )
60
60
emit (' load' )
61
61
}
62
62
}
Original file line number Diff line number Diff line change 32
32
</div >
33
33
</el-card >
34
34
</div >
35
- <div class =" text-center" >{{ $t("layout.topbar.version") }}:{{ version }}</div >
35
+ <div class =" text-center" >{{ $t("layout.topbar.avatar. version") }}:{{ version }}</div >
36
36
</el-dialog >
37
37
</template >
38
38
<script setup lang="ts">
Original file line number Diff line number Diff line change 4
4
:size =" paragraph_list.length"
5
5
:total =" modelValue.length"
6
6
:page_size =" page_size"
7
- v-bind :current_page =" current_page"
7
+ v-model :current_page =" current_page"
8
8
@load =" next()"
9
9
:loading =" loading"
10
10
>
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ defineExpose({
217
217
width : 100% ;
218
218
219
219
.left-height {
220
- max-height : calc (var (--create-dataset-height ) - 70 px );
220
+ max-height : calc (var (--create-dataset-height ) - 110 px );
221
221
overflow-x : hidden ;
222
222
}
223
223
You can’t perform that action at this time.
0 commit comments