wuhongyu пре 5 година
родитељ
комит
6b39663a9b

+ 4 - 0
store/market/enterpriseproject.js

@@ -25,6 +25,10 @@ const actions = {
     const res = await this.$axios.$get(`${api.columnInfo}/${payload}`);
     return res;
   },
+  async newfetch({ commit }, payload) {
+    const res = await this.$axios.$get(`${api.columnInfo}/newfetch/${payload}`);
+    return res;
+  },
   async update({ commit }, { id, ...data }) {
     const res = await this.$axios.$post(`${api.columnInfo}/update/${id}`, data);
     return res;

+ 1 - 1
store/market/market.js

@@ -22,7 +22,7 @@ const actions = {
     return res;
   },
   async update({ commit }, { id, ...data }) {
-    const res = await this.$axios.$post(`${api.userInfo}/update/${id}`, data);
+    const res = await this.$axios.$post(`${api.userInfo}/${id}`, data);
     return res;
   },
 

+ 21 - 1
store/market/marketproduct.js

@@ -10,7 +10,27 @@ const mutations = {};
 
 const actions = {
   async query({ commit }, { skip = 0, limit, ...info } = {}) {
-    const res = await this.$axios.$get(`${api.newsInfo}`, { skip, limit, ...info });
+    const res = await this.$axios.$get(`${api.newsInfo}`, {
+      skip,
+      limit,
+      ...info,
+    });
+    return res;
+  },
+  async newquery({ commit }, { skip = 0, limit, ...info } = {}) {
+    const res = await this.$axios.$get(`${api.newsInfo}/newquery`, {
+      skip,
+      limit,
+      ...info,
+    });
+    return res;
+  },
+  async newfetch({ commit }, { skip = 0, limit, ...info } = {}) {
+    const res = await this.$axios.$get(`${api.newsInfo}/newfetch`, {
+      skip,
+      limit,
+      ...info,
+    });
     return res;
   },
   async create({ commit }, payload) {

+ 30 - 0
store/market/newmarketproduct.js

@@ -0,0 +1,30 @@
+import Vue from 'vue';
+import Vuex from 'vuex';
+import _ from 'lodash';
+Vue.use(Vuex);
+const api = { newsInfo: `/api/market/product` };
+const state = () => ({});
+const mutations = {};
+const actions = {
+  async query({ commit }, { skip = 0, limit, ...info } = {}) {
+    const res = await this.$axios.$get(`${api.newsInfo}`, { skip, limit, ...info });
+    return res;
+  },
+  async create({ commit }, payload) {
+    const res = await this.$axios.$post(`${api.newsInfo}`, payload);
+    return res;
+  },
+  async fetch({ commit }, payload) {
+    const res = await this.$axios.$get(`${api.newsInfo}/${payload}`);
+    return res;
+  },
+  async update({ commit }, { id, ...data }) {
+    const res = await this.$axios.$post(`${api.newsInfo}/newfetch/${id}`, data);
+    return res;
+  },
+  async delete({ commit }, payload) {
+    const res = await this.$axios.$delete(`${api.newsInfo}/${payload}`);
+    return res;
+  },
+};
+export default { namespaced: true, state, mutations, actions };