|
|
|
@ -45,6 +45,7 @@ |
|
|
|
|
class="dialog" |
|
|
|
|
title="短信登录" |
|
|
|
|
:visible.sync="dialogVisible" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
width="550px" |
|
|
|
|
> |
|
|
|
|
<div class="dialog_title"> |
|
|
|
@ -63,13 +64,14 @@ |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button> |
|
|
|
|
<el-button @click.stop="dialogVisible = false">取 消</el-button> |
|
|
|
|
<el-button type="primary" @click="yzmloginBtn()">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
<el-dialog |
|
|
|
|
title="责任人" |
|
|
|
|
:visible.sync="zzrdialogVisible" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
width="550px" |
|
|
|
|
> |
|
|
|
|
<el-form ref="form" :model="form" label-width="60px" label-position="left" align="center" class="form"> |
|
|
|
@ -84,7 +86,7 @@ |
|
|
|
|
</el-row> |
|
|
|
|
</el-form> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button @click="zzrdialogVisible = false">取 消</el-button> |
|
|
|
|
<el-button @click.stop="zzrdialogVisible = false">取 消</el-button> |
|
|
|
|
<el-button type="primary" @click="zzrloginBtn()">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
@ -128,7 +130,7 @@ export default { |
|
|
|
|
anewLoginBtnLoading:false, |
|
|
|
|
getyzmBtnloading:false, |
|
|
|
|
getQrCodeBtnloading:false, |
|
|
|
|
countdown:60, |
|
|
|
|
countdown:120, |
|
|
|
|
timec: null, // 定时器 |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
@ -216,7 +218,7 @@ export default { |
|
|
|
|
} else { |
|
|
|
|
// 倒计时结束,重置状态 |
|
|
|
|
this.getyzmBtnloading = false; |
|
|
|
|
this.countdown = 60; |
|
|
|
|
this.countdown = 120; |
|
|
|
|
clearInterval(this.timec); // 清除定时器 |
|
|
|
|
} |
|
|
|
|
}, 1000); |
|
|
|
|