|
|
@@ -2859,6 +2859,7 @@ import {
|
|
|
editDwellTime,
|
|
|
deleteTaskAnswer,
|
|
|
getCollectionShowHistory,
|
|
|
+ sendAndCheckVerCode,
|
|
|
} from '@/api/index';
|
|
|
import zRadio from '@/components/zRadio';
|
|
|
import zCheckbox from '@/components/zCheckbox';
|
|
|
@@ -5004,10 +5005,14 @@ export default {
|
|
|
}
|
|
|
if (this.time) return;
|
|
|
this.timeNum = 0;
|
|
|
- this.time = setInterval(() => {
|
|
|
- this.timeNum++;
|
|
|
- if (this.timeNum == 60) this.time = null;
|
|
|
- }, 1000);
|
|
|
+ sendAndCheckVerCode({}).then((res) => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.time = setInterval(() => {
|
|
|
+ this.timeNum++;
|
|
|
+ if (this.timeNum == 60) this.time = null;
|
|
|
+ }, 1000);
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
verification(item) {},
|
|
|
onClickLeft() {
|