|
|
@@ -183,6 +183,8 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
async createGroup() {
|
|
|
+ if (this.submitLoading) return;
|
|
|
+
|
|
|
this.isServerError = false;
|
|
|
this.$v.$touch();
|
|
|
if (!this.$v.name.$invalid) {
|
|
|
@@ -208,6 +210,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async joinGroup() {
|
|
|
+ if (this.submitLoading) return;
|
|
|
+
|
|
|
this.isServerError = false;
|
|
|
this.$v.$touch();
|
|
|
if (!this.$v.code.$invalid) {
|