|
@@ -784,8 +784,9 @@ const setCommodityChart = () => {
|
|
|
|
|
|
if(haveContract) {
|
|
|
// 利润曲线指标名
|
|
|
+ const isEdb=commodityEdbList.value.some(_=>_.EdbInfoId===haveContract)
|
|
|
let edb_name = resData.value.ChartInfo.Source === 5
|
|
|
- ? (index === 0 ? obj_item.NameList[index] : `${resData.value.DataResp.ProfitName}(${obj_item.NameList[index]})`)
|
|
|
+ ? (isEdb? obj_item.NameList[index] : `${resData.value.DataResp.ProfitName}(${obj_item.NameList[index]})`)
|
|
|
: commodityEdbList.value.find(_ => _.EdbInfoId === obj_item.XEdbInfoIdList[index]).EdbName;
|
|
|
str+=`<b>${ edb_name }</b>`
|
|
|
|