| | |
| | | qDebug()<<"历史到信息赋值完成 条数:"<<m_model->rowCount(); |
| | | qDebug()<<QDateTime::currentDateTime(); |
| | | } |
| | | |
| | | void GetStockList::getStockNamesByNum(int num) |
| | | { |
| | | for(int i=0;i<num;++i){ |
| | | //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(); // 前面是队列-异步的方式 |
| | | |
| | | } |