#include "mainwindow.h"
#include "ui_mainwindow.h"
//手工添加以下引用
#include <QSqlQueryModel>
#include <QSqlQuery>
#include "tms.h"
#include "salary.h"
#include "change.h"
#include "addapparatus.h"
#include "addpotion.h"
#include "addsalary.h"
#include "addchuang.h"
#include "addpersonnel.h"
#include "addpatient.h"
#include "personnelcha.h"
#include "personneldel.h"
#include "personnelupdata.h"
#include "addjob.h"
#include "adddept.h"
#include "logindlg.h"
#include "QDebug"
#include "QSqlError"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);//setupUi(this)是由.ui文件生成的类的构造函数
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
model->setQuery("select * from patient");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView->setRowHeight(i, 20);
}
}
Dialog::Dialog(QDialog *parent)
:QDialog(parent)
{
wa=new QDialog();
wa->setWindowTitle(tr("Manuel2"));
dialog=new QDialog();
dialog->setWindowTitle(tr("Manuel1"));
}
void Dialog::dialogUse()
{
dialog->show();
}
void Dialog::waUse()
{
wa->show();
}
void Dialog::findClick()
{
}
void Dialog::enableFindButton()
{
}
Dialog::~Dialog() //Dialog类的析构函数里面不知道写什么,就没写,哈哈......
{
}
void MainWindow::on_pushButton_2_clicked()
{
Dialog *dialogLogin=new Dialog;
dialogLogin->dialogUse();
}
void MainWindow::on_pushButton_3_clicked()
{
Dialog *dialogLogin1=new Dialog;
dialogLogin1->waUse();
}
void MainWindow::on_action_triggered()
{
AddPersonnel personnel;
personnel.exec();
}
void MainWindow::on_pushButton_5_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
model->setQuery("select * from personnel");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_2->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_2->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_2->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_12_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
model->setQuery("select * from chuang");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_3->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_3->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_3->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_14_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
model->setQuery("select * from apparatus");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_4->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_4->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_4->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_18_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
model->setQuery("select * from potion");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_5->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_5->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_5->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_19_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
QString temStr,strSQL="SELECT * FROM potion where ";
temStr=this->ui->comboBox_6->currentText();
strSQL+=temStr+"=";
strSQL+="'"+this->ui->potion_cha->text()+"'";
model->setQuery(strSQL);//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_5->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_5->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_5->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_21_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
QString temStr,strSQL="delete FROM potion where ";
temStr=this->ui->comboBox_7->currentText();
strSQL+=temStr+"=";
strSQL+="'"+this->ui->potion_del->text()+"'";
model->setQuery(strSQL);//这里直接设置SQL语句,忽略最后一个参数
model->setQuery("select * from potion");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_5->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_5->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_5->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_20_clicked()
{
// QSqlQuery query;
QSqlQueryModel *model = new QSqlQueryModel;
QString temStr,strSQL="update potion set ";
temStr=this->ui->comboBox_8->currentText();
strSQL+=temStr+"=";
strSQL+="'"+this->ui->potion_updata->text().trimmed()+"'";
strSQL+=" where 药剂代号=";
strSQL+=""+this->ui->potion_id->text().trimmed()+"";
// query.exec(QObject::tr("update potion set id=333 where id=5"));
model->setQuery(strSQL);//这里直接设置SQL语句,忽略最后一个参数
model->setQuery("select * from potion");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_5->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_5->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_5->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_15_clicked()
{
QSqlQueryModel *model = new QSqlQueryModel;
QString temStr,strSQL="SELECT * FROM apparatus where ";
temStr=this->ui->comboBox_4->currentText();
strSQL+=temStr+"=";
strSQL+="'"+this->ui->apparatus_cha->text()+"'";
model->setQuery(strSQL);//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_4->setModel(model);
//以下是视觉方面的效果,不加也没影响
//隔行变色
ui->tableView_4->setAlternatingRowColors(true);
//设置行高
int row_count = model->rowCount();
for(int i =0; i < row_count; i++)
{
ui->tableView_4->setRowHeight(i, 20);
}
}
void MainWindow::on_pushButton_17_clicked()
{
// QSqlQuery query;
QSqlQueryModel *model = new QSqlQueryModel;
QString temStr,strSQL="update apparatus set ";
temStr=this->ui->comboBox_9->currentText();
strSQL+=temStr+"=";
strSQL+="'"+this->ui->apparatus_updata->text().trimmed()+"'";
strSQL+=" where 仪器代号=";
strSQL+=""+this->ui->apparatus_id->text().trimmed()+"";
// query.exec(QObject::tr("update potion set id=333 where id=5"));
model->setQuery(strSQL);//这里直接设置SQL语句,忽略最后一个参数
model->setQuery("select * from apparatus");//这里直接设置SQL语句,忽略最后一个参数
ui->tableView_4->setModel(model);
没有合适的资源?快使用搜索试试~ 我知道了~
基于QT的医院管理系统源码.zip

共55个文件
cpp:17个
ui:16个
h:16个

1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 103 浏览量
2024-02-19
01:12:37
上传
评论 1
收藏 151KB ZIP 举报
温馨提示
【资源说明】 1、该资源包括项目的全部源码,下载可以直接使用! 2、本项目适合作为计算机、数学、电子信息等专业的课程设计、期末大作业和毕设项目,作为参考资料学习借鉴。 3、本资源作为“参考资料”如果需要实现其他功能,需要能看懂代码,并且热爱钻研,自行调试。 基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码.zip基于QT的医院管理系统源码
资源推荐
资源详情
资源评论

格式:zip 资源大小:5.4MB

























收起资源包目录

























































共 55 条
- 1
资源评论


土豆片片
- 粉丝: 1892
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


最新资源
- 船舶主要部位结构图.doc
- 2011年妇联工作思路及工作计划规划.doc
- 配电室建设和管理安全技术交底.doc
- 第二章-静置设备安装-说明计算规则.doc
- 游戏筛微信小程序(1).zip
- 2009.04.28-方案设计说明.doc
- 某12层住院综合楼工程临时用电方案.doc
- 微信小程序中的定时器(用于倒计时).zip
- 甘肃某热电厂硬度检测施工工艺.doc
- 土木工程施工管理应用措施本科论文(共3篇).doc
- 微信小程序商城, 微信小程序微店,fecshop 微信小程序,.zip
- 微信小程序反编译脚本备份.zip
- 公司静压桩施工技术.docx
- 道路电缆沟改排管工程施工监理招标文件.doc
- 园林工程预算审核、竣工结算与竣工决算PPT讲义.ppt
- 反弯点法及D值法设计题.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
