feat: 首页header和城市列表

This commit is contained in:
hackrobot
2024-03-19 13:54:16 +08:00
parent 200ac7c3dd
commit dfbbe38bfc
2 changed files with 65 additions and 17 deletions

View File

@@ -1,24 +1,40 @@
import { View, Text } from '@tarojs/components' import { View, Text } from "@tarojs/components";
import { useLoad } from '@tarojs/taro' import { useLoad } from "@tarojs/taro";
import { AtButton } from 'taro-ui' import { AtButton } from "taro-ui";
import { AtIcon } from 'taro-ui' import { AtIcon } from "taro-ui";
import { AtAvatar } from 'taro-ui' import { AtAvatar } from "taro-ui";
import './index.scss' import "./index.scss";
export default function Index() { export default function Index() {
useLoad(() => { useLoad(() => {
console.log('Page loaded.') console.log("Page loaded.");
}) });
const HomeCardItem = () => {
return [1, 2, 3].map((item, index) => {
return (
<View className="homeCardItem">
<View className="homeCard">left</View>
<View className="homeCard">right</View>
</View>
);
});
};
return ( return (
<View className='index'> <View className="index">
<AtButton>按钮文案</AtButton> {/* 顶部 */}
<AtButton type='primary' size='small'>按钮文案</AtButton> <View className="indexHeader">
<AtButton type='primary' size='normal'>按钮文案</AtButton> {/* 头像 */}
<Text>Hello world1!</Text> <AtAvatar circle image="https://jdc.jd.com/img/200"></AtAvatar>
<View className='at-icon at-icon-settings'></View> <AtIcon value='chevron-down' size='30' color='#F00'></AtIcon>
<AtAvatar text='凹凸实验室'></AtAvatar>
</View>
{/* 城市列表 */}
<View className="homeCards">
<HomeCardItem />
</View>
</View> </View>
) );
} }

View File

@@ -0,0 +1,32 @@
.index {
padding-left: 20px;
padding-right: 20px;
.indexHeader {
display: flex;
flex-direction: row;
// justify-content: space-between;
align-items: center;
}
.homeCards {
display: flex;
flex-direction: column;
.homeCardItem {
margin-top: 10px;
display: flex;
flex-direction: row;
// background-color:aqua;
justify-content: space-between;
align-items: center;
.homeCard {
width: 340px;
height: 250px;
background-color: yellow;
border-radius: 20px;
}
}
}
}