From 23d0daeaefd78f16094ab56a6306be1737171e8c Mon Sep 17 00:00:00 2001 From: nelson Date: Sun, 17 Apr 2022 01:10:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=A8=E8=B7=8C=E5=AE=B6=E6=95=B0=E5=AF=B9?= =?UTF-8?q?=E6=AF=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 4 +- src/api/stock/StockChgApi.js | 1 + src/components/charts/NewsChg.vue | 8 +- src/components/charts/UpLow.vue | 159 ++++++++++++++++++++++++++++++ src/layout/Index.vue | 2 +- src/views/stock/chg/Index.vue | 30 ++++++ vite.config.ts | 3 +- 7 files changed, 200 insertions(+), 7 deletions(-) create mode 100644 src/components/charts/UpLow.vue 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 @@