1 Star 1 Fork 0

UWillno/快递管理系统-用户端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
newsdialog.cpp 454 Bytes
一键复制 编辑 原始数据 按行查看 历史
UWillno 提交于 2023-09-21 22:16 . 任务书功能
#include "newsdialog.h"
#include "ui_newsdialog.h"
#include <QDateTime>
NewsDialog::NewsDialog(QVariantList list,QWidget *parent) :m_list(list),
QDialog(parent),
ui(new Ui::NewsDialog)
{
ui->setupUi(this);
ui->label_title->setText(m_list[0].toString());
ui->label_dt->setText(m_list[2].toDateTime().toString("yyyy-MM-dd hh:mm:ss"));
ui->textBrowser->setHtml(m_list[1].toString());
}
NewsDialog::~NewsDialog()
{
delete ui;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/uwillno/Express_user_system.git
git@gitee.com:uwillno/Express_user_system.git
uwillno
Express_user_system
快递管理系统-用户端
master

搜索帮助