|
@@ -341,9 +341,10 @@ export default new Vuex.Store({
|
|
|
},
|
|
|
//登录与注册
|
|
|
async corpReg({ state, commit }, { data, schid, schname }) {
|
|
|
- let result = await this.$axios.$post(api.corpReg, data, {}, { schid: JSON.stringify(schid), schname: schname });
|
|
|
+ let result = await this.$axios.$post(api.corpReg, data, {}, { schid: schid, schname: schname });
|
|
|
return result;
|
|
|
},
|
|
|
+ //没用
|
|
|
async schCorps({ state, commit }) {
|
|
|
let result = await this.$axios.$get(api.corpReg, { schid: 999991 });
|
|
|
return result;
|