changes
This commit is contained in:
@@ -187,50 +187,50 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
common: {
|
||||
get: function () {
|
||||
return this.$store.state.common;
|
||||
get() {
|
||||
return this.$store.common;
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit("updateCommon", { common: val });
|
||||
},
|
||||
},
|
||||
registermethod: {
|
||||
get: function () {
|
||||
return this.$store.state.registermethod;
|
||||
get() {
|
||||
return this.$store.registermethod;
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit("updateRegisterMethod", { registermethod: val });
|
||||
},
|
||||
},
|
||||
authmethod: {
|
||||
get: function () {
|
||||
return this.$store.state.authmethod;
|
||||
get() {
|
||||
return this.$store.authmethod;
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit("updateAuthMethod", { authmethod: val });
|
||||
},
|
||||
},
|
||||
authstatus: {
|
||||
get: function () {
|
||||
return this.$store.state.authstatus;
|
||||
get() {
|
||||
return this.$store.authstatus;
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit("updateAuthStatus", { authstatus: val });
|
||||
},
|
||||
},
|
||||
usertype: {
|
||||
get: function () {
|
||||
return this.$store.state.usertype;
|
||||
get() {
|
||||
return this.$store.usertype;
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit("updateUserType", { usertype: val });
|
||||
},
|
||||
},
|
||||
dialog: {
|
||||
get: function () {
|
||||
return this.$store.state["dialog"];
|
||||
get() {
|
||||
return this.$store.dialog;
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit("updateStore", { name: "dialog", data: val });
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user