#include "frmselectauthor.h" #include "ui_frmselectauthor.h" #include "head.h" frmSelectAuthor::frmSelectAuthor(QWidget *parent) : QWidget(parent), ui(new Ui::frmSelectAuthor) { ui->setupUi(this); this->initForm(); } frmSelectAuthor::~frmSelectAuthor() { delete ui; } void frmSelectAuthor::showEvent(QShowEvent *) { ui->labResult->setPixmap(QPixmap(":/image/authoring.png")); ui->labInfo->setText("远程审核中..."); ui->labInfo->setStyleSheet("font:30pt;color:rgb(14,109,173)"); QTimer::singleShot(1000, this, SLOT(verifyok())); } void frmSelectAuthor::initForm() { } void frmSelectAuthor::verifyok() { ui->labResult->setPixmap(QPixmap(":/image/authorok.png")); ui->labInfo->setText("恭喜,审核成功"); ui->labInfo->setStyleSheet("font:30pt;color:rgb(0,243,15)"); }