我的钱包 关于 列表

This commit is contained in:
asd
2020-09-29 16:51:42 +08:00
parent 8bf0188105
commit db2eec98a0
32 changed files with 2158 additions and 27 deletions

View File

@@ -61,10 +61,10 @@
<a-form :layout="formLayout">
<div class="signform">
<a-form-item label="设置密码" class="form-item">
<a-input class="shuru" placeholder="请输入您的密码" />
<a-input class="shuru" placeholder="请输入您的密码" type="password"/>
</a-form-item>
<a-form-item label="设置密码" class="form-item">
<a-input class="shuru" placeholder="请再次输入您的密码" />
<a-input class="shuru" placeholder="请再次输入您的密码" type="password"/>
</a-form-item>
<a-form-item label="姓名" class="form-item">
<a-input class="shuru" placeholder="请输入您的姓名" />
@@ -136,7 +136,12 @@ export default defineComponent({
labelCol: 4,
wrapperCol: 14,
};
const time = ref(60);
const time = ref(60); //倒计时初始化
/**
* @param
* 点击获取验证码 触发60S倒计时
*/
const getcode: () => void = () => {
console.log(11111);
const timestep = setInterval(() => {
@@ -150,13 +155,23 @@ export default defineComponent({
}
}, 1000);
};
const ifagree = ref(true);
const ifagree = ref(true); //是否同意用户协议
/**
*@param
* 用户协议前面radio 的点击效果
*/
const agree: () => void = () => {
ifagree.value = ifagree.value == true ? false : true;
console.log(ifagree.value, 600);
};
const stepnow = ref(1);
const stepnow = ref(1); // 步骤条初始
/**
*@param e 跳到哪一步
* 步骤条跳到某一步
*/
const next: (e: number) => void = (e: number) => {
stepnow.value = e;
};