feat: 注册步骤条
This commit is contained in:
2
dist/pages/my/index.js
vendored
2
dist/pages/my/index.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,8 +1,32 @@
|
|||||||
import { View } from "@tarojs/components";
|
import { View } from "@tarojs/components";
|
||||||
import react from "react";
|
import react from "react";
|
||||||
|
import { Steps } from "@antmjs/vantui";
|
||||||
|
|
||||||
const formSubmit=()=>{
|
const formSubmit = () => {
|
||||||
return <View>formSubmit</View>
|
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>
|
||||||
|
|
||||||
<View className="cellArr">
|
<View className="cellArr">
|
||||||
|
<Cell icon="manager" title="打卡记录" isLink />
|
||||||
<Cell icon="manager" title="个人资料" isLink />
|
<Cell icon="manager" title="个人资料" isLink />
|
||||||
{/* <Cell title="收藏" isLink /> */}
|
{/* <Cell title="收藏" isLink /> */}
|
||||||
<Cell
|
<Cell
|
||||||
|
|||||||
Reference in New Issue
Block a user