wumu
2025-09-11 abc5b592843b5482ddbeb576ee7fba46f2fc5e39
getstocklist.cpp
@@ -1076,7 +1076,13 @@
void GetStockList::getStockNamesByNum(int num)
{
    for(int i=0;i<num;++i){
        qDebug()<<i+1<<m_model->item(i,0)->text();
        emit sendNameToAnalysis(m_model->item(i,0)->text()); // 发名字给缓存分析界面来依次分析
        //qDebug()<<i+1<<m_model->item(i,0)->text();
        qDebug()<<i+1<<m_customModel->data(m_customModel->index(i,0)).toString();
//        emit sendNameToAnalysis(m_model->item(i,0)->text()); // 发名字给缓存分析界面来依次分析
        emit sendNameToAnalysis(m_customModel->data(m_customModel->index(i,0)).toString());
    }
    // 分析完了,再刷新时间
    //emit sendUpdateFindTime(); // 前面是队列-异步的方式
}