|
@@ -557,6 +557,7 @@ export default {
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ isBtn:false,
|
|
userid: this.$route.query.userid,
|
|
userid: this.$route.query.userid,
|
|
oid: this.$route.query.oid,
|
|
oid: this.$route.query.oid,
|
|
courseId: this.$route.query.courseId,
|
|
courseId: this.$route.query.courseId,
|
|
@@ -899,6 +900,12 @@ ${_textData}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
startAssistant() {
|
|
startAssistant() {
|
|
|
|
+ if(this.isBtn) return this.$message.info("点击过快,请稍等...");
|
|
|
|
+ this.isBtn = true
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ this.isBtn = false
|
|
|
|
+ }, 1000);
|
|
|
|
+
|
|
if (this.recordLoading) return this.$message.info("请稍等...");
|
|
if (this.recordLoading) return this.$message.info("请稍等...");
|
|
this.recordLoading = true;
|
|
this.recordLoading = true;
|
|
if (this.recordType == 0) {
|
|
if (this.recordType == 0) {
|