| 12345678910111213141516171819202122232425262728293031 |
- #ifndef SELECTSPECS_H
- #define SELECTSPECS_H
- #include <QObject>
- #include "configinfo.h"
- #include "httprequest.h"
- #include "globalinfo.h"
- class SelectSpecs : public QObject
- {
- Q_OBJECT
- public:
- SelectSpecs();
- void getInfo(int page, int pageListNum);
- void result(int code, const QJsonObject & body);
- void parseObject(const QJsonObject & obj);
- QList<ProjectInfo> currtInfo;
- signals:
- void change();
- public:
- int totleNum;
- private:
- HttpRequest _request;
- };
- #endif // SELECTSPECS_H
|