我的钱包 关于 列表

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

@@ -155,13 +155,22 @@ export default defineComponent({
labelCol: 4,
wrapperCol: 14,
};
const tabselected = ref(1);
const time = ref(60);
const tabselected = ref(1); //tab切换的标志
const time = ref(60);//倒计时
/**
* @param val 子组件传过来的值
*/
const Selectnum: (val: number) => void = (val: number) => {
console.log("收到子组件事件", val);
tabselected.value = val;
};
/**
* @param
* 点击获取验证码 触发倒计时
*/
const getcode: () => void = () => {
console.log(11111);
const timestep = setInterval(() => {