|
@@ -3,14 +3,14 @@ import Vuex from 'vuex';
|
|
|
import _ from 'lodash';
|
|
|
Vue.use(Vuex);
|
|
|
const api = {
|
|
|
- interface: `/api/live/v0/cysci/mechanism`,
|
|
|
+ mechanism: `/api/live/v0/cysci/mechanism`,
|
|
|
};
|
|
|
const state = () => ({});
|
|
|
const mutations = {};
|
|
|
|
|
|
const actions = {
|
|
|
async query({ commit }, { skip = 0, limit, ...info } = {}) {
|
|
|
- const res = await this.$axios.$get(`${api.interface}`, {
|
|
|
+ const res = await this.$axios.$get(`${api.mechanism}`, {
|
|
|
skip,
|
|
|
limit,
|
|
|
...info,
|
|
@@ -18,28 +18,28 @@ const actions = {
|
|
|
return res;
|
|
|
},
|
|
|
async create({ commit }, payload) {
|
|
|
- const res = await this.$axios.$post(`${api.interface}`, payload);
|
|
|
+ const res = await this.$axios.$post(`${api.mechanism}`, payload);
|
|
|
return res;
|
|
|
},
|
|
|
async fetch({ commit }, payload) {
|
|
|
- const res = await this.$axios.$get(`${api.interface}/${payload}`);
|
|
|
+ const res = await this.$axios.$get(`${api.mechanism}/${payload}`);
|
|
|
return res;
|
|
|
},
|
|
|
async update({ commit }, { id, ...data }) {
|
|
|
- const res = await this.$axios.$post(`${api.interface}/update/${id}`, data);
|
|
|
+ const res = await this.$axios.$post(`${api.mechanism}/update/${id}`, data);
|
|
|
return res;
|
|
|
},
|
|
|
|
|
|
async delete({ commit }, payload) {
|
|
|
- const res = await this.$axios.$delete(`${api.interface}/${payload}`);
|
|
|
+ const res = await this.$axios.$delete(`${api.mechanism}/${payload}`);
|
|
|
return res;
|
|
|
},
|
|
|
async password({ commit }, { id, passwd }) {
|
|
|
- const res = await this.$axios.$post(`${api.interface}/password/${id}`, { passwd });
|
|
|
+ const res = await this.$axios.$post(`${api.mechanism}/password/${id}`, { passwd });
|
|
|
return res;
|
|
|
},
|
|
|
async login({ commit }, payload) {
|
|
|
- const res = await this.$axios.$post(`${api.interface}/login`, payload);
|
|
|
+ const res = await this.$axios.$post(`${api.mechanism}/login`, payload);
|
|
|
const jwt = require('jsonwebtoken');
|
|
|
if (res.errcode === 0) {
|
|
|
localStorage.setItem('token', res.data);
|