guhongwei %!s(int64=4) %!d(string=hai) anos
pai
achega
2eba4844c4
Modificáronse 2 ficheiros con 9 adicións e 9 borrados
  1. 1 1
      src/store/index.js
  2. 8 8
      src/store/live/mechanism.js

+ 1 - 1
src/store/index.js

@@ -32,7 +32,6 @@ export default new Vuex.Store({
   modules: {
     // 环南湖接口
     expert,
-    mechanism,
     product,
     patent,
     news,
@@ -44,6 +43,7 @@ export default new Vuex.Store({
     // 直播平台接口
     adminLogin,
     organization,
+    mechanism,
     coupons,
     couponsApply,
     declare,

+ 8 - 8
src/store/live/mechanism.js

@@ -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);