leon 1 anno fa
parent
commit
119b593fde
2 ha cambiato i file con 20 aggiunte e 2 eliminazioni
  1. 14 0
      src/_moment/pages/long_detail.scss
  2. 6 2
      src/_moment/pages/long_detail.tsx

+ 14 - 0
src/_moment/pages/long_detail.scss

@@ -0,0 +1,14 @@
+.main_avatar{
+    width: 126px;
+    height: 126px;
+    border-radius: 63px;
+    margin-bottom: 66px;
+}
+
+.member_group{
+    background-color: #fff;
+    border-radius: 24px;
+    padding: 0 40px;
+    box-sizing: border-box;
+    width: 694px;
+}

+ 6 - 2
src/_moment/pages/long_detail.tsx

@@ -1,6 +1,10 @@
-import { View } from "@tarojs/components";
+import { View,Image } from "@tarojs/components";
 import './long_detail.scss'
 
 export default function LongDetail(){
-    return <View></View>
+    return <View>
+        <Image className="main_avatar" src=""/>
+        <View className="h26 g02">累计获得 10888 次跟卡</View>
+        <View className="member_group"></View>
+    </View>
 }