diff --git a/src/pages/data/list/index.vue b/src/pages/data/list/index.vue
index a8c279b..cf8c206 100644
--- a/src/pages/data/list/index.vue
+++ b/src/pages/data/list/index.vue
@@ -403,9 +403,11 @@ export default {
let endTime = new Date(this.endTime)
let frequency = this.frequency
- // 只要选择的不是日频,则要判断选择的日期区间有没有包含这段频率对应的完整交易日段
- // 比如选的是周频,则判断选择的时间区间有没有包含一段完整的星期交易日,即星期1~5,
- // 选的是月频的话,则判断选择的时间区间有没有包含一个完整的月份,即30天;年份同理
+ /**
+ * 只要选择的不是日频,则要判断选择的日期区间有没有包含这段频率对应的完整交易日段
+ * 比如选的是周频,则判断选择的时间区间有没有包含一段完整的星期交易日,即星期1~5,
+ * 选的是月频的话,则判断选择的时间区间有没有包含一个完整的月份,即30天;年份同理
+ */
if (frequency == 2) {
let week = []
while (startTime <= endTime) {
diff --git a/src/pages/index/list/index.vue b/src/pages/index/list/index.vue
index 347ebf2..48b4a6a 100644
--- a/src/pages/index/list/index.vue
+++ b/src/pages/index/list/index.vue
@@ -55,21 +55,21 @@
平台概览
-
了解数据平台一句话简介
+
值得信赖的财经数据平台
平台特色与优势
-
了解数据平台一句话简介
+
海量数据,轻松下载
平台产品介绍
-
了解数据平台一句话简介
+
便捷操作,高效做科研
diff --git a/src/setting.js b/src/setting.js
index 74d8555..250ecfd 100644
--- a/src/setting.js
+++ b/src/setting.js
@@ -1,10 +1,7 @@
/*
- * @Author: your name
+ * @Author: Yujialong
* @Date: 2021-11-03 14:33:21
- * @LastEditTime: 2021-12-09 16:18:20
- * @LastEditors: Please set LastEditors
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: \questionnaired:\code\FE_huoran_data\src\setting.js
+ * @LastEditTime: 2021-12-22 09:41:33
*/
/**
* 业务配置
@@ -22,9 +19,13 @@ const Setting = {
routerMode: 'hash',
// 页面切换时,是否显示模拟的进度条
showProgressBar: true,
- // 接口请求地址
- // apiBaseURL: env === 'development' ? 'http://192.168.31.151:9000' : 'http://39.108.250.202:9000',// 佳坤
- apiBaseURL: env === 'development' ? 'http://www.dataforward.cn:9000' : 'http://www.dataforward.cn:9000',
+ /**
+ * 接口地址
+ * 测试:http://39.108.250.202:9000
+ * 正式:http://www.dataforward.cn:9000
+ * */
+ // apiBaseURL: env === 'development' ? 'http://192.168.31.151:9000' : 'http://39.108.250.202:9000',
+ apiBaseURL: env === 'development' ? 'http://39.108.250.202:9000' : `${location.origin}:9000`,
// 接口请求返回错误时,弹窗的持续时间,单位:秒
modalDuration: 3,
// 接口请求返回错误时,弹窗的类型,可选值为 Message 或 Notice