From 39dd945020ba2c530deb1c6430d993bc2f82b6ec Mon Sep 17 00:00:00 2001 From: Dawn_Ocean <1785590531@qq.com> Date: Fri, 8 Mar 2024 16:32:05 +0800 Subject: [PATCH] optimize pagefooter layout --- src/components/PageFooter/PageFooter.tsx | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/components/PageFooter/PageFooter.tsx b/src/components/PageFooter/PageFooter.tsx index fb475f2..12e8cd1 100644 --- a/src/components/PageFooter/PageFooter.tsx +++ b/src/components/PageFooter/PageFooter.tsx @@ -1,17 +1,24 @@ -import { View } from '@tarojs/components'; +import { View, Text } from '@tarojs/components'; import { AtDivider } from 'taro-ui'; import pt from '@/plain-text'; export default () => { - const blankHeight = 120; + const blankHeightUpper = 25; + const blankHeightLower = 120; return ( - - + + + + + + © 2024 EVA Tech + + ); };