This commit is contained in:
dengrb1
2023-05-04 21:26:07 +08:00
committed by GitHub
parent ed2b05a109
commit c53177b0cf
2 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ class BrowserWindow(QMainWindow):
# Create the QWebEngineView widget # Create the QWebEngineView widget
self.web_view = QWebEngineView(self) self.web_view = QWebEngineView(self)
self.web_view.load(QUrl("https://chat2.aitianhu.top")) self.web_view.load(QUrl("https://chatgpt.qdymys.cn/"))
self.setCentralWidget(self.web_view) self.setCentralWidget(self.web_view)
# Create the QToolBar widget and add a QAction for the refresh button # Create the QToolBar widget and add a QAction for the refresh button

8
xz.pyw
View File

@@ -21,8 +21,8 @@ def extkj():
def wuguokai(): def wuguokai():
open_exe("wuguokai") open_exe("wuguokai")
def f1(): def qdymys():
open_exe("aiyunos") open_exe("qdymys")
def lbbai(): def lbbai():
webbrowser.open("https://link.lbbai.com") webbrowser.open("https://link.lbbai.com")
@@ -34,7 +34,7 @@ def fh():
# Button # Button
bt_wuguokai = Button(root, text='wuguokai网站', command=wuguokai) bt_wuguokai = Button(root, text='wuguokai网站', command=wuguokai)
bt_extkj = Button(root, text='extkj网站', command=extkj) bt_extkj = Button(root, text='extkj网站', command=extkj)
bt_f1 = Button(root, text='aiyunos网站', command=f1) bt_qdymys = Button(root, text='qdymys网站', command=qdymys)
bt_lbbai = Button(root, text='lbbai网站', command=lbbai) bt_lbbai = Button(root, text='lbbai网站', command=lbbai)
bt_fh = Button(root, text='返回', command=fh) bt_fh = Button(root, text='返回', command=fh)
@@ -42,7 +42,7 @@ bt_fh = Button(root, text='返回', command=fh)
Label(root, text='选择界面').pack() Label(root, text='选择界面').pack()
bt_wuguokai.pack() bt_wuguokai.pack()
bt_extkj.pack() bt_extkj.pack()
bt_f1.pack() bt_qdymys.pack()
bt_lbbai.pack() bt_lbbai.pack()
bt_fh.pack() bt_fh.pack()