diff --git a/src/api/reward/apply.js b/src/api/reward/apply.js index ea0ae21..28865a3 100644 --- a/src/api/reward/apply.js +++ b/src/api/reward/apply.js @@ -8,37 +8,48 @@ export function listApply(query) { params: query }) } - -// 查询公告详细 -export function getNotice(noticeId) { +//根据奖项类型生成applyId +export function getApplyId(query) { return request({ - url: '/system/notice/' + noticeId, - method: 'get' + url: '/reward/apply/getApplyId', + method: 'get', + params: query }) } - -// 新增公告 -export function addNotice(data) { +//查询详细 +export function getDetail(query) { return request({ - url: '/system/notice', - method: 'post', - data: data + url: '/reward/apply/detail/' + query, + method: 'get' }) } - -// 修改公告 -export function updateNotice(data) { +// 修改 +export function updateApply(data) { return request({ - url: '/system/notice', - method: 'put', + url: '/reward/apply/submit', + method: 'post', data: data }) } - // 删除公告 -export function delNotice(noticeId) { +export function delApply(applyId) { return request({ - url: '/system/notice/' + noticeId, + url: '/reward/apply/delete/' + applyId, method: 'delete' }) } +// 删除文件 +export function delFile(fileId) { + return request({ + url: '/reward/file/delFile/' + fileId, + method: 'get' + }) +} +// 查询文件列表 +export function listFile(query) { + return request({ + url: '/reward/file/getFileInfo', + method: 'get', + params: {applyId:query} + }) +} diff --git a/src/components/CustomTable/CustomTable.vue b/src/components/CustomTable/CustomTable.vue new file mode 100644 index 0000000..654a7e9 --- /dev/null +++ b/src/components/CustomTable/CustomTable.vue @@ -0,0 +1,112 @@ + + + diff --git a/src/store/getters.js b/src/store/getters.js index 8adb1b6..9d80197 100644 --- a/src/store/getters.js +++ b/src/store/getters.js @@ -3,6 +3,8 @@ const getters = { size: state => state.app.size, device: state => state.app.device, dict: state => state.dict.dict, + applyType:state => state.apply.applyType, + applyId:state => state.apply.applyId, visitedViews: state => state.tagsView.visitedViews, cachedViews: state => state.tagsView.cachedViews, token: state => state.user.token, diff --git a/src/store/index.js b/src/store/index.js index 97aaef8..31cf42e 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -3,6 +3,7 @@ import Vuex from 'vuex' import app from './modules/app' import dict from './modules/dict' import user from './modules/user' +import apply from './modules/apply' import tagsView from './modules/tagsView' import permission from './modules/permission' import settings from './modules/settings' @@ -15,6 +16,7 @@ const store = new Vuex.Store({ app, dict, user, + apply, tagsView, permission, settings diff --git a/src/store/modules/apply.js b/src/store/modules/apply.js new file mode 100644 index 0000000..c74355f --- /dev/null +++ b/src/store/modules/apply.js @@ -0,0 +1,36 @@ +const state = { + applyType:'', + applyId:'' +} +const mutations = { + SET_APPLYTYPE: (state, { key, value }) => { + if (key !== null && key !== "") { + state.applyType = value + } + }, + SET_APPLYID: (state, { key, value }) => { + if (key !== null && key !== "") { + state.applyId = value + } + } +} + +const actions = { + // 设置字典 + setApplyType({ commit }, data) { + commit('SET_APPLYTYPE', data) + }, + // 设置字典 + setApplyId({ commit }, data) { + localStorage.setItem('applyId', data.value) + commit('SET_APPLYID', data) + }, +} + +export default { + namespaced: true, + state, + mutations, + actions +} + diff --git a/src/views/reward/apply/index.vue b/src/views/reward/apply/index.vue index a6ddf0a..b4d59dd 100644 --- a/src/views/reward/apply/index.vue +++ b/src/views/reward/apply/index.vue @@ -1,26 +1,27 @@ + diff --git a/src/views/reward/apply/update.vue b/src/views/reward/apply/update.vue new file mode 100644 index 0000000..569283c --- /dev/null +++ b/src/views/reward/apply/update.vue @@ -0,0 +1,254 @@ + + + + +