|
@@ -711,9 +711,7 @@ func (this *TradeCommonController) ExportoilchemList() {
|
|
|
}
|
|
|
//sheetNew.SetColWidth()
|
|
|
//获取指标数据
|
|
|
- windRow := sheetNew.AddRow()
|
|
|
secNameRow := sheetNew.AddRow()
|
|
|
- indexCodeRow := sheetNew.AddRow()
|
|
|
frequencyRow := sheetNew.AddRow()
|
|
|
unitRow := sheetNew.AddRow()
|
|
|
lastModifyDateRow := sheetNew.AddRow()
|
|
@@ -734,24 +732,18 @@ func (this *TradeCommonController) ExportoilchemList() {
|
|
|
return
|
|
|
}
|
|
|
if len(dataList) > 0 {
|
|
|
- windRow.AddCell().SetValue("隆众资讯")
|
|
|
- secNameRow.AddCell().SetValue("指标名称")
|
|
|
- indexCodeRow.AddCell().SetValue("指标ID")
|
|
|
- frequencyRow.AddCell().SetValue("频率")
|
|
|
- unitRow.AddCell().SetValue("单位")
|
|
|
- lastModifyDateRow.AddCell().SetValue("更新时间")
|
|
|
+ secNameRow.AddCell().SetValue("指标名称/Metric Name")
|
|
|
+ frequencyRow.AddCell().SetValue("频度/Frequency")
|
|
|
+ unitRow.AddCell().SetValue("单位/Unit")
|
|
|
+ lastModifyDateRow.AddCell().SetValue("更新时间/Update Time")
|
|
|
|
|
|
secNameRow.AddCell().SetValue(sv.IndexName)
|
|
|
- indexCodeRow.AddCell().SetValue(sv.IndexCode)
|
|
|
frequencyRow.AddCell().SetValue(sv.Frequency)
|
|
|
|
|
|
unitRow.AddCell().SetValue(sv.Unit)
|
|
|
lastModifyDateRow.AddCell().SetValue(sv.ModifyTime)
|
|
|
|
|
|
- windRow.AddCell()
|
|
|
- windRow.AddCell()
|
|
|
secNameRow.AddCell()
|
|
|
- indexCodeRow.AddCell()
|
|
|
frequencyRow.AddCell()
|
|
|
unitRow.AddCell()
|
|
|
lastModifyDateRow.AddCell()
|