修改官网地址

This commit is contained in:
SiYuan
2024-02-19 21:22:24 +08:00
parent acf117337e
commit ad4fcf8fe5
7 changed files with 28 additions and 26 deletions

View File

@@ -67,7 +67,7 @@ class ContactInfo(QWidget, Ui_Form):
self.toolButton_output.showMenu()
def analysis(self):
# QDesktopServices.openUrl(QUrl("https://memotrace.lc044.love/"))
# QDesktopServices.openUrl(QUrl("https://memotrace.cn/"))
self.report_thread = ReportThread(self.contact)
# self.report_thread.okSignal.connect(lambda x: QDesktopServices.openUrl(QUrl("http://127.0.0.1:21314")))
self.report_thread.start()
@@ -99,7 +99,7 @@ class ContactInfo(QWidget, Ui_Form):
QDesktopServices.openUrl(QUrl(f"http://127.0.0.1:21314/christmas/{self.contact.wxid}"))
def emotionale_Analysis(self):
QDesktopServices.openUrl(QUrl("https://memotrace.lc044.love/"))
QDesktopServices.openUrl(QUrl("https://memotrace.cn/"))
def back(self):
"""

View File

@@ -20,11 +20,11 @@ class Avatar(QLabel):
def mouseDoubleClickEvent(self, e): # 双击
super().mouseDoubleClickEvent(e)
QDesktopServices.openUrl(QUrl("https://memotrace.lc044.love/"))
QDesktopServices.openUrl(QUrl("https://memotrace.cn/"))
def mousePressEvent(self, e): # 单击
super().mousePressEvent(e)
QDesktopServices.openUrl(QUrl("https://memotrace.lc044.love/"))
QDesktopServices.openUrl(QUrl("https://memotrace.cn/"))
class Ui_MainWindow(object):