---修复黄金指标titile显示问题

This commit is contained in:
lai
2023-10-25 17:22:31 +08:00
parent 9b00ec91b9
commit e3238194ce
2 changed files with 5 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ import { parseObjLineToHump } from '@/utils/parse-utils';
*/
export async function listgoldData(query: Record<string, any>) {
let totalSQL = 'select count(*) as total from gold_kpi where 1=1 ';
let rowsSQL = 'select * from gold_kpi where 1=1 ';
let rowsSQL = 'SELECT gold_kpi.*,kpi_title.en_title FROM gold_kpi LEFT JOIN kpi_title on gold_kpi.kpi_id=kpi_title.kpi_id where 1=1 ';
// 查询
let querySQL = '';