diff --git a/.eslintrc.js b/.eslintrc.js index 69129f1..8f14676 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -15,8 +15,8 @@ module.exports = { sourceType: 'module', ecmaFeatures: { modules: true - }, - requireConfigFile: false + } + // requireConfigFile: false }, plugins: [ 'vue', diff --git a/src/api/stock/StockChgApi.js b/src/api/stock/StockChgApi.js index 84b51a7..3a6fe0b 100644 --- a/src/api/stock/StockChgApi.js +++ b/src/api/stock/StockChgApi.js @@ -2,3 +2,4 @@ import request from '@/utils/request' // 获取审批人列表 export const getStockChgData = params => request({ url: '/api/stock/chg', method: 'get', params: params }) +export const getStockChgRecordData = params => request({ url: '/api/stock/chg/record', method: 'get', params: params }) diff --git a/src/components/charts/NewsChg.vue b/src/components/charts/NewsChg.vue index 1f5e604..6e8afd7 100644 --- a/src/components/charts/NewsChg.vue +++ b/src/components/charts/NewsChg.vue @@ -1,6 +1,6 @@ diff --git a/src/views/stock/chg/Index.vue b/src/views/stock/chg/Index.vue index 6a76849..253c3fc 100644 --- a/src/views/stock/chg/Index.vue +++ b/src/views/stock/chg/Index.vue @@ -1,11 +1,41 @@