feat: 注册步骤条
This commit is contained in:
@@ -1,8 +1,32 @@
|
||||
import { View } from "@tarojs/components";
|
||||
import react from "react";
|
||||
import { Steps } from "@antmjs/vantui";
|
||||
|
||||
const formSubmit=()=>{
|
||||
return <View>formSubmit</View>
|
||||
}
|
||||
const formSubmit = () => {
|
||||
const steps = [
|
||||
{
|
||||
text: "步骤一",
|
||||
desc: "描述信息",
|
||||
},
|
||||
{
|
||||
text: "步骤二",
|
||||
desc: "描述信息",
|
||||
},
|
||||
{
|
||||
text: "步骤三",
|
||||
desc: "描述信息",
|
||||
},
|
||||
{
|
||||
text: "步骤四",
|
||||
desc: "描述信息",
|
||||
},
|
||||
];
|
||||
|
||||
export default formSubmit
|
||||
return (
|
||||
<View>
|
||||
<Steps steps={steps} active={2} />
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
export default formSubmit;
|
||||
|
||||
@@ -52,6 +52,7 @@ const my = (props: any) => {
|
||||
</View>
|
||||
|
||||
<View className="cellArr">
|
||||
<Cell icon="manager" title="打卡记录" isLink />
|
||||
<Cell icon="manager" title="个人资料" isLink />
|
||||
{/* <Cell title="收藏" isLink /> */}
|
||||
<Cell
|
||||
|
||||
Reference in New Issue
Block a user