Files
gitlab-instance-0a899031_yi…/src/pages/my/componments/Log/index.jsx
2024-04-07 14:21:25 +08:00

54 lines
1.5 KiB
JavaScript

import { View, Text, Image, Button, Icon } from "@tarojs/components";
import { useLoad } from "@tarojs/taro";
import Taro from "@tarojs/taro";
import {
AtAvatar,
AtTag,
AtIcon,
AtTabBar,
AtButton,
AtAccordion,
AtList,
AtListItem,
AtTimeline,
} from "taro-ui";
import "./index.scss";
import beijing from "@/images/city/beijing.jpg";
import guangzhou from "@/images/city/guangzhou.jpg";
import shanghai from "@/images/city/shanghai.jpg";
import shenzhen from "@/images/city/shenzhen.jpg";
import touxiang from "@/images/index/touxiang.jpg";
import TabbarCom from "@/componments/TabbarCom";
import { useEffect, useState } from "react";
const Log = () => {
const [open, setopen] = useState(false);
return (
<View className="Log">
<AtTimeline
pending
items={[
{
title: "2024年4月07日",
content: ["1.新增图书列表页", "2.半屏小程序申请"],
icon: "clock",
},
{
title: "2024年3月24日",
content: ["1.新增欢迎页", "2.默认用户头像显示"],
icon: "clock",
},
{
title: "2024年3月22日",
content: ["1.新增我的-更新日志页面", "2.修复bug"],
icon: "clock",
},
{ title: "2024年3月20日", content: ["1.立项小程序 ","2.上线第1版:静态首页+我的 页面"], icon: "clock" },
]}
></AtTimeline>
</View>
);
};
export default Log;