Commit 4c1273f5 authored by chenqikuai's avatar chenqikuai

fix

parent e4ba4737
...@@ -77,8 +77,8 @@ const clickItem = (item: string) => { ...@@ -77,8 +77,8 @@ const clickItem = (item: string) => {
<style lang="scss" scoped> <style lang="scss" scoped>
.albumItem { .albumItem {
width: 295px; width: calc(295px * 0.95);
height: 238px; height: calc(238px * 0.95);
border-radius: 30px; border-radius: 30px;
.operateIcon2 { .operateIcon2 {
display: none; display: none;
...@@ -96,8 +96,8 @@ const clickItem = (item: string) => { ...@@ -96,8 +96,8 @@ const clickItem = (item: string) => {
} }
} }
.albumBanner { .albumBanner {
width: 263px; width: calc(263px * 0.95);
height: 149px; height: calc(149px * 0.95);
margin-top: 18px; margin-top: 18px;
border-radius: 25px; border-radius: 25px;
} }
......
<template> <template>
<div class=""> <div class="">
<ReactiveLayout :list="list" :element-width="295" :ELEMENT_MIN_GAP="10"> <ReactiveLayout :list="list" :element-width="281" :ELEMENT_MIN_GAP="10">
<template #element="n"> <template #element="n">
<AlbumItem <AlbumItem
class="flex-shrink-0" class="flex-shrink-0"
......
...@@ -66,10 +66,9 @@ ...@@ -66,10 +66,9 @@
@increaseProof="increaseProof" @increaseProof="increaseProof"
></OnChainProofDetail> ></OnChainProofDetail>
</div> </div>
{{ proofList.length }}
<div <div
class="flex-shrink-0 mr-10"
v-if="proofList.length !== 1" v-if="proofList.length !== 1"
class="flex-shrink-0 mr-10"
style="width: calc(228px + 29px)" style="width: calc(228px + 29px)"
> >
&nbsp; &nbsp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment