2 Star 5 Fork 5

AvenirTech 未来科技/MyPostman

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
addnew.cpp 1006 Bytes
一键复制 编辑 原始数据 按行查看 历史
吉法师 提交于 2020-06-19 23:16 . 修改用户列表无法刷新的问题
#include "addnew.h"
#include "ui_addnew.h"
#include "common.h"
#include "mypostman.h"
AddNew::AddNew(MyPostman *myPostMan, QWidget *parent) :
QMainWindow(parent),
ui(new Ui::AddNew)
{
ui->setupUi(this);
setFixedSize(400,300);
_myPostMan = myPostMan;
}
AddNew::~AddNew()
{
delete ui;
}
void AddNew::on_btn_confirm_clicked()
{
QSqlQuery sql_query;
QString User = ui->lineEdit_user->text();
QDateTime now = QDateTime::currentDateTime();
QString nowTime = now.toString("yyyyMMddhhmmss");
QString createUser =QString("insert into User(UserName,PassWord,UpdateTime) values('%1','','%2');").arg(User).arg(nowTime);
qDebug()<<"创建用户的sql为"<<createUser;
if(!sql_query.exec(createUser))
{
qDebug() << sql_query.lastError();
this->close();
}
else
{
qDebug() << "created a new user!";
_myPostMan->getUserList();
this->close();
}
}
void AddNew::on_btn_return_clicked()
{
this->close();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/onlyyyy/MyPostman.git
git@gitee.com:onlyyyy/MyPostman.git
onlyyyy
MyPostman
MyPostman
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385