class EmployeeInfoWindow(QWidget): def init(self, user_id): super().init() self.user_id = user_id self.initUI() def initUI(self): # 连接数据库,获取员工信息 conn = pymysql.connect(host='39.99.214.172', user='root', password='Solotion.123', database='jj_tset') cursor = conn.cursor() cursor.execute("SELECT * FROM employee_table WHERE user_id='%s'" % self.user_id) result = cursor.fetchone() conn.close() # 创建用于显示员工信息的控件 info_label = QLabel("员工信息", self) info_label.move(100, 100) name_label = QLabel("姓名:" + result[1], self) name_label.move(100, 150) age_label = QLabel("年龄:" + str(result[2]), self) age_label.move(100, 200) # TODO: 创建其他员工信息控件 # 设置窗口大小和标题 self.setFixedSize(800, 500) self.setWindowTitle('员工信息') class LoginWindow(QWidget): def init(self): super().init() self.initUI() def initUI(self): self.setFixedSize(800, 500) self.setWindowTitle('鸡爪称重系统') # 创建一个按钮 button = QPushButton('开始称重', self) button.move(100, 100) button.setGeometry(300, 200, 200, 50) button.clicked.connect(self.showInputDialog) def showInputDialog(self): # 创建一个输入框,获取员工ID text, okPressed = QInputDialog.getText(self, "输入员工ID", "输入员工ID:") if okPressed and text != '': # 连接数据库,检查员工ID是否存在 conn = pymysql.connect(host='39.99.214.172', user='root', password='Solotion.123', database='jj_tset') cursor = conn.cursor() cursor.execute("SELECT * FROM employee_table WHERE user_id='%s'" % text) result = cursor.fetchone() conn.close() if result: # 员工ID存在,跳转到下一个界面,显示员工信息 print('输入的ID是:', text) employee_info_window = EmployeeInfoWindow(text) employee_info_window.show() else: # 员工ID不存在,弹出提示框,提示重新输入 QMessageBox.warning(self, '错误', '员工ID不存在,请重新输入!') if name == 'main': app = QApplication(sys.argv) loginWindow = LoginWindow() loginWindow.show() sys.exit(app.exec_())没有跳转界面
时间: 2023-12-14 20:39:18 浏览: 39
Pyqt5系列(一).pdf
5星 · 资源好评率100%
在LoginWindow中,当点击开始称重按钮时,调用了showInputDialog函数。在该函数中,如果输入的员工ID存在,则会创建一个EmployeeInfoWindow窗口并显示出来。但是,在你提供的代码中,EmployeeInfoWindow的init方法没有被正确地调用,应该改为:
```
def __init__(self, user_id):
super().__init__()
self.user_id = user_id
self.initUI()
```
你需要将init方法改成__init__方法,并且调用super().__init__()来初始化QWidget类。这样就可以正确地创建EmployeeInfoWindow窗口了。
阅读全文