|
@@ -19,6 +19,10 @@ const actions = {
|
|
const res = await this.$axios.$post(`${api.noticeInfo}`, payload);
|
|
const res = await this.$axios.$post(`${api.noticeInfo}`, payload);
|
|
return res;
|
|
return res;
|
|
},
|
|
},
|
|
|
|
+ async fetch({ commit }, payload) {
|
|
|
|
+ const res = await this.$axios.$get(`${api.noticeInfo}/${payload}`);
|
|
|
|
+ return res;
|
|
|
|
+ },
|
|
async lookFetch({ commit }, payload) {
|
|
async lookFetch({ commit }, payload) {
|
|
const res = await this.$axios.$post(`${api.lookInfo}`, payload);
|
|
const res = await this.$axios.$post(`${api.lookInfo}`, payload);
|
|
return res;
|
|
return res;
|