|
@@ -39,7 +39,6 @@ func (c *EdbInfoRelationController) RelationEdbList() {
|
|
}()
|
|
}()
|
|
|
|
|
|
source, _ := c.GetInt("Source")
|
|
source, _ := c.GetInt("Source")
|
|
- edbInfoType, _ := c.GetInt("EdbInfoType")
|
|
|
|
classifyId := c.GetString("ClassifyId")
|
|
classifyId := c.GetString("ClassifyId")
|
|
sysUserId := c.GetString("SysUserId")
|
|
sysUserId := c.GetString("SysUserId")
|
|
frequency := c.GetString("Frequency")
|
|
frequency := c.GetString("Frequency")
|
|
@@ -73,17 +72,14 @@ func (c *EdbInfoRelationController) RelationEdbList() {
|
|
if currentIndex <= 0 {
|
|
if currentIndex <= 0 {
|
|
currentIndex = 1
|
|
currentIndex = 1
|
|
}
|
|
}
|
|
- if source == -1 {
|
|
|
|
- edbInfoType = 1
|
|
|
|
- source = 0
|
|
|
|
- }
|
|
|
|
- if source == -2 {
|
|
|
|
- edbInfoType = 2
|
|
|
|
|
|
+ edbType := 1 //基础指标
|
|
|
|
+ if source == -1 { //计算指标
|
|
|
|
+ edbType = 2
|
|
source = 0
|
|
source = 0
|
|
}
|
|
}
|
|
startSize = utils.StartIndex(currentIndex, pageSize)
|
|
startSize = utils.StartIndex(currentIndex, pageSize)
|
|
|
|
|
|
- total, list, err := data.GetEdbRelationList(source, edbInfoType, classifyId, sysUserId, frequency, keyword, status, startSize, pageSize, sortParam, sortType)
|
|
|
|
|
|
+ total, list, err := data.GetEdbRelationList(source, edbType, classifyId, sysUserId, frequency, keyword, status, startSize, pageSize, sortParam, sortType)
|
|
if err != nil && err.Error() != utils.ErrNoRow() {
|
|
if err != nil && err.Error() != utils.ErrNoRow() {
|
|
br.Msg = "获取失败"
|
|
br.Msg = "获取失败"
|
|
br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
br.ErrMsg = "获取数据失败,Err:" + err.Error()
|