• python / pyside6 + pymysql 实现简单的个人资金管理系统



    功能需求:使用者只需输入每笔进出账,程序可以自动以天、周、月、季度 以及 年 为单位统计数据,并展现给使用者。

    用到的python第三方库

    命令行执行一下命令,安装第三方库:

    pip install pyside6
    
    • 1
    pip install pymysql
    
    • 1

    数据库建表

    我这里使用的是MySQL。

    创建数据库“mnyman”:

    create database mnyman;
    
    • 1
    use mnyman;
    
    • 1

    创建类型表:

    create table type (
        type VARCHAR(30) primary key 
    );
    
    • 1
    • 2
    • 3

    创建账单表:

    create table eandi (
        dt VARCHAR(11),
        amofmny NUMERIC(9,2),
        notes VARCHAR(50),
        type VARCHAR(30),
        crtmn NUMERIC(14,2),
        foreign key(type) references type(type) on delete restrict
    );
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    创建天表:

    CREATE TABLE days (
        dt VARCHAR(11) PRIMARY KEY,
        dttli NUMERIC(9,2),
        idetails varchar(200),
        dttle NUMERIC(9,2),
        edetails varchar(200)
    );
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    创建周表:

    create table weeks (
        wkinfo varchar(23) PRIMARY KEY,
        wttle NUMERIC(9,2),
        wttli NUMERIC(9,2),
        eset VARCHAR(100),
        emset VARCHAR(100),
        iset VARCHAR(100),
        imset VARCHAR(100)
    );
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    创建月表:

    create table months (
        mno VARCHAR(8) PRIMARY KEY,
        mttle NUMERIC(9,2),
        mttli NUMERIC(9,2),
        eset VARCHAR(100),
        emset VARCHAR(100),
        iset VARCHAR(100),
        imset VARCHAR(100)
    );
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    创建季度表:

    CREATE TABLE quarters (
        qno VARCHAR(8) PRIMARY KEY,
        qttle NUMERIC(9,2),
        qttli NUMERIC(9,2),
        eset VARCHAR(100),
        emset VARCHAR(100),
        iset VARCHAR(100),
        imset VARCHAR(100)
    );
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    创建年表:

    CREATE TABLE years (
        yno VARCHAR(5) PRIMARY KEY,
        yttle NUMERIC(9,2),
        yttli NUMERIC(9,2),
        eset VARCHAR(100),
        emset VARCHAR(100),
        iset VARCHAR(100),
        imset VARCHAR(100)
    );
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    代码部分

    连接数据库:

    def cnctdb(self):
        db = pymysql.connect(host="localhost", user="root", password="", charset="utf8")    # password="",引号里面填写登录数据库的密码
        csr = db.cursor()
        return db, csr
    
    • 1
    • 2
    • 3
    • 4

    关闭数据库:

    def closedb(self, csr, db):
        csr.close()
        db.close()
    
    • 1
    • 2
    • 3

    提示弹窗:

    def msbox(self, wintitle, text):
        tip = QMessageBox()
        tip.setWindowTitle(wintitle)
        tip.setText(text)
        tip.exec()
    
    • 1
    • 2
    • 3
    • 4
    • 5

    填充表的数据:

    def setTable(self, table, tul):   # 表名,tul元组或列表
        table.setRowCount(len(tul))
        x = 0
        for i in tul:
            y = 0
            for j in i[0:len(i)]:
                con = str(j)
                table.setItem(x, y, QTableWidgetItem(con))
                y += 1
            x += 1
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10



    全部代码:

    from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
        QMetaObject, QObject, QPoint, QRect,
        QSize, QTime, QUrl, Qt)
    from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
        QFont, QFontDatabase, QGradient, QIcon,
        QImage, QKeySequence, QLinearGradient, QPainter,
        QPalette, QPixmap, QRadialGradient, QTransform)
    from PySide6.QtWidgets import (QApplication, QComboBox, QFrame, QHeaderView,
        QLabel, QLineEdit, QPushButton, QSizePolicy,
        QTabWidget, QTableWidget, QTableWidgetItem, QWidget)
    import sys
    import re
    from decimal import Decimal
    from PySide6 import QtWidgets
    import pymysql
    from PySide6.QtWidgets import QMessageBox
    
    
    class Ui_mnyman(QtWidgets.QWidget):
        def __init__(self):
            super().__init__()
            self.setupUi(self)
            self.activeEvent()
    
        def activeEvent(self):
            self.pushButton.clicked.connect(self.doNewType)
            self.pushButton_2.clicked.connect(self.showTypes)
            self.pushButton_3.clicked.connect(self.doInsertItem)
            self.pushButton_4.clicked.connect(self.showdetails)
            self.pushButton_5.clicked.connect(self.insertDay)
            self.pushButton_6.clicked.connect(self.showdays)
            self.pushButton_9.clicked.connect(self.searchTheType)
            self.pushButton_7.clicked.connect(self.insertWeeks)
            self.pushButton_11.clicked.connect(self.showdetailsofyear)
            self.pushButton_12.clicked.connect(self.showThedays)
            self.pushButton_8.clicked.connect(self.showWeeks)
            self.pushButton_10.clicked.connect(self.insertMonth)
            self.pushButton_25.clicked.connect(self.showMonths)
            self.pushButton_26.clicked.connect(self.insertQuarter)
            self.pushButton_27.clicked.connect(self.showquarters)
            self.pushButton_29.clicked.connect(self.insertYear)
            self.pushButton_28.clicked.connect(self.showYears)
            self.pushButton_13.clicked.connect(self.deletetype)
            self.pushButton_14.clicked.connect(self.deletedayItems)
            self.pushButton_39.clicked.connect(self.deleteTheDay)
            self.pushButton_40.clicked.connect(self.deleteYear)
            self.pushButton_42.clicked.connect(self.deleteWeek)
            self.pushButton_43.clicked.connect(self.deleteMonth)
            self.pushButton_44.clicked.connect(self.deleteQuarter)
            self.pushButton_41.clicked.connect(self.deleteTheItem)
    
        def cnctdb(self):
            db = pymysql.connect(host="localhost", user="root", password="", charset="utf8")    # password="",引号里面填写登录数据库的密码
            csr = db.cursor()
            return db, csr
    
        def closedb(self, csr, db):
            csr.close()
            db.close()
    
        def msbox(self, wintitle, text):
            tip = QMessageBox()
            tip.setWindowTitle(wintitle)
            tip.setText(text)
            tip.exec()
    
        def setTable(self, table, tul):
            table.setRowCount(len(tul))
            x = 0
            for i in tul:
                y = 0
                for j in i[0:len(i)]:
                    con = str(j)
                    table.setItem(x, y, QTableWidgetItem(con))
                    y += 1
                x += 1
    
        def newType(self, type):
            db, csr = self.cnctdb()
            csr.execute("use mnyman;")
            csr.execute("insert into type values (\"{}\");".format(type))
            # self.writeToElog("insert into type values (\"{}\");".format(type))
            db.commit()
            self.closedb(csr, db)
    
        def doNewType(self):
            try:
                if self.lineEdit.text()=="":
                    self.msbox("插入错误","类型不能为空!")
                else:
                    self.newType(self.lineEdit.text())
                    self.msbox("插入成功", "成功插入该类型!")
            except pymysql.err.IntegrityError:
                self.msbox("插入错误", "已经存在该类型!")
    
        def showTypes(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from type;")
            types = csr.fetchall()
            self.setTable(self.tableWidget, types)
    
        def deletetype(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            try:
                csr.execute("select type from type where type=\"{}\";".format(self.lineEdit_16.text()))
                result = csr.fetchall()
                if result:
                    csr.execute("delete from type where type=\"{}\";".format(self.lineEdit_16.text()))
                    db.commit()
                    self.msbox("删除成功","成功删除该类型!")
                else:
                    self.msbox("删除错误","没有该类型!")
            except pymysql.err.IntegrityError:
                self.msbox("删除错误","该类型无法删除,因为有其他表将其作为外键参考!")
            self.closedb(db,csr)
    
        def doInsertItem(self):
            db,csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from eandi;")
            res = csr.fetchall()
            if res:
                if self.lineEdit_2.text() == "":
                    self.msbox("插入错误", "年份不能为空!")
                elif len(self.lineEdit_2.text()) < 4:
                    self.msbox("插入错误", "年份的位数必须大于等于4!")
                elif int(self.lineEdit_6.text()) < 1 or int(self.lineEdit_6.text()) > 12:
                    self.msbox("插入错误", "月份必须为1~12!")
                elif int(self.lineEdit_7.text()) < 1 or int(self.lineEdit_7.text()) > 31:
                    self.msbox("插入错误", "日期必须为1~31!")
                else:
                    if len(self.lineEdit_6.text()) == 1:
                        if len(self.lineEdit_7.text()) == 1:
                            self.insertItem(
                                self.lineEdit_2.text() + ".0" + self.lineEdit_6.text() + ".0" + self.lineEdit_7.text(),
                                float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                                self.lineEdit_5.text())
                        else:
                            self.insertItem(
                                self.lineEdit_2.text() + ".0" + self.lineEdit_6.text() + "." + self.lineEdit_7.text(),
                                float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                                self.lineEdit_5.text())
                    else:
                        if len(self.lineEdit_7.text()) == 1:
                            self.insertItem(
                                self.lineEdit_2.text() + "." + self.lineEdit_6.text() + ".0" + self.lineEdit_7.text(),
                                float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                                self.lineEdit_5.text())
                        else:
                            self.insertItem(
                                self.lineEdit_2.text() + "." + self.lineEdit_6.text() + "." + self.lineEdit_7.text(),
                                float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                                self.lineEdit_5.text())
            else:
                if len(self.lineEdit_6.text()) == 1:
                    if len(self.lineEdit_7.text()) == 1:
                        self.insertFirstItem(
                            self.lineEdit_2.text() + ".0" + self.lineEdit_6.text() + ".0" + self.lineEdit_7.text(),
                            float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                            self.lineEdit_5.text())
                    else:
                        self.insertFirstItem(
                            self.lineEdit_2.text() + ".0" + self.lineEdit_6.text() + "." + self.lineEdit_7.text(),
                            float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                            self.lineEdit_5.text())
                else:
                    if len(self.lineEdit_7.text()) == 1:
                        self.insertFirstItem(
                            self.lineEdit_2.text() + "." + self.lineEdit_6.text() + ".0" + self.lineEdit_7.text(),
                            float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                            self.lineEdit_5.text())
                    else:
                        self.insertFirstItem(
                            self.lineEdit_2.text() + "." + self.lineEdit_6.text() + "." + self.lineEdit_7.text(),
                            float(self.lineEdit_3.text()), self.lineEdit_4.text(),
                            self.lineEdit_5.text())
    
        def insertFirstItem(self,date,mny,note,type):
            db,csr = self.cnctdb()
            csr.execute("use mnyman")
            try:
                csr.execute("insert into eandi values (\"{}\",{},\"{}\",\"{}\",{});".format(date,mny,note,type,mny))
                self.msbox("插入成功", "您已成功插入该项!")
            except pymysql.err.DataError:
                self.msbox("插入错误","金额太大,超出规定范围!金额数据整数部分不得大于7位数!")
            db.commit()
            self.closedb(csr,db)
    
        def deleteTheItem(self):
            if self.lineEdit_55.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_55.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            elif int(self.lineEdit_51.text()) < 1 or int(self.lineEdit_51.text()) > 12:
                self.msbox("插入错误", "月份必须为1~12!")
            elif int(self.lineEdit_54.text()) < 1 or int(self.lineEdit_54.text()) > 31:
                self.msbox("插入错误", "日期必须为1~31!")
            else:
                if len(self.lineEdit_51.text()) == 1:
                    if len(self.lineEdit_54.text()) == 1:
                        self.doDeleteTheItem(
                            self.lineEdit_55.text() + ".0" + self.lineEdit_51.text() + ".0" + self.lineEdit_54.text(),self.lineEdit_52.text(),self.lineEdit_56.text(),self.lineEdit_53.text(),self.lineEdit_62.text())
                    else:
                        self.doDeleteTheItem(
                            self.lineEdit_55.text() + ".0" + self.lineEdit_51.text() + "." + self.lineEdit_54.text(),self.lineEdit_52.text(),self.lineEdit_56.text(),self.lineEdit_53.text(),self.lineEdit_62.text())
                else:
                    if len(self.lineEdit_54.text()) == 1:
                        self.doDeleteTheItem(
                            self.lineEdit_55.text() + "." + self.lineEdit_51.text() + ".0" + self.lineEdit_54.text(),self.lineEdit_52.text(),self.lineEdit_56.text(),self.lineEdit_53.text(),self.lineEdit_62.text())
                    else:
                        self.doDeleteTheItem(
                            self.lineEdit_55.text() + "." + self.lineEdit_51.text() + "." + self.lineEdit_54.text(),self.lineEdit_52.text(),self.lineEdit_56.text(),self.lineEdit_53.text(),self.lineEdit_62.text())
    
        def doDeleteTheItem(self,dt,amofmny,notes,type,crtmn):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from eandi where dt=\"{}\" and amofmny={} and notes=\"{}\" and type=\"{}\" and crtmn={};".format(dt,float(amofmny),notes,type,float(crtmn)))
            result = csr.fetchall()
            if result:
                csr.execute("delete from eandi where dt=\"{}\" and amofmny={} and notes=\"{}\" and type=\"{}\" and crtmn={};".format(dt,float(amofmny),notes,type,float(crtmn)))
                self.msbox("删除成功","成功删除该项数据!")
            else:
                self.msbox("删除错误","不存在该项数据!")
            db.commit()
            self.closedb(db, csr)
    
        def insertItem(self, date, mny, note, type):
            db, csr = self.cnctdb()
            csr.execute("use mnyman;")
            try:
                csr.execute("select crtmn from eandi;")
                eandis = csr.fetchall()
                crtmny = float(eandis[len(eandis) - 1][0])
                crtmny = crtmny + mny
                csr.execute(
                    "insert into eandi values (\"{}\",{},\"{}\",\"{}\",{});".format(date, mny, note, type, crtmny))
                self.msbox("插入成功", "您已成功插入该项!")
            except pymysql.err.DataError:
                self.msbox("插入错误", "金额太大,超出规定范围!金额数据整数部分不得大于7位数!")
            # self.writeToElog(
            #     "insert into eandi values (\"{}\",{},\"{}\",\"{}\",{});".format(date, mny, note, type, crtmny))
            db.commit()
            self.closedb(csr, db)
    
        def deletedayItems(self):
            if self.lineEdit_20.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_20.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            elif int(self.lineEdit_19.text()) < 1 or int(self.lineEdit_19.text()) > 12:
                self.msbox("插入错误", "月份必须为1~12!")
            elif int(self.lineEdit_21.text()) < 1 or int(self.lineEdit_21.text()) > 31:
                self.msbox("插入错误", "日期必须为1~31!")
            else:
                if len(self.lineEdit_19.text()) == 1:
                    if len(self.lineEdit_21.text()) == 1:
                        self.deleteItems(
                            self.lineEdit_20.text() + ".0" + self.lineEdit_19.text() + ".0" + self.lineEdit_21.text())
                    else:
                        self.deleteItems(
                            self.lineEdit_20.text() + ".0" + self.lineEdit_19.text() + "." + self.lineEdit_21.text())
                else:
                    if len(self.lineEdit_21.text()) == 1:
                        self.deleteItems(
                            self.lineEdit_20.text() + "." + self.lineEdit_19.text() + ".0" + self.lineEdit_21.text())
                    else:
                        self.deleteItems(
                            self.lineEdit_20.text() + "." + self.lineEdit_19.text() + "." + self.lineEdit_21.text())
    
        def deleteItems(self, dt):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from eandi where dt=\"{}\";".format(dt))
            result = csr.fetchall()
            if result:
                csr.execute("delete from eandi where dt=\"{}\";".format(dt))
                self.msbox("删除成功", "成功删除该天所有数据项!")
            else:
                self.msbox("删除错误","不存在该天的数据!")
            db.commit()
            self.closedb(db, csr)
    
        def showdetails(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from eandi;")
            details = csr.fetchall()
            self.setTable(self.tableWidget_2, details)
    
        def insertDay(self):
            if self.lineEdit_8.text() == "" or self.lineEdit_9.text() == "" or self.lineEdit_10.text() == "":
                self.msbox("日期错误", "日期不能为空!")
            else:
                if len(self.lineEdit_9.text()) == 1:
                    if len(self.lineEdit_10.text()) == 1:
                        dt = self.lineEdit_8.text() + ".0" + self.lineEdit_9.text() + ".0" + self.lineEdit_10.text()
                    else:
                        dt = self.lineEdit_8.text() + ".0" + self.lineEdit_9.text() + "." + self.lineEdit_10.text()
                else:
                    if len(self.lineEdit_7.text()) == 1:
                        dt = self.lineEdit_8.text() + "." + self.lineEdit_9.text() + ".0" + self.lineEdit_10.text()
                    else:
                        dt = self.lineEdit_8.text() + "." + self.lineEdit_9.text() + "." + self.lineEdit_10.text()
                db, csr = self.cnctdb()
                csr.execute("use mnyman")
                try:
                    csr.execute("select * from eandi where dt=\"{}\"".format(dt))
                    details = csr.fetchall()
                    # print(details)
                    day = []
                    day.append(dt)
                    expenditure = 0
                    eptdetails = ""
                    income = 0
                    icmdetails = ""
                    for j in details:
                        if float(j[1]) < 0:
                            expenditure += float(j[1])
                            eptdetails += str(j[1]) + "元"
                            eptdetails += j[2] + ";" + "\n"
                        else:
                            income += float(j[1])
                            icmdetails += str(j[1]) + "元"
                            icmdetails += j[2] + ";" + "\n"
                    day.append(expenditure)
                    # print(eptdetails)
                    eptdetails = eptdetails[0:len(eptdetails) - 1]
                    icmdetails = icmdetails[0:len(icmdetails) - 1]
                    day.append(eptdetails)
                    day.append(income)
                    day.append((icmdetails))
                    # print(day)
                    csr.execute(
                        "insert into days values (\"{}\",{},\"{}\",{},\"{}\")".format(day[0], day[1], day[2], day[3],
                                                                                      day[4]))
                    db.commit()
                    self.msbox("插入成功", "成功插入该天!")
                except pymysql.err.IntegrityError:
                    self.msbox("插入错误","已经存在该天!")
                self.closedb(csr, db)
    
        def showdays(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from days;")
            days = csr.fetchall()
            if days:
                self.setTable(self.tableWidget_3, days)
            else:
                self.setTable(self.tableWidget_3, [])
                self.msbox("查询为空", "没有查询到任何一天的账单!")
            self.closedb(csr, db)
    
        def showThedays(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            if self.lineEdit_14.text() == "":
                self.msbox("查询错误", "年份不能为空!")
            elif len(self.lineEdit_14.text()) < 4:
                self.msbox("查询错误", "年份必须的位数必须大于等于4!")
            else:
                csr.execute("select * from days;")
                details = csr.fetchall()
                sortedDetails = []
                for i in details:
                    if i[0].startswith(self.lineEdit_14.text()):
                        sortedDetails.append(i)
                if sortedDetails:
                    self.setTable(self.tableWidget_9, sortedDetails)
                else:
                    self.setTable(self.tableWidget_9, sortedDetails)
                    self.msbox("查询为空", "该年份没有账单!")
                self.closedb(csr, db)
    
        def deleteTheDay(self):
            if self.lineEdit_49.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_49.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            elif int(self.lineEdit_47.text()) < 1 or int(self.lineEdit_47.text()) > 12:
                self.msbox("插入错误", "月份必须为1~12!")
            elif int(self.lineEdit_48.text()) < 1 or int(self.lineEdit_48.text()) > 31:
                self.msbox("插入错误", "日期必须为1~31!")
            else:
                if len(self.lineEdit_47.text()) == 1:
                    if len(self.lineEdit_48.text()) == 1:
                        self.doDeleteTheDay(
                            self.lineEdit_49.text() + ".0" + self.lineEdit_47.text() + ".0" + self.lineEdit_48.text())
                    else:
                        self.doDeleteTheDay(
                            self.lineEdit_49.text() + ".0" + self.lineEdit_47.text() + "." + self.lineEdit_48.text())
                else:
                    if len(self.lineEdit_48.text()) == 1:
                        self.doDeleteTheDay(
                            self.lineEdit_49.text() + "." + self.lineEdit_47.text() + ".0" + self.lineEdit_48.text())
                    else:
                        self.doDeleteTheDay(
                            self.lineEdit_49.text() + "." + self.lineEdit_47.text() + "." + self.lineEdit_48.text())
    
        def doDeleteTheDay(self, dt):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from days where dt=\"{}\";".format(dt))
            result = csr.fetchall()
            if result:
                csr.execute("delete from days where dt=\"{}\";".format(dt))
                self.msbox("删除成功","成功删除该天的数据!")
            else:
                self.msbox("删除错误","不存在该天的数据!")
            db.commit()
            self.closedb(db, csr)
    
        def searchTheType(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select dt,amofmny,notes,type from eandi where type=\"{}\"".format(self.lineEdit_17.text()))
            items = csr.fetchall()
            if items:
                self.setTable(self.tableWidget_5, items)
            else:
                self.msbox("查询错误", "没有查询到指定类型!")
            self.closedb(csr, db)
    
        def showdetailsofyear(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            if self.lineEdit_18.text() == "":
                self.msbox("查询错误", "年份不能为空!")
            elif len(self.lineEdit_18.text()) < 4:
                self.msbox("查询错误", "年份的位数必须大于等于4!")
            else:
                csr.execute("select * from eandi;")
                details = csr.fetchall()
                sortedDetails = []
                for i in details:
                    if i[0].startswith(self.lineEdit_18.text()):
                        sortedDetails.append(i)
                if sortedDetails:
                    self.setTable(self.tableWidget_8, sortedDetails)
                else:
                    self.setTable(self.tableWidget_8, sortedDetails)
                    self.msbox("查询为空", "该年份没有账单!")
                self.closedb(csr, db)
    
        def getDt(self, year, month):
            leapYear = (31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)
            notleapYear = (31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)
            if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
                return leapYear[month - 1]
            else:
                return notleapYear[month - 1]
    
        def cpte(self, date, a):
            result = date.split(".")
            days = self.getDt(int(result[0]), int(result[1]))
            li = []
            s = ""
            if result[1] == "12":
                if int(result[2]) + a > days:
                    for i in range(0, a):
                        if int(result[2]) + i > days:
                            s = str(int(result[0]) + 1) + "." + "1" + "." + str((int(result[2]) + i) % days)
                            li.append(s)
                        else:
                            s = result[0] + "." + result[1] + "." + str(int(result[2]) + i)
                            li.append(s)
                    return li
                else:
                    for i in range(0, a):
                        s = result[0] + "." + result[1] + "." + str(int(result[2]) + i)
                        li.append(s)
                    return li
            else:
                if int(result[2]) + a > days:
                    for i in range(0, a):
                        if int(result[2]) + i > days:
                            s = result[0] + "." + str(int(result[1]) + 1) + "." + str((int(result[2]) + i) % days)
                            li.append(s)
                        else:
                            s = result[0] + "." + result[1] + "." + str(int(result[2]) + i)
                            li.append(s)
                    return li
                else:
                    for i in range(0, a):
                        s = result[0] + "." + result[1] + "." + str(int(result[2]) + i)
                        li.append(s)
                    return li
    
        def getinfor(self, items):
            totalexpanditure = 0
            totalincome = 0
            eli = []
            ili = []
            for i in items:
                if i[0] > 0:
                    totalincome += i[0]
                    ili.append(i[1])
                else:
                    totalexpanditure += i[0]
                    eli.append(i[1])
            est = set(eli)
            eli = list(est)
            totaleli = []
            for i in range(0, len(eli)):
                totaleli.append(0)
            ist = set(ili)
            ili = list(ist)
            totalili = []
            for i in range(0, len(ili)):
                totalili.append(0)
            for i in items:
                ex = 0
                ix = 0
                for j in eli:
                    if j == i[1]:
                        totaleli[ex] += i[0]
                    ex += 1
                for j in ili:
                    if j == i[1]:
                        totalili[ix] += i[0]
                    ix += 1
            return totalexpanditure, totalincome, eli, totaleli, ili, totalili
    
        def getnewDays(self,eptdays):
            sptdays = eptdays.split('.')
            if len(sptdays[1]) == 1:
                if len(sptdays[2]) == 1:
                    dt1 = sptdays[0] + ".0" + sptdays[1] + ".0" + sptdays[2]
                else:
                    dt1 = sptdays[0] + ".0" + sptdays[1] + "." + sptdays[2]
            else:
                if len(sptdays[2]) == 1:
                    dt1 = sptdays[0] + "." + sptdays[1] + ".0" + sptdays[2]
                else:
                    dt1 = sptdays[0] + "." + sptdays[1] + "." + sptdays[2]
            return dt1
    
        def insertWeeks(self):
            if self.lineEdit_11.text() == "" or self.lineEdit_12.text() == "" or self.lineEdit_13.text() == "":
                self.msbox("日期错误", "日期不能为空!")
            else:
                try:
                    dtstart = self.lineEdit_12.text() + "." + self.lineEdit_11.text() + "." + self.lineEdit_13.text()
                    dys = self.cpte(dtstart, 7)
                    days = []
                    for i in dys:
                        days.append(self.getnewDays(i))
                    # print(days)
                    db, csr = self.cnctdb()
                    csr.execute("use mnyman")
                    csr.execute(
                        "select amofmny,type from eandi where dt=\"{}\" or dt=\"{}\" or dt=\"{}\" or dt=\"{}\" or dt=\"{}\" or dt=\"{}\" or dt=\"{}\";".format(
                            days[0], days[1], days[2], days[3], days[4], days[5], days[6]))
                    items = csr.fetchall()
                    # print(items)
                    totalexpanditure, totalincome, eli, totaleli, ili, totalili = self.getinfor(items)
                    dt = days[0] + "~" + days[6]
                    eeli = []
                    iili = []
                    for i in totaleli:
                        eeli.append(float(i))
                    for i in totalili:
                        iili.append(float(i))
                    csr.execute("insert into weeks values (\"{}\", {}, {}, \"{}\", \"{}\", \"{}\", \"{}\");".format(dt,
                                                                                                                    totalexpanditure,
                                                                                                                    totalincome,
                                                                                                                    eli,
                                                                                                                    eeli,
                                                                                                                    ili,
                                                                                                                    iili))
                    db.commit()
                    self.msbox("插入成功", "成功插入该周数据!")
                    self.closedb(csr, db)
                except pymysql.err.IntegrityError:
                    self.msbox("插入错误", "已经存在该周!")
    
        def showWeeks(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from weeks;")
            weeks = csr.fetchall()
            self.closedb(csr, db)
            # print(weeks)
            li = []
            pattern = re.compile("\'.*\'")
            ptn = re.compile("\d*\.\d*")
            for i in weeks:
                item = []
                item.append(i[0])
                item.append(i[1])
                item.append(round(i[1] / 7 * 100) / 100)
                item.append(i[2])
                item.append(round(i[2] / 7 * 100) / 100)
                s = """
    
                """
                s += i[3].replace(',', '\n')
                typelist = pattern.findall(s)
                typee = []
                for j in typelist:
                    typee.append(j.replace('\'', ''))
                # li.append(item)
                s = """
    
                """
                s += i[4].replace(',', '\n')
                elist = ptn.findall(s)
                expenditurelist = []
                for j in elist:
                    expenditurelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                s = """
    
                """
                s += i[5].replace(',', '\n')
                type = pattern.findall(s)
                typei = []
                for j in type:
                    typei.append(j.replace('\'', ''))
                s = """
    
                """
                s += i[6].replace(',', '\n')
                ty = ptn.findall(s)
                incomelist = []
                for j in ty:
                    incomelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                exproportion = ""
                inproportion = ""
                index = 0
                for j in typee:
                    exproportion += j + " 占比: "
                    a = str(-round(expenditurelist[index] / Decimal.from_float(float(i[1])) * 10000) / 100) + "%"
                    exproportion += a + '\n'
                    index += 1
                index = 0
                for j in typei:
                    inproportion += j + " 占比: "
                    a = str(round(incomelist[index] / Decimal.from_float(float(i[2])) * 10000) / 100) + "%"
                    inproportion += a + '\n'
                    index += 1
                exproportion = exproportion[0:len(exproportion) - 1]
                inproportion = inproportion[0:len(inproportion) - 1]
                item.append(exproportion)
                item.append(inproportion)
                li.append(item)
            self.setTable(self.tableWidget_4, li)
    
        def deleteWeek(self):
            if self.lineEdit_59.text() == "" or self.lineEdit_58.text() == "" or self.lineEdit_57.text() == "":
                self.msbox("日期错误", "日期不能为空!")
            else:
                dtstart = self.lineEdit_59.text() + "." + self.lineEdit_58.text() + "." + self.lineEdit_57.text()
                dys = self.cpte(dtstart, 7)
                dt = self.getnewDays(dys[0])+"~"+self.getnewDays(dys[6])
                db, csr = self.cnctdb()
                csr.execute("use mnyman")
                csr.execute("select * from weeks where wkinfo=\"{}\";".format(dt))
                result = csr.fetchall()
                if result:
                    csr.execute("delete from weeks where wkinfo=\"{}\";".format(dt))
                    self.msbox("删除成功","成功删除该周的数据!")
                else:
                    self.msbox("删除失败","不存在该周!")
                db.commit()
                self.closedb(db,csr)
    
        def insertMonth(self):
            if self.lineEdit_15.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_15.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            else:
                try:
                    db, csr = self.cnctdb()
                    csr.execute("use mnyman")
                    dt = self.lineEdit_15.text() + "." + self.comboBox_2.currentText() + ".1"
                    a = self.getDt(int(self.lineEdit_15.text()), int(self.comboBox_2.currentText()))
                    dys = self.cpte(dt, a)
                    days = []
                    for i in dys:
                        days.append(self.getnewDays(i))
                    li = []
                    items = []
                    for i in days:
                        csr.execute("select amofmny,type from eandi where dt=\"{}\"".format(i))
                        results = csr.fetchall()
                        li.append(results)
                    for i in li:
                        if i:
                            for j in i:
                                items.append(j)
                    # print(li)
                    # print(items)
                    totalexpanditure, totalincome, eli, totaleli, ili, totalili = self.getinfor(items)
                    eeli = []
                    iili = []
                    for i in totaleli:
                        eeli.append(float(i))
                    for i in totalili:
                        iili.append(float(i))
                    # print(type(totaleli[1]))
                    # print(type(totalili[1]))
                    if len(self.comboBox_2.currentText()) == 1:
                        csr.execute("insert into months values (\"{}\", {}, {}, \"{}\", \"{}\", \"{}\", \"{}\");".format(
                            self.lineEdit_15.text() + '.0' + self.comboBox_2.currentText(),
                            totalexpanditure,
                            totalincome,
                            eli,
                            eeli,
                            ili,
                            iili))
                    else:
                        csr.execute("insert into months values (\"{}\", {}, {}, \"{}\", \"{}\", \"{}\", \"{}\");".format(
                            self.lineEdit_15.text() + '.' + self.comboBox_2.currentText(),
                            totalexpanditure,
                            totalincome,
                            eli,
                            eeli,
                            ili,
                            iili))
                    db.commit()
                    self.msbox("插入成功", "成功插入该月数据!")
                    self.closedb(csr, db)
                except pymysql.err.IntegrityError:
                    self.msbox("插入错误", "已经存在该月!")
    
        def showMonths(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from months;")
            weeks = csr.fetchall()
            self.closedb(csr, db)
            # print(weeks)
            li = []
            pattern = re.compile("\'.*\'")
            ptn = re.compile("\d*\.\d*")
            for i in weeks:
                resu = i[0].split('.')
                day = self.getDt(int(resu[0]), int(resu[1]))
                item = []
                item.append(i[0])
                item.append(i[1])
                item.append(round(i[1] / day * 100) / 100)
                item.append(i[2])
                item.append(round(i[2] / day * 100) / 100)
                s = """
    
                        """
                s += i[3].replace(',', '\n')
                typelist = pattern.findall(s)
                typee = []
                for j in typelist:
                    typee.append(j.replace('\'', ''))
                # li.append(item)
                s = """
    
                        """
                s += i[4].replace(',', '\n')
                elist = ptn.findall(s)
                expenditurelist = []
                for j in elist:
                    expenditurelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                s = """
    
                        """
                s += i[5].replace(',', '\n')
                type = pattern.findall(s)
                typei = []
                for j in type:
                    typei.append(j.replace('\'', ''))
                s = """
    
                        """
                s += i[6].replace(',', '\n')
                ty = ptn.findall(s)
                incomelist = []
                for j in ty:
                    incomelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                exproportion = ""
                inproportion = ""
                index = 0
                for j in typee:
                    exproportion += j + " 占比: "
                    a = str(-round(expenditurelist[index] / Decimal.from_float(float(i[1])) * 10000) / 100) + "%"
                    exproportion += a + '\n'
                    index += 1
                index = 0
                for j in typei:
                    inproportion += j + " 占比: "
                    a = str(round(incomelist[index] / Decimal.from_float(float(i[2])) * 10000) / 100) + "%"
                    inproportion += a + '\n'
                    index += 1
                exproportion = exproportion[0:len(exproportion) - 1]
                inproportion = inproportion[0:len(inproportion) - 1]
                item.append(exproportion)
                item.append(inproportion)
                li.append(item)
            self.setTable(self.tableWidget_15, li)
    
        def deleteMonth(self):
            if self.lineEdit_60.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_60.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            else:
                db, csr = self.cnctdb()
                csr.execute("use mnyman")
                if len(self.comboBox_5.currentText()) == 1:
                    csr.execute("select * from months where mno=\"{}\";".format(self.lineEdit_60.text()+".0"+self.comboBox_5.currentText()))
                    result = csr.fetchall()
                    if result:
                        csr.execute("delete from months where mno=\"{}\";".format(self.lineEdit_60.text()+".0"+self.comboBox_5.currentText()))
                        self.msbox("删除成功","成功删除该月的数据!")
                    else:
                        self.msbox("删除错误","不存在该月的数据!")
                else:
                    csr.execute("select * from months where mno=\"{}\";".format(
                        self.lineEdit_60.text() + "." + self.comboBox_5.currentText()))
                    result = csr.fetchall()
                    if result:
                        csr.execute("delete from months where mno=\"{}\";".format(
                            self.lineEdit_60.text() + "." + self.comboBox_5.currentText()))
                        self.msbox("删除成功", "成功删除该月的数据!")
                    else:
                        self.msbox("删除错误", "不存在该月的数据!")
                db.commit()
                self.closedb(db,csr)
    
        def insertQuarter(self):
            if self.lineEdit_37.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_37.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            else:
                if self.comboBox.currentText() == "第一季度":
                    li = []
                    li.append(self.lineEdit_37.text() + "." + "01")
                    li.append(self.lineEdit_37.text() + "." + "02")
                    li.append(self.lineEdit_37.text() + "." + "03")
                    self.doinsertQuarter(li, self.lineEdit_37.text() + ".1季")
                elif self.comboBox.currentText() == "第二季度":
                    li = []
                    li.append(self.lineEdit_37.text() + "." + "04")
                    li.append(self.lineEdit_37.text() + "." + "05")
                    li.append(self.lineEdit_37.text() + "." + "06")
                    self.doinsertQuarter(li, self.lineEdit_37.text() + ".2季")
                elif self.comboBox.currentText() == "第三季度":
                    li = []
                    li.append(self.lineEdit_37.text() + "." + "07")
                    li.append(self.lineEdit_37.text() + "." + "08")
                    li.append(self.lineEdit_37.text() + "." + "09")
                    self.doinsertQuarter(li, self.lineEdit_37.text() + ".3季")
                else:
                    li = []
                    li.append(self.lineEdit_37.text() + "." + "10")
                    li.append(self.lineEdit_37.text() + "." + "11")
                    li.append(self.lineEdit_37.text() + "." + "12")
                    self.doinsertQuarter(li, self.lineEdit_37.text() + ".4季")
    
        def doinsertQuarter(self, li, qno):
            try:
                db, csr = self.cnctdb()
                csr.execute("use mnyman")
                ilist = []
                for i in li:
                    csr.execute("select mttle,mttli,eset,emset,iset,imset from months where mno=\"{}\";".format(i))
                    item = csr.fetchone()
                    ilist.append(item)
                totalexpanditure = 0
                totalincome = 0
                eli = []
                tmpeli = []
                totaleli = []
                tmptotaleli = []
                ili = []
                tmpili = []
                totalili = []
                tmptotalili = []
                pattern = re.compile("\'.*\'")
                ptn = re.compile("\d*\.\d*")
                for i in ilist:
                    if i:
                        totalexpanditure += i[0]
                        totalincome += i[1]
                        s = """
    
                        """
                        s += i[2].replace(',', '\n')
                        l = pattern.findall(s)
                        tmp = []
                        for j in l:
                            tmp.append(j.replace('\'', ''))
                            eli.append(j.replace('\'', ''))
                        tmpeli.append(tmp)
                        s = """
    
                        """
                        s += i[3].replace(',', '\n')
                        ll = ptn.findall(s)
                        tmp = []
                        for j in ll:
                            tmp.append(Decimal.from_float(float(j.replace('\'', ''))))
                        tmptotaleli.append(tmp)
                        s = """
    
                                            """
                        s += i[4].replace(',', '\n')
                        lll = pattern.findall(s)
                        tmp = []
                        for j in lll:
                            tmp.append(j.replace('\'', ''))
                            ili.append(j.replace('\'', ''))
                        tmpili.append(tmp)
                        s = """
    
                                            """
                        s += i[5].replace(',', '\n')
                        llll = ptn.findall(s)
                        tmp = []
                        for j in llll:
                            tmp.append(Decimal.from_float(float(j.replace('\'', ''))))
                        tmptotalili.append(tmp)
                est = set(eli)
                eli = list(est)
                # print(eli)
                ist = set(ili)
                ili = list(ist)
                # print(ili)
                # print(tmptotaleli)
                # print(tmptotalili)
                for i in eli:
                    # print(1)
                    totaleli.append(0)
                for i in ili:
                    # print(1)
                    totalili.append(0)
                ex = 0
                for i in eli:
                    tex = 0
                    for j in tmpeli:
                        temx = 0
                        for k in j:
                            if k == i:
                                totaleli[ex] += tmptotaleli[tex][temx]
                            temx += 1
                        tex += 1
                    ex += 1
                ix = 0
                for i in ili:
                    tix = 0
                    for j in tmpili:
                        timx = 0
                        for k in j:
                            if k == i:
                                totalili[ix] += tmptotalili[tix][timx]
                            timx += 1
                        tix += 1
                    ix += 1
                eeeli = []
                iiili = []
                for i in totaleli:
                    eeeli.append(round(i*100)/100)
                for i in totalili:
                    iiili.append(round(i*100)/100)
                # print(type(eeli[1]))
                # print(type(iili[1]))
                eeli = []
                iili = []
                for i in eeeli:
                    eeli.append(float(i))
                for i in iiili:
                    iili.append(float(i))
                csr.execute(
                    "insert into quarters values (\"{}\",{},{},\"{}\",\"{}\",\"{}\",\"{}\");".format(qno, totalexpanditure,
                                                                                                     totalincome, eli, eeli,
                                                                                                     ili, iili))
                db.commit()
                self.msbox("插入成功", "成功插入该季度数据!")
                self.closedb(csr, db)
            except pymysql.err.IntegrityError:
                self.msbox("插入错误", "已经存在该季度!")
    
        def showquarters(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from quarters;")
            quarters = csr.fetchall()
            self.closedb(csr, db)
            # print(quarters)
            li = []
            pattern = re.compile("\'.*\'")
            ptn = re.compile("\d*\.\d*")
            for i in quarters:
                # print(i)
                resu = i[0].split('.')
                day = 0
                if resu[1] == "1季":
                    day += self.getDt(int(resu[0]), 1)
                    day += self.getDt(int(resu[0]), 2)
                    day += self.getDt(int(resu[0]), 3)
                elif resu[1] == "2季":
                    day += self.getDt(int(resu[0]), 4)
                    day += self.getDt(int(resu[0]), 5)
                    day += self.getDt(int(resu[0]), 6)
                elif resu[1] == "3季":
                    day += self.getDt(int(resu[0]), 7)
                    day += self.getDt(int(resu[0]), 8)
                    day += self.getDt(int(resu[0]), 9)
                else:
                    day += self.getDt(int(resu[0]), 10)
                    day += self.getDt(int(resu[0]), 11)
                    day += self.getDt(int(resu[0]), 12)
                # print(day)
                item = []
                item.append(i[0])
                item.append(i[1])
                item.append(round(i[1] / day * 100) / 100)
                item.append(i[2])
                item.append(round(i[2] / day * 100) / 100)
                # print(item)
                s = """
    
                """
                s += i[3].replace(',', '\n')
                typelist = pattern.findall(s)
                typee = []
                for j in typelist:
                    typee.append(j.replace('\'', ''))
                # li.append(item)
                # print(typee)
                s = """
    
                """
                s += i[4].replace(',', '\n')
                elist = ptn.findall(s)
                expenditurelist = []
                # print(elist)
                for j in elist:
                    expenditurelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                s = """
    
                """
                s += i[5].replace(',', '\n')
                type = pattern.findall(s)
                typei = []
                for j in type:
                    typei.append(j.replace('\'', ''))
                s = """
    
                """
                s += i[6].replace(',', '\n')
                ty = ptn.findall(s)
                incomelist = []
                for j in ty:
                    incomelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                exproportion = ""
                inproportion = ""
                index = 0
                # print(expenditurelist)
                for j in typee:
                    exproportion += j + " 占比: "
                    a = str(-round(expenditurelist[index] / Decimal.from_float(float(i[1])) * 10000) / 100) + "%"
                    exproportion += a + '\n'
                    index += 1
                index = 0
                for j in typei:
                    inproportion += j + " 占比: "
                    a = str(round(incomelist[index] / Decimal.from_float(float(i[2])) * 10000) / 100) + "%"
                    inproportion += a + '\n'
                    index += 1
                exproportion = exproportion[0:len(exproportion) - 1]
                inproportion = inproportion[0:len(inproportion) - 1]
                item.append(exproportion)
                item.append(inproportion)
                li.append(item)
            self.setTable(self.tableWidget_16, li)
    
        def deleteQuarter(self):
            if self.lineEdit_61.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_61.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            else:
                if self.comboBox_6.currentText() == "第一季度":
                    self.doDeleteQuarter(self.lineEdit_61.text() + ".1季")
                elif self.comboBox_6.currentText() == "第二季度":
                    self.doDeleteQuarter(self.lineEdit_61.text() + ".2季")
                elif self.comboBox_6.currentText() == "第三季度":
                    self.doDeleteQuarter(self.lineEdit_61.text() + ".3季")
                else:
                    self.doDeleteQuarter(self.lineEdit_61.text() + ".4季")
    
        def doDeleteQuarter(self, quarter):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from quarters where qno=\"{}\";".format(quarter))
            result = csr.fetchall()
            if result:
                csr.execute("delete from quarters where qno=\"{}\";".format(quarter))
                self.msbox("删除成功","成功删除该季度的数据!")
            else:
                self.msbox("删除错误","不存在该季度的数据!")
            db.commit()
            self.closedb(db,csr)
    
        def insertYear(self):
            if self.lineEdit_38.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_38.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            else:
                try:
                    db, csr = self.cnctdb()
                    csr.execute("use mnyman")
                    li = [self.lineEdit_38.text()+".1季",self.lineEdit_38.text()+".2季",self.lineEdit_38.text()+".3季",self.lineEdit_38.text()+".4季"]
                    ilist = []
                    for i in li:
                        csr.execute("select qttle,qttli,eset,emset,iset,imset from quarters where qno=\"{}\";".format(i))
                        item = csr.fetchone()
                        ilist.append(item)
                    totalexpanditure = 0
                    totalincome = 0
                    eli = []
                    tmpeli = []
                    totaleli = []
                    tmptotaleli = []
                    ili = []
                    tmpili = []
                    totalili = []
                    tmptotalili = []
                    pattern = re.compile("\'.*\'")
                    ptn = re.compile("\d*\.\d*")
                    for i in ilist:
                        if i:
                            totalexpanditure += i[0]
                            totalincome += i[1]
                            s = """
    
                            """
                            s += i[2].replace(',', '\n')
                            l = pattern.findall(s)
                            tmp = []
                            for j in l:
                                tmp.append(j.replace('\'', ''))
                                eli.append(j.replace('\'', ''))
                            tmpeli.append(tmp)
                            s = """
    
                            """
                            s += i[3].replace(',', '\n')
                            ll = ptn.findall(s)
                            tmp = []
                            for j in ll:
                                tmp.append(Decimal.from_float(float(j.replace('\'', ''))))
                            tmptotaleli.append(tmp)
                            s = """
    
                                                """
                            s += i[4].replace(',', '\n')
                            lll = pattern.findall(s)
                            tmp = []
                            for j in lll:
                                tmp.append(j.replace('\'', ''))
                                ili.append(j.replace('\'', ''))
                            tmpili.append(tmp)
                            s = """
    
                                                """
                            s += i[5].replace(',', '\n')
                            llll = ptn.findall(s)
                            tmp = []
                            for j in llll:
                                tmp.append(Decimal.from_float(float(j.replace('\'', ''))))
                            tmptotalili.append(tmp)
                    est = set(eli)
                    eli = list(est)
                    # print(eli)
                    ist = set(ili)
                    ili = list(ist)
                    # print(ili)
                    # print(tmptotaleli)
                    # print(tmptotalili)
                    for i in eli:
                        # print(1)
                        totaleli.append(0)
                    for i in ili:
                        # print(1)
                        totalili.append(0)
                    ex = 0
                    for i in eli:
                        tex = 0
                        for j in tmpeli:
                            temx = 0
                            for k in j:
                                if k == i:
                                    totaleli[ex] += tmptotaleli[tex][temx]
                                temx += 1
                            tex += 1
                        ex += 1
                    ix = 0
                    for i in ili:
                        tix = 0
                        for j in tmpili:
                            timx = 0
                            for k in j:
                                if k == i:
                                    totalili[ix] += tmptotalili[tix][timx]
                                timx += 1
                            tix += 1
                        ix += 1
                    eeeli = []
                    iiili = []
                    for i in totaleli:
                        eeeli.append(round(i * 100) / 100)
                    for i in totalili:
                        iiili.append(round(i * 100) / 100)
                    # print(type(eeli[1]))
                    # print(type(iili[1]))
                    eeli = []
                    iili = []
                    for i in eeeli:
                        eeli.append(float(i))
                    for i in iiili:
                        iili.append(float(i))
                    csr.execute(
                        "insert into years values (\"{}\",{},{},\"{}\",\"{}\",\"{}\",\"{}\");".format(self.lineEdit_38.text(),
                                                                                                         totalexpanditure,
                                                                                                         totalincome, eli,
                                                                                                         eeli,
                                                                                                         ili, iili))
                    db.commit()
                    self.msbox("插入成功", "成功插入该年数据!")
                    self.closedb(csr, db)
                except pymysql.err.IntegrityError:
                    self.msbox("插入错误", "已经存在该年!")
    
        def showYears(self):
            db, csr = self.cnctdb()
            csr.execute("use mnyman")
            csr.execute("select * from years;")
            years = csr.fetchall()
            self.closedb(csr, db)
            li = []
            pattern = re.compile("\'.*\'")
            ptn = re.compile("\d*\.\d*")
            for i in years:
                if (int(i[0]) % 4 == 0 and int(i[0]) % 100 != 0) or int(i[0]) % 400 == 0:
                    day = 366
                else:
                    day = 365
                # print(day)
                item = []
                item.append(i[0])
                item.append(i[1])
                item.append(round(i[1] / day * 100) / 100)
                item.append(i[2])
                item.append(round(i[2] / day * 100) / 100)
                # print(item)
                s = """
    
                        """
                s += i[3].replace(',', '\n')
                typelist = pattern.findall(s)
                typee = []
                for j in typelist:
                    typee.append(j.replace('\'', ''))
                # li.append(item)
                # print(typee)
                s = """
    
                        """
                s += i[4].replace(',', '\n')
                elist = ptn.findall(s)
                expenditurelist = []
                # print(elist)
                for j in elist:
                    expenditurelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                s = """
    
                        """
                s += i[5].replace(',', '\n')
                type = pattern.findall(s)
                typei = []
                for j in type:
                    typei.append(j.replace('\'', ''))
                s = """
    
                        """
                s += i[6].replace(',', '\n')
                ty = ptn.findall(s)
                incomelist = []
                for j in ty:
                    incomelist.append(Decimal.from_float(float(j.replace('\'', ''))))
                exproportion = ""
                inproportion = ""
                index = 0
                # print(expenditurelist)
                for j in typee:
                    exproportion += j + " 占比: "
                    a = str(-round(expenditurelist[index] / Decimal.from_float(float(i[1])) * 10000) / 100) + "%"
                    exproportion += a + '\n'
                    index += 1
                index = 0
                for j in typei:
                    inproportion += j + " 占比: "
                    a = str(round(incomelist[index] / Decimal.from_float(float(i[2])) * 10000) / 100) + "%"
                    inproportion += a + '\n'
                    index += 1
                exproportion = exproportion[0:len(exproportion) - 1]
                inproportion = inproportion[0:len(inproportion) - 1]
                item.append(exproportion)
                item.append(inproportion)
                li.append(item)
            self.setTable(self.tableWidget_17, li)
    
        def deleteYear(self):
            if self.lineEdit_50.text() == "":
                self.msbox("插入错误", "年份不能为空!")
            elif len(self.lineEdit_50.text()) < 4:
                self.msbox("插入错误", "年份的位数必须大于等于4!")
            else:
                db, csr = self.cnctdb()
                csr.execute("use mnyman")
                csr.execute("select * from years where yno=\"{}\";".format(self.lineEdit_50.text()))
                result = csr.fetchall()
                if result:
                    csr.execute("delete from years where yno=\"{}\";".format(self.lineEdit_50.text()))
                    self.msbox("删除成功","成功删除该年的数据!")
                else:
                    self.msbox("删除错误","不存在该年的数据!")
                db.commit()
                self.closedb(db, csr)
    
        def setupUi(self, Form):
            if not Form.objectName():
                Form.setObjectName(u"Form")
            Form.resize(1519, 799)
            icon = QIcon()
            icon.addFile(u"mn.png", QSize(), QIcon.Normal, QIcon.Off)
            Form.setWindowIcon(icon)
            Form.setStyleSheet(u"background-color: rgb(60, 63, 65);")
            self.tabWidget = QTabWidget(Form)
            self.tabWidget.setObjectName(u"tabWidget")
            self.tabWidget.setGeometry(QRect(0, 0, 1521, 801))
            self.tabWidget.setStyleSheet(u"border-color: rgb(60, 63, 65);\n"
    "background-color: rgb(60, 63, 65);\n"
    "color: rgb(175, 177, 179);")
            self.tabWidget.setTabBarAutoHide(False)
            self.tab = QWidget()
            self.tab.setObjectName(u"tab")
            self.tab.setStyleSheet(u"border-color: rgb(60, 63, 65);")
            self.line = QFrame(self.tab)
            self.line.setObjectName(u"line")
            self.line.setGeometry(QRect(530, 0, 20, 771))
            self.line.setFrameShape(QFrame.VLine)
            self.line.setFrameShadow(QFrame.Sunken)
            self.label = QLabel(self.tab)
            self.label.setObjectName(u"label")
            self.label.setGeometry(QRect(80, 100, 54, 16))
            self.lineEdit = QLineEdit(self.tab)
            self.lineEdit.setObjectName(u"lineEdit")
            self.lineEdit.setGeometry(QRect(160, 100, 241, 20))
            self.lineEdit.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.pushButton = QPushButton(self.tab)
            self.pushButton.setObjectName(u"pushButton")
            self.pushButton.setGeometry(QRect(210, 180, 75, 24))
            self.pushButton.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.line_2 = QFrame(self.tab)
            self.line_2.setObjectName(u"line_2")
            self.line_2.setGeometry(QRect(0, 270, 531, 16))
            self.line_2.setFrameShape(QFrame.HLine)
            self.line_2.setFrameShadow(QFrame.Sunken)
            self.pushButton_2 = QPushButton(self.tab)
            self.pushButton_2.setObjectName(u"pushButton_2")
            self.pushButton_2.setGeometry(QRect(210, 280, 75, 24))
            self.pushButton_2.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tableWidget = QTableWidget(self.tab)
            if (self.tableWidget.columnCount() < 1):
                self.tableWidget.setColumnCount(1)
            __qtablewidgetitem = QTableWidgetItem()
            self.tableWidget.setHorizontalHeaderItem(0, __qtablewidgetitem)
            self.tableWidget.setObjectName(u"tableWidget")
            self.tableWidget.setGeometry(QRect(10, 310, 521, 461))
            self.tableWidget.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_6 = QLabel(self.tab)
            self.label_6.setObjectName(u"label_6")
            self.label_6.setGeometry(QRect(890, 200, 21, 16))
            self.label_5 = QLabel(self.tab)
            self.label_5.setObjectName(u"label_5")
            self.label_5.setGeometry(QRect(650, 370, 54, 16))
            self.lineEdit_2 = QLineEdit(self.tab)
            self.lineEdit_2.setObjectName(u"lineEdit_2")
            self.lineEdit_2.setGeometry(QRect(780, 200, 101, 20))
            self.lineEdit_2.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_2.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_4 = QLabel(self.tab)
            self.label_4.setObjectName(u"label_4")
            self.label_4.setGeometry(QRect(650, 310, 54, 16))
            self.lineEdit_3 = QLineEdit(self.tab)
            self.lineEdit_3.setObjectName(u"lineEdit_3")
            self.lineEdit_3.setGeometry(QRect(730, 260, 661, 20))
            self.lineEdit_3.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_2 = QLabel(self.tab)
            self.label_2.setObjectName(u"label_2")
            self.label_2.setGeometry(QRect(650, 200, 54, 16))
            self.lineEdit_4 = QLineEdit(self.tab)
            self.lineEdit_4.setObjectName(u"lineEdit_4")
            self.lineEdit_4.setGeometry(QRect(730, 310, 661, 20))
            self.lineEdit_4.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_3 = QLabel(self.tab)
            self.label_3.setObjectName(u"label_3")
            self.label_3.setGeometry(QRect(650, 260, 54, 16))
            self.lineEdit_7 = QLineEdit(self.tab)
            self.lineEdit_7.setObjectName(u"lineEdit_7")
            self.lineEdit_7.setGeometry(QRect(1140, 200, 101, 20))
            self.lineEdit_7.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.lineEdit_7.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.pushButton_3 = QPushButton(self.tab)
            self.pushButton_3.setObjectName(u"pushButton_3")
            self.pushButton_3.setGeometry(QRect(990, 480, 75, 24))
            self.pushButton_3.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_6 = QLineEdit(self.tab)
            self.lineEdit_6.setObjectName(u"lineEdit_6")
            self.lineEdit_6.setGeometry(QRect(960, 200, 101, 20))
            self.lineEdit_6.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_6.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_7 = QLabel(self.tab)
            self.label_7.setObjectName(u"label_7")
            self.label_7.setGeometry(QRect(1070, 200, 21, 16))
            self.label_8 = QLabel(self.tab)
            self.label_8.setObjectName(u"label_8")
            self.label_8.setGeometry(QRect(1250, 200, 21, 16))
            self.lineEdit_5 = QLineEdit(self.tab)
            self.lineEdit_5.setObjectName(u"lineEdit_5")
            self.lineEdit_5.setGeometry(QRect(730, 370, 661, 20))
            self.lineEdit_5.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.tabWidget.addTab(self.tab, "")
            self.tab_2 = QWidget()
            self.tab_2.setObjectName(u"tab_2")
            self.pushButton_4 = QPushButton(self.tab_2)
            self.pushButton_4.setObjectName(u"pushButton_4")
            self.pushButton_4.setGeometry(QRect(520, 10, 75, 24))
            self.pushButton_4.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tableWidget_2 = QTableWidget(self.tab_2)
            if (self.tableWidget_2.columnCount() < 5):
                self.tableWidget_2.setColumnCount(5)
            __qtablewidgetitem1 = QTableWidgetItem()
            self.tableWidget_2.setHorizontalHeaderItem(0, __qtablewidgetitem1)
            __qtablewidgetitem2 = QTableWidgetItem()
            self.tableWidget_2.setHorizontalHeaderItem(1, __qtablewidgetitem2)
            __qtablewidgetitem3 = QTableWidgetItem()
            self.tableWidget_2.setHorizontalHeaderItem(2, __qtablewidgetitem3)
            __qtablewidgetitem4 = QTableWidgetItem()
            self.tableWidget_2.setHorizontalHeaderItem(3, __qtablewidgetitem4)
            __qtablewidgetitem5 = QTableWidgetItem()
            self.tableWidget_2.setHorizontalHeaderItem(4, __qtablewidgetitem5)
            self.tableWidget_2.setObjectName(u"tableWidget_2")
            self.tableWidget_2.setGeometry(QRect(10, 40, 921, 451))
            self.tableWidget_2.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_22 = QLabel(self.tab_2)
            self.label_22.setObjectName(u"label_22")
            self.label_22.setGeometry(QRect(190, 10, 121, 16))
            self.line_7 = QFrame(self.tab_2)
            self.line_7.setObjectName(u"line_7")
            self.line_7.setGeometry(QRect(930, -10, 20, 791))
            self.line_7.setFrameShape(QFrame.VLine)
            self.line_7.setFrameShadow(QFrame.Sunken)
            self.label_23 = QLabel(self.tab_2)
            self.label_23.setObjectName(u"label_23")
            self.label_23.setGeometry(QRect(1000, 10, 121, 16))
            self.pushButton_9 = QPushButton(self.tab_2)
            self.pushButton_9.setObjectName(u"pushButton_9")
            self.pushButton_9.setGeometry(QRect(1430, 10, 75, 24))
            self.pushButton_9.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tableWidget_5 = QTableWidget(self.tab_2)
            if (self.tableWidget_5.columnCount() < 4):
                self.tableWidget_5.setColumnCount(4)
            __qtablewidgetitem6 = QTableWidgetItem()
            self.tableWidget_5.setHorizontalHeaderItem(0, __qtablewidgetitem6)
            __qtablewidgetitem7 = QTableWidgetItem()
            self.tableWidget_5.setHorizontalHeaderItem(1, __qtablewidgetitem7)
            __qtablewidgetitem8 = QTableWidgetItem()
            self.tableWidget_5.setHorizontalHeaderItem(2, __qtablewidgetitem8)
            __qtablewidgetitem9 = QTableWidgetItem()
            self.tableWidget_5.setHorizontalHeaderItem(3, __qtablewidgetitem9)
            self.tableWidget_5.setObjectName(u"tableWidget_5")
            self.tableWidget_5.setGeometry(QRect(950, 40, 561, 731))
            self.tableWidget_5.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_17 = QLineEdit(self.tab_2)
            self.lineEdit_17.setObjectName(u"lineEdit_17")
            self.lineEdit_17.setGeometry(QRect(1180, 10, 241, 20))
            self.lineEdit_17.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_25 = QLabel(self.tab_2)
            self.label_25.setObjectName(u"label_25")
            self.label_25.setGeometry(QRect(170, 520, 121, 16))
            self.line_5 = QFrame(self.tab_2)
            self.line_5.setObjectName(u"line_5")
            self.line_5.setGeometry(QRect(10, 500, 921, 21))
            self.line_5.setFrameShape(QFrame.HLine)
            self.line_5.setFrameShadow(QFrame.Sunken)
            self.pushButton_11 = QPushButton(self.tab_2)
            self.pushButton_11.setObjectName(u"pushButton_11")
            self.pushButton_11.setGeometry(QRect(700, 520, 75, 24))
            self.pushButton_11.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tableWidget_8 = QTableWidget(self.tab_2)
            if (self.tableWidget_8.columnCount() < 5):
                self.tableWidget_8.setColumnCount(5)
            __qtablewidgetitem10 = QTableWidgetItem()
            self.tableWidget_8.setHorizontalHeaderItem(0, __qtablewidgetitem10)
            __qtablewidgetitem11 = QTableWidgetItem()
            self.tableWidget_8.setHorizontalHeaderItem(1, __qtablewidgetitem11)
            __qtablewidgetitem12 = QTableWidgetItem()
            self.tableWidget_8.setHorizontalHeaderItem(2, __qtablewidgetitem12)
            __qtablewidgetitem13 = QTableWidgetItem()
            self.tableWidget_8.setHorizontalHeaderItem(3, __qtablewidgetitem13)
            __qtablewidgetitem14 = QTableWidgetItem()
            self.tableWidget_8.setHorizontalHeaderItem(4, __qtablewidgetitem14)
            self.tableWidget_8.setObjectName(u"tableWidget_8")
            self.tableWidget_8.setGeometry(QRect(10, 550, 921, 221))
            self.tableWidget_8.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_18 = QLineEdit(self.tab_2)
            self.lineEdit_18.setObjectName(u"lineEdit_18")
            self.lineEdit_18.setGeometry(QRect(370, 520, 241, 20))
            self.lineEdit_18.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.tabWidget.addTab(self.tab_2, "")
            self.tab_3 = QWidget()
            self.tab_3.setObjectName(u"tab_3")
            self.pushButton_5 = QPushButton(self.tab_3)
            self.pushButton_5.setObjectName(u"pushButton_5")
            self.pushButton_5.setGeometry(QRect(1010, 20, 75, 24))
            self.pushButton_5.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_9 = QLineEdit(self.tab_3)
            self.lineEdit_9.setObjectName(u"lineEdit_9")
            self.lineEdit_9.setGeometry(QRect(670, 20, 101, 20))
            self.lineEdit_9.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_9.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_10 = QLabel(self.tab_3)
            self.label_10.setObjectName(u"label_10")
            self.label_10.setGeometry(QRect(600, 20, 21, 16))
            self.lineEdit_8 = QLineEdit(self.tab_3)
            self.lineEdit_8.setObjectName(u"lineEdit_8")
            self.lineEdit_8.setGeometry(QRect(490, 20, 101, 20))
            self.lineEdit_8.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_8.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_12 = QLabel(self.tab_3)
            self.label_12.setObjectName(u"label_12")
            self.label_12.setGeometry(QRect(780, 20, 21, 16))
            self.label_9 = QLabel(self.tab_3)
            self.label_9.setObjectName(u"label_9")
            self.label_9.setGeometry(QRect(390, 20, 54, 16))
            self.lineEdit_10 = QLineEdit(self.tab_3)
            self.lineEdit_10.setObjectName(u"lineEdit_10")
            self.lineEdit_10.setGeometry(QRect(850, 20, 101, 20))
            self.lineEdit_10.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_10.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_11 = QLabel(self.tab_3)
            self.label_11.setObjectName(u"label_11")
            self.label_11.setGeometry(QRect(960, 20, 21, 16))
            self.line_3 = QFrame(self.tab_3)
            self.line_3.setObjectName(u"line_3")
            self.line_3.setGeometry(QRect(0, 50, 1521, 21))
            self.line_3.setFrameShape(QFrame.HLine)
            self.line_3.setFrameShadow(QFrame.Sunken)
            self.pushButton_6 = QPushButton(self.tab_3)
            self.pushButton_6.setObjectName(u"pushButton_6")
            self.pushButton_6.setGeometry(QRect(20, 70, 121, 24))
            self.pushButton_6.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tableWidget_3 = QTableWidget(self.tab_3)
            if (self.tableWidget_3.columnCount() < 5):
                self.tableWidget_3.setColumnCount(5)
            __qtablewidgetitem15 = QTableWidgetItem()
            self.tableWidget_3.setHorizontalHeaderItem(0, __qtablewidgetitem15)
            __qtablewidgetitem16 = QTableWidgetItem()
            self.tableWidget_3.setHorizontalHeaderItem(1, __qtablewidgetitem16)
            __qtablewidgetitem17 = QTableWidgetItem()
            self.tableWidget_3.setHorizontalHeaderItem(2, __qtablewidgetitem17)
            __qtablewidgetitem18 = QTableWidgetItem()
            self.tableWidget_3.setHorizontalHeaderItem(3, __qtablewidgetitem18)
            __qtablewidgetitem19 = QTableWidgetItem()
            self.tableWidget_3.setHorizontalHeaderItem(4, __qtablewidgetitem19)
            self.tableWidget_3.setObjectName(u"tableWidget_3")
            self.tableWidget_3.setGeometry(QRect(10, 100, 741, 671))
            self.tableWidget_3.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.line_8 = QFrame(self.tab_3)
            self.line_8.setObjectName(u"line_8")
            self.line_8.setGeometry(QRect(750, 70, 20, 701))
            self.line_8.setFrameShape(QFrame.VLine)
            self.line_8.setFrameShadow(QFrame.Sunken)
            self.tableWidget_9 = QTableWidget(self.tab_3)
            if (self.tableWidget_9.columnCount() < 5):
                self.tableWidget_9.setColumnCount(5)
            __qtablewidgetitem20 = QTableWidgetItem()
            self.tableWidget_9.setHorizontalHeaderItem(0, __qtablewidgetitem20)
            __qtablewidgetitem21 = QTableWidgetItem()
            self.tableWidget_9.setHorizontalHeaderItem(1, __qtablewidgetitem21)
            __qtablewidgetitem22 = QTableWidgetItem()
            self.tableWidget_9.setHorizontalHeaderItem(2, __qtablewidgetitem22)
            __qtablewidgetitem23 = QTableWidgetItem()
            self.tableWidget_9.setHorizontalHeaderItem(3, __qtablewidgetitem23)
            __qtablewidgetitem24 = QTableWidgetItem()
            self.tableWidget_9.setHorizontalHeaderItem(4, __qtablewidgetitem24)
            self.tableWidget_9.setObjectName(u"tableWidget_9")
            self.tableWidget_9.setGeometry(QRect(770, 100, 741, 671))
            self.tableWidget_9.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.pushButton_12 = QPushButton(self.tab_3)
            self.pushButton_12.setObjectName(u"pushButton_12")
            self.pushButton_12.setGeometry(QRect(1210, 70, 81, 24))
            self.pushButton_12.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_14 = QLineEdit(self.tab_3)
            self.lineEdit_14.setObjectName(u"lineEdit_14")
            self.lineEdit_14.setGeometry(QRect(1030, 70, 101, 20))
            self.lineEdit_14.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_18 = QLabel(self.tab_3)
            self.label_18.setObjectName(u"label_18")
            self.label_18.setGeometry(QRect(870, 70, 101, 16))
            self.tabWidget.addTab(self.tab_3, "")
            self.tab_4 = QWidget()
            self.tab_4.setObjectName(u"tab_4")
            self.tableWidget_4 = QTableWidget(self.tab_4)
            if (self.tableWidget_4.columnCount() < 7):
                self.tableWidget_4.setColumnCount(7)
            __qtablewidgetitem25 = QTableWidgetItem()
            self.tableWidget_4.setHorizontalHeaderItem(0, __qtablewidgetitem25)
            __qtablewidgetitem26 = QTableWidgetItem()
            self.tableWidget_4.setHorizontalHeaderItem(1, __qtablewidgetitem26)
            __qtablewidgetitem27 = QTableWidgetItem()
            self.tableWidget_4.setHorizontalHeaderItem(2, __qtablewidgetitem27)
            __qtablewidgetitem28 = QTableWidgetItem()
            self.tableWidget_4.setHorizontalHeaderItem(3, __qtablewidgetitem28)
            __qtablewidgetitem29 = QTableWidgetItem()
            self.tableWidget_4.setHorizontalHeaderItem(4, __qtablewidgetitem29)
            __qtablewidgetitem30 = QTableWidgetItem()
            self.tableWidget_4.setHorizontalHeaderItem(5, __qtablewidgetitem30)
            __qtablewidgetitem31 = QTableWidgetItem()
            self.tableWidget_4.setHorizontalHeaderItem(6, __qtablewidgetitem31)
            self.tableWidget_4.setObjectName(u"tableWidget_4")
            self.tableWidget_4.setGeometry(QRect(10, 90, 1501, 681))
            self.tableWidget_4.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.pushButton_7 = QPushButton(self.tab_4)
            self.pushButton_7.setObjectName(u"pushButton_7")
            self.pushButton_7.setGeometry(QRect(1050, 10, 75, 24))
            self.pushButton_7.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.label_13 = QLabel(self.tab_4)
            self.label_13.setObjectName(u"label_13")
            self.label_13.setGeometry(QRect(390, 10, 54, 16))
            self.label_14 = QLabel(self.tab_4)
            self.label_14.setObjectName(u"label_14")
            self.label_14.setGeometry(QRect(810, 10, 21, 16))
            self.lineEdit_11 = QLineEdit(self.tab_4)
            self.lineEdit_11.setObjectName(u"lineEdit_11")
            self.lineEdit_11.setGeometry(QRect(700, 10, 101, 20))
            self.lineEdit_11.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_11.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_15 = QLabel(self.tab_4)
            self.label_15.setObjectName(u"label_15")
            self.label_15.setGeometry(QRect(990, 10, 21, 16))
            self.label_16 = QLabel(self.tab_4)
            self.label_16.setObjectName(u"label_16")
            self.label_16.setGeometry(QRect(630, 10, 21, 16))
            self.lineEdit_12 = QLineEdit(self.tab_4)
            self.lineEdit_12.setObjectName(u"lineEdit_12")
            self.lineEdit_12.setGeometry(QRect(520, 10, 101, 20))
            self.lineEdit_12.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_12.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.lineEdit_13 = QLineEdit(self.tab_4)
            self.lineEdit_13.setObjectName(u"lineEdit_13")
            self.lineEdit_13.setGeometry(QRect(880, 10, 101, 20))
            self.lineEdit_13.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_13.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_17 = QLabel(self.tab_4)
            self.label_17.setObjectName(u"label_17")
            self.label_17.setGeometry(QRect(460, 10, 54, 16))
            self.line_6 = QFrame(self.tab_4)
            self.line_6.setObjectName(u"line_6")
            self.line_6.setGeometry(QRect(0, 40, 1511, 20))
            self.line_6.setFrameShape(QFrame.HLine)
            self.line_6.setFrameShadow(QFrame.Sunken)
            self.pushButton_8 = QPushButton(self.tab_4)
            self.pushButton_8.setObjectName(u"pushButton_8")
            self.pushButton_8.setGeometry(QRect(730, 60, 75, 24))
            self.pushButton_8.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tabWidget.addTab(self.tab_4, "")
            self.tab_5 = QWidget()
            self.tab_5.setObjectName(u"tab_5")
            self.pushButton_10 = QPushButton(self.tab_5)
            self.pushButton_10.setObjectName(u"pushButton_10")
            self.pushButton_10.setGeometry(QRect(950, 10, 75, 24))
            self.pushButton_10.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_15 = QLineEdit(self.tab_5)
            self.lineEdit_15.setObjectName(u"lineEdit_15")
            self.lineEdit_15.setGeometry(QRect(580, 10, 101, 20))
            self.lineEdit_15.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_15.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_19 = QLabel(self.tab_5)
            self.label_19.setObjectName(u"label_19")
            self.label_19.setGeometry(QRect(480, 10, 54, 16))
            self.label_20 = QLabel(self.tab_5)
            self.label_20.setObjectName(u"label_20")
            self.label_20.setGeometry(QRect(690, 10, 21, 16))
            self.label_21 = QLabel(self.tab_5)
            self.label_21.setObjectName(u"label_21")
            self.label_21.setGeometry(QRect(870, 10, 21, 16))
            self.line_4 = QFrame(self.tab_5)
            self.line_4.setObjectName(u"line_4")
            self.line_4.setGeometry(QRect(10, 40, 1501, 20))
            self.line_4.setFrameShape(QFrame.HLine)
            self.line_4.setFrameShadow(QFrame.Sunken)
            self.pushButton_25 = QPushButton(self.tab_5)
            self.pushButton_25.setObjectName(u"pushButton_25")
            self.pushButton_25.setGeometry(QRect(730, 60, 75, 24))
            self.pushButton_25.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tableWidget_15 = QTableWidget(self.tab_5)
            if (self.tableWidget_15.columnCount() < 7):
                self.tableWidget_15.setColumnCount(7)
            __qtablewidgetitem32 = QTableWidgetItem()
            self.tableWidget_15.setHorizontalHeaderItem(0, __qtablewidgetitem32)
            __qtablewidgetitem33 = QTableWidgetItem()
            self.tableWidget_15.setHorizontalHeaderItem(1, __qtablewidgetitem33)
            __qtablewidgetitem34 = QTableWidgetItem()
            self.tableWidget_15.setHorizontalHeaderItem(2, __qtablewidgetitem34)
            __qtablewidgetitem35 = QTableWidgetItem()
            self.tableWidget_15.setHorizontalHeaderItem(3, __qtablewidgetitem35)
            __qtablewidgetitem36 = QTableWidgetItem()
            self.tableWidget_15.setHorizontalHeaderItem(4, __qtablewidgetitem36)
            __qtablewidgetitem37 = QTableWidgetItem()
            self.tableWidget_15.setHorizontalHeaderItem(5, __qtablewidgetitem37)
            __qtablewidgetitem38 = QTableWidgetItem()
            self.tableWidget_15.setHorizontalHeaderItem(6, __qtablewidgetitem38)
            self.tableWidget_15.setObjectName(u"tableWidget_15")
            self.tableWidget_15.setGeometry(QRect(10, 90, 1501, 681))
            self.tableWidget_15.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.comboBox_2 = QComboBox(self.tab_5)
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.addItem("")
            self.comboBox_2.setObjectName(u"comboBox_2")
            self.comboBox_2.setGeometry(QRect(760, 10, 101, 22))
            self.comboBox_2.setLayoutDirection(Qt.RightToLeft)
            self.comboBox_2.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.tabWidget.addTab(self.tab_5, "")
            self.tab_11 = QWidget()
            self.tab_11.setObjectName(u"tab_11")
            self.label_49 = QLabel(self.tab_11)
            self.label_49.setObjectName(u"label_49")
            self.label_49.setGeometry(QRect(470, 10, 54, 16))
            self.lineEdit_37 = QLineEdit(self.tab_11)
            self.lineEdit_37.setObjectName(u"lineEdit_37")
            self.lineEdit_37.setGeometry(QRect(580, 10, 101, 20))
            self.lineEdit_37.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_37.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_50 = QLabel(self.tab_11)
            self.label_50.setObjectName(u"label_50")
            self.label_50.setGeometry(QRect(690, 10, 21, 16))
            self.comboBox = QComboBox(self.tab_11)
            self.comboBox.addItem("")
            self.comboBox.addItem("")
            self.comboBox.addItem("")
            self.comboBox.addItem("")
            self.comboBox.setObjectName(u"comboBox")
            self.comboBox.setGeometry(QRect(760, 10, 101, 22))
            self.comboBox.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.pushButton_26 = QPushButton(self.tab_11)
            self.pushButton_26.setObjectName(u"pushButton_26")
            self.pushButton_26.setGeometry(QRect(950, 10, 75, 24))
            self.pushButton_26.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.line_17 = QFrame(self.tab_11)
            self.line_17.setObjectName(u"line_17")
            self.line_17.setGeometry(QRect(10, 40, 1501, 20))
            self.line_17.setFrameShape(QFrame.HLine)
            self.line_17.setFrameShadow(QFrame.Sunken)
            self.pushButton_27 = QPushButton(self.tab_11)
            self.pushButton_27.setObjectName(u"pushButton_27")
            self.pushButton_27.setGeometry(QRect(730, 60, 75, 24))
            self.pushButton_27.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tableWidget_16 = QTableWidget(self.tab_11)
            if (self.tableWidget_16.columnCount() < 7):
                self.tableWidget_16.setColumnCount(7)
            __qtablewidgetitem39 = QTableWidgetItem()
            self.tableWidget_16.setHorizontalHeaderItem(0, __qtablewidgetitem39)
            __qtablewidgetitem40 = QTableWidgetItem()
            self.tableWidget_16.setHorizontalHeaderItem(1, __qtablewidgetitem40)
            __qtablewidgetitem41 = QTableWidgetItem()
            self.tableWidget_16.setHorizontalHeaderItem(2, __qtablewidgetitem41)
            __qtablewidgetitem42 = QTableWidgetItem()
            self.tableWidget_16.setHorizontalHeaderItem(3, __qtablewidgetitem42)
            __qtablewidgetitem43 = QTableWidgetItem()
            self.tableWidget_16.setHorizontalHeaderItem(4, __qtablewidgetitem43)
            __qtablewidgetitem44 = QTableWidgetItem()
            self.tableWidget_16.setHorizontalHeaderItem(5, __qtablewidgetitem44)
            __qtablewidgetitem45 = QTableWidgetItem()
            self.tableWidget_16.setHorizontalHeaderItem(6, __qtablewidgetitem45)
            self.tableWidget_16.setObjectName(u"tableWidget_16")
            self.tableWidget_16.setGeometry(QRect(10, 90, 1501, 681))
            self.tableWidget_16.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.tabWidget.addTab(self.tab_11, "")
            self.tab_12 = QWidget()
            self.tab_12.setObjectName(u"tab_12")
            self.lineEdit_38 = QLineEdit(self.tab_12)
            self.lineEdit_38.setObjectName(u"lineEdit_38")
            self.lineEdit_38.setGeometry(QRect(670, 10, 101, 20))
            self.lineEdit_38.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_38.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_51 = QLabel(self.tab_12)
            self.label_51.setObjectName(u"label_51")
            self.label_51.setGeometry(QRect(580, 10, 54, 16))
            self.pushButton_28 = QPushButton(self.tab_12)
            self.pushButton_28.setObjectName(u"pushButton_28")
            self.pushButton_28.setGeometry(QRect(730, 60, 75, 24))
            self.pushButton_28.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.label_52 = QLabel(self.tab_12)
            self.label_52.setObjectName(u"label_52")
            self.label_52.setGeometry(QRect(790, 10, 21, 16))
            self.line_18 = QFrame(self.tab_12)
            self.line_18.setObjectName(u"line_18")
            self.line_18.setGeometry(QRect(10, 40, 1501, 20))
            self.line_18.setFrameShape(QFrame.HLine)
            self.line_18.setFrameShadow(QFrame.Sunken)
            self.tableWidget_17 = QTableWidget(self.tab_12)
            if (self.tableWidget_17.columnCount() < 7):
                self.tableWidget_17.setColumnCount(7)
            __qtablewidgetitem46 = QTableWidgetItem()
            self.tableWidget_17.setHorizontalHeaderItem(0, __qtablewidgetitem46)
            __qtablewidgetitem47 = QTableWidgetItem()
            self.tableWidget_17.setHorizontalHeaderItem(1, __qtablewidgetitem47)
            __qtablewidgetitem48 = QTableWidgetItem()
            self.tableWidget_17.setHorizontalHeaderItem(2, __qtablewidgetitem48)
            __qtablewidgetitem49 = QTableWidgetItem()
            self.tableWidget_17.setHorizontalHeaderItem(3, __qtablewidgetitem49)
            __qtablewidgetitem50 = QTableWidgetItem()
            self.tableWidget_17.setHorizontalHeaderItem(4, __qtablewidgetitem50)
            __qtablewidgetitem51 = QTableWidgetItem()
            self.tableWidget_17.setHorizontalHeaderItem(5, __qtablewidgetitem51)
            __qtablewidgetitem52 = QTableWidgetItem()
            self.tableWidget_17.setHorizontalHeaderItem(6, __qtablewidgetitem52)
            self.tableWidget_17.setObjectName(u"tableWidget_17")
            self.tableWidget_17.setGeometry(QRect(10, 90, 1501, 681))
            self.tableWidget_17.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.pushButton_29 = QPushButton(self.tab_12)
            self.pushButton_29.setObjectName(u"pushButton_29")
            self.pushButton_29.setGeometry(QRect(850, 10, 75, 24))
            self.pushButton_29.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.tabWidget.addTab(self.tab_12, "")
            self.tab_6 = QWidget()
            self.tab_6.setObjectName(u"tab_6")
            self.label_24 = QLabel(self.tab_6)
            self.label_24.setObjectName(u"label_24")
            self.label_24.setGeometry(QRect(130, 100, 91, 16))
            self.lineEdit_16 = QLineEdit(self.tab_6)
            self.lineEdit_16.setObjectName(u"lineEdit_16")
            self.lineEdit_16.setGeometry(QRect(230, 100, 141, 20))
            self.lineEdit_16.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.pushButton_13 = QPushButton(self.tab_6)
            self.pushButton_13.setObjectName(u"pushButton_13")
            self.pushButton_13.setGeometry(QRect(400, 100, 75, 24))
            self.pushButton_13.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.line_9 = QFrame(self.tab_6)
            self.line_9.setObjectName(u"line_9")
            self.line_9.setGeometry(QRect(10, 140, 1501, 21))
            self.line_9.setFrameShape(QFrame.HLine)
            self.line_9.setFrameShadow(QFrame.Sunken)
            self.line_10 = QFrame(self.tab_6)
            self.line_10.setObjectName(u"line_10")
            self.line_10.setGeometry(QRect(570, 90, 31, 51))
            self.line_10.setFrameShape(QFrame.VLine)
            self.line_10.setFrameShadow(QFrame.Sunken)
            self.label_26 = QLabel(self.tab_6)
            self.label_26.setObjectName(u"label_26")
            self.label_26.setGeometry(QRect(690, 100, 151, 16))
            self.label_27 = QLabel(self.tab_6)
            self.label_27.setObjectName(u"label_27")
            self.label_27.setGeometry(QRect(1160, 100, 21, 16))
            self.lineEdit_19 = QLineEdit(self.tab_6)
            self.lineEdit_19.setObjectName(u"lineEdit_19")
            self.lineEdit_19.setGeometry(QRect(1050, 100, 101, 20))
            self.lineEdit_19.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_19.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.pushButton_14 = QPushButton(self.tab_6)
            self.pushButton_14.setObjectName(u"pushButton_14")
            self.pushButton_14.setGeometry(QRect(1390, 100, 75, 24))
            self.pushButton_14.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_20 = QLineEdit(self.tab_6)
            self.lineEdit_20.setObjectName(u"lineEdit_20")
            self.lineEdit_20.setGeometry(QRect(870, 100, 101, 20))
            self.lineEdit_20.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_20.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.lineEdit_21 = QLineEdit(self.tab_6)
            self.lineEdit_21.setObjectName(u"lineEdit_21")
            self.lineEdit_21.setGeometry(QRect(1230, 100, 101, 20))
            self.lineEdit_21.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_21.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_28 = QLabel(self.tab_6)
            self.label_28.setObjectName(u"label_28")
            self.label_28.setGeometry(QRect(980, 100, 21, 16))
            self.label_29 = QLabel(self.tab_6)
            self.label_29.setObjectName(u"label_29")
            self.label_29.setGeometry(QRect(1340, 100, 21, 16))
            self.label_30 = QLabel(self.tab_6)
            self.label_30.setObjectName(u"label_30")
            self.label_30.setGeometry(QRect(100, 170, 111, 16))
            self.label_69 = QLabel(self.tab_6)
            self.label_69.setObjectName(u"label_69")
            self.label_69.setGeometry(QRect(700, 170, 21, 16))
            self.lineEdit_47 = QLineEdit(self.tab_6)
            self.lineEdit_47.setObjectName(u"lineEdit_47")
            self.lineEdit_47.setGeometry(QRect(410, 170, 101, 20))
            self.lineEdit_47.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_47.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.lineEdit_48 = QLineEdit(self.tab_6)
            self.lineEdit_48.setObjectName(u"lineEdit_48")
            self.lineEdit_48.setGeometry(QRect(590, 170, 101, 20))
            self.lineEdit_48.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_48.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_70 = QLabel(self.tab_6)
            self.label_70.setObjectName(u"label_70")
            self.label_70.setGeometry(QRect(520, 170, 21, 16))
            self.pushButton_39 = QPushButton(self.tab_6)
            self.pushButton_39.setObjectName(u"pushButton_39")
            self.pushButton_39.setGeometry(QRect(750, 170, 75, 24))
            self.pushButton_39.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.label_71 = QLabel(self.tab_6)
            self.label_71.setObjectName(u"label_71")
            self.label_71.setGeometry(QRect(340, 170, 21, 16))
            self.lineEdit_49 = QLineEdit(self.tab_6)
            self.lineEdit_49.setObjectName(u"lineEdit_49")
            self.lineEdit_49.setGeometry(QRect(230, 170, 101, 20))
            self.lineEdit_49.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_49.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_72 = QLabel(self.tab_6)
            self.label_72.setObjectName(u"label_72")
            self.label_72.setGeometry(QRect(960, 170, 131, 16))
            self.label_73 = QLabel(self.tab_6)
            self.label_73.setObjectName(u"label_73")
            self.label_73.setGeometry(QRect(1230, 170, 21, 16))
            self.pushButton_40 = QPushButton(self.tab_6)
            self.pushButton_40.setObjectName(u"pushButton_40")
            self.pushButton_40.setGeometry(QRect(1290, 170, 75, 24))
            self.pushButton_40.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_50 = QLineEdit(self.tab_6)
            self.lineEdit_50.setObjectName(u"lineEdit_50")
            self.lineEdit_50.setGeometry(QRect(1110, 170, 101, 20))
            self.lineEdit_50.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_50.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.line_25 = QFrame(self.tab_6)
            self.line_25.setObjectName(u"line_25")
            self.line_25.setGeometry(QRect(10, 210, 1501, 16))
            self.line_25.setFrameShape(QFrame.HLine)
            self.line_25.setFrameShadow(QFrame.Sunken)
            self.line_26 = QFrame(self.tab_6)
            self.line_26.setObjectName(u"line_26")
            self.line_26.setGeometry(QRect(890, 160, 31, 51))
            self.line_26.setFrameShape(QFrame.VLine)
            self.line_26.setFrameShadow(QFrame.Sunken)
            self.label_74 = QLabel(self.tab_6)
            self.label_74.setObjectName(u"label_74")
            self.label_74.setGeometry(QRect(980, 260, 21, 16))
            self.label_75 = QLabel(self.tab_6)
            self.label_75.setObjectName(u"label_75")
            self.label_75.setGeometry(QRect(740, 300, 54, 16))
            self.label_76 = QLabel(self.tab_6)
            self.label_76.setObjectName(u"label_76")
            self.label_76.setGeometry(QRect(1340, 260, 21, 16))
            self.pushButton_41 = QPushButton(self.tab_6)
            self.pushButton_41.setObjectName(u"pushButton_41")
            self.pushButton_41.setGeometry(QRect(1080, 490, 75, 24))
            self.pushButton_41.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_51 = QLineEdit(self.tab_6)
            self.lineEdit_51.setObjectName(u"lineEdit_51")
            self.lineEdit_51.setGeometry(QRect(1050, 260, 101, 20))
            self.lineEdit_51.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_51.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.lineEdit_52 = QLineEdit(self.tab_6)
            self.lineEdit_52.setObjectName(u"lineEdit_52")
            self.lineEdit_52.setGeometry(QRect(820, 300, 661, 20))
            self.lineEdit_52.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_77 = QLabel(self.tab_6)
            self.label_77.setObjectName(u"label_77")
            self.label_77.setGeometry(QRect(740, 350, 54, 16))
            self.lineEdit_53 = QLineEdit(self.tab_6)
            self.lineEdit_53.setObjectName(u"lineEdit_53")
            self.lineEdit_53.setGeometry(QRect(820, 400, 661, 20))
            self.lineEdit_53.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.label_78 = QLabel(self.tab_6)
            self.label_78.setObjectName(u"label_78")
            self.label_78.setGeometry(QRect(1160, 260, 21, 16))
            self.lineEdit_54 = QLineEdit(self.tab_6)
            self.lineEdit_54.setObjectName(u"lineEdit_54")
            self.lineEdit_54.setGeometry(QRect(1230, 260, 101, 20))
            self.lineEdit_54.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.lineEdit_54.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_79 = QLabel(self.tab_6)
            self.label_79.setObjectName(u"label_79")
            self.label_79.setGeometry(QRect(740, 400, 54, 16))
            self.label_80 = QLabel(self.tab_6)
            self.label_80.setObjectName(u"label_80")
            self.label_80.setGeometry(QRect(740, 260, 54, 16))
            self.lineEdit_55 = QLineEdit(self.tab_6)
            self.lineEdit_55.setObjectName(u"lineEdit_55")
            self.lineEdit_55.setGeometry(QRect(870, 260, 101, 20))
            self.lineEdit_55.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_55.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.lineEdit_56 = QLineEdit(self.tab_6)
            self.lineEdit_56.setObjectName(u"lineEdit_56")
            self.lineEdit_56.setGeometry(QRect(820, 350, 661, 20))
            self.lineEdit_56.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.line_27 = QFrame(self.tab_6)
            self.line_27.setObjectName(u"line_27")
            self.line_27.setGeometry(QRect(690, 220, 31, 301))
            self.line_27.setFrameShape(QFrame.VLine)
            self.line_27.setFrameShadow(QFrame.Sunken)
            self.label_81 = QLabel(self.tab_6)
            self.label_81.setObjectName(u"label_81")
            self.label_81.setGeometry(QRect(1060, 230, 101, 16))
            self.line_28 = QFrame(self.tab_6)
            self.line_28.setObjectName(u"line_28")
            self.line_28.setGeometry(QRect(10, 520, 1501, 20))
            self.line_28.setFrameShape(QFrame.HLine)
            self.line_28.setFrameShadow(QFrame.Sunken)
            self.lineEdit_57 = QLineEdit(self.tab_6)
            self.lineEdit_57.setObjectName(u"lineEdit_57")
            self.lineEdit_57.setGeometry(QRect(490, 260, 101, 20))
            self.lineEdit_57.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_57.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.lineEdit_58 = QLineEdit(self.tab_6)
            self.lineEdit_58.setObjectName(u"lineEdit_58")
            self.lineEdit_58.setGeometry(QRect(310, 260, 101, 20))
            self.lineEdit_58.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_58.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_82 = QLabel(self.tab_6)
            self.label_82.setObjectName(u"label_82")
            self.label_82.setGeometry(QRect(70, 260, 54, 16))
            self.label_83 = QLabel(self.tab_6)
            self.label_83.setObjectName(u"label_83")
            self.label_83.setGeometry(QRect(600, 260, 21, 16))
            self.label_84 = QLabel(self.tab_6)
            self.label_84.setObjectName(u"label_84")
            self.label_84.setGeometry(QRect(420, 260, 21, 16))
            self.lineEdit_59 = QLineEdit(self.tab_6)
            self.lineEdit_59.setObjectName(u"lineEdit_59")
            self.lineEdit_59.setGeometry(QRect(130, 260, 101, 20))
            self.lineEdit_59.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_59.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_85 = QLabel(self.tab_6)
            self.label_85.setObjectName(u"label_85")
            self.label_85.setGeometry(QRect(280, 230, 111, 16))
            self.label_86 = QLabel(self.tab_6)
            self.label_86.setObjectName(u"label_86")
            self.label_86.setGeometry(QRect(240, 260, 21, 16))
            self.pushButton_42 = QPushButton(self.tab_6)
            self.pushButton_42.setObjectName(u"pushButton_42")
            self.pushButton_42.setGeometry(QRect(290, 300, 75, 24))
            self.pushButton_42.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.line_29 = QFrame(self.tab_6)
            self.line_29.setObjectName(u"line_29")
            self.line_29.setGeometry(QRect(10, 350, 681, 16))
            self.line_29.setFrameShape(QFrame.HLine)
            self.line_29.setFrameShadow(QFrame.Sunken)
            self.comboBox_5 = QComboBox(self.tab_6)
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.addItem("")
            self.comboBox_5.setObjectName(u"comboBox_5")
            self.comboBox_5.setGeometry(QRect(350, 430, 101, 22))
            self.comboBox_5.setLayoutDirection(Qt.RightToLeft)
            self.comboBox_5.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.pushButton_43 = QPushButton(self.tab_6)
            self.pushButton_43.setObjectName(u"pushButton_43")
            self.pushButton_43.setGeometry(QRect(280, 480, 75, 24))
            self.pushButton_43.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.lineEdit_60 = QLineEdit(self.tab_6)
            self.lineEdit_60.setObjectName(u"lineEdit_60")
            self.lineEdit_60.setGeometry(QRect(170, 430, 101, 20))
            self.lineEdit_60.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_60.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.label_87 = QLabel(self.tab_6)
            self.label_87.setObjectName(u"label_87")
            self.label_87.setGeometry(QRect(260, 380, 121, 16))
            self.label_88 = QLabel(self.tab_6)
            self.label_88.setObjectName(u"label_88")
            self.label_88.setGeometry(QRect(280, 430, 21, 16))
            self.label_89 = QLabel(self.tab_6)
            self.label_89.setObjectName(u"label_89")
            self.label_89.setGeometry(QRect(460, 430, 21, 16))
            self.label_90 = QLabel(self.tab_6)
            self.label_90.setObjectName(u"label_90")
            self.label_90.setGeometry(QRect(480, 630, 54, 16))
            self.lineEdit_61 = QLineEdit(self.tab_6)
            self.lineEdit_61.setObjectName(u"lineEdit_61")
            self.lineEdit_61.setGeometry(QRect(590, 630, 101, 20))
            self.lineEdit_61.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.lineEdit_61.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
            self.comboBox_6 = QComboBox(self.tab_6)
            self.comboBox_6.addItem("")
            self.comboBox_6.addItem("")
            self.comboBox_6.addItem("")
            self.comboBox_6.addItem("")
            self.comboBox_6.setObjectName(u"comboBox_6")
            self.comboBox_6.setGeometry(QRect(770, 630, 101, 22))
            self.comboBox_6.setStyleSheet(u"background-color: rgb(175, 177, 179);\n"
    "color: rgb(0, 0, 0);")
            self.label_91 = QLabel(self.tab_6)
            self.label_91.setObjectName(u"label_91")
            self.label_91.setGeometry(QRect(700, 630, 21, 16))
            self.pushButton_44 = QPushButton(self.tab_6)
            self.pushButton_44.setObjectName(u"pushButton_44")
            self.pushButton_44.setGeometry(QRect(960, 630, 75, 24))
            self.pushButton_44.setStyleSheet(u"background-color: rgb(43, 43, 43);")
            self.label_92 = QLabel(self.tab_6)
            self.label_92.setObjectName(u"label_92")
            self.label_92.setGeometry(QRect(740, 450, 61, 16))
            self.lineEdit_62 = QLineEdit(self.tab_6)
            self.lineEdit_62.setObjectName(u"lineEdit_62")
            self.lineEdit_62.setGeometry(QRect(820, 450, 661, 20))
            self.lineEdit_62.setStyleSheet(u"color: rgb(0, 0, 0);\n"
    "background-color: rgb(175, 177, 179);")
            self.tabWidget.addTab(self.tab_6, "")
    
            self.retranslateUi(Form)
    
            self.tabWidget.setCurrentIndex(0)
    
    
            QMetaObject.connectSlotsByName(Form)
        # setupUi
    
        def retranslateUi(self, Form):
            Form.setWindowTitle(QCoreApplication.translate("Form", u"\u8d44\u91d1\u7ba1\u7406\u7cfb\u7edf", None))
            self.label.setText(QCoreApplication.translate("Form", u"\u7c7b\u578b\u540d:", None))
            self.pushButton.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u63d2\u5165", None))
            self.pushButton_2.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2\u7c7b\u578b", None))
            ___qtablewidgetitem = self.tableWidget.horizontalHeaderItem(0)
            ___qtablewidgetitem.setText(QCoreApplication.translate("Form", u"\u7c7b\u578b", None));
            self.label_6.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.label_5.setText(QCoreApplication.translate("Form", u"\u7c7b\u578b:", None))
            self.label_4.setText(QCoreApplication.translate("Form", u"\u5907\u6ce8:", None))
            self.label_2.setText(QCoreApplication.translate("Form", u"\u65e5\u671f:", None))
            self.label_3.setText(QCoreApplication.translate("Form", u"\u91d1\u989d/\u5143:", None))
            self.pushButton_3.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u63d2\u5165", None))
            self.label_7.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.label_8.setText(QCoreApplication.translate("Form", u"\u65e5", None))
            self.lineEdit_5.setText("")
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), QCoreApplication.translate("Form", u"\u63d2\u5165\u9879", None))
            self.pushButton_4.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2", None))
            ___qtablewidgetitem1 = self.tableWidget_2.horizontalHeaderItem(0)
            ___qtablewidgetitem1.setText(QCoreApplication.translate("Form", u"\u65e5\u671f", None));
            ___qtablewidgetitem2 = self.tableWidget_2.horizontalHeaderItem(1)
            ___qtablewidgetitem2.setText(QCoreApplication.translate("Form", u"\u91d1\u989d/\u5143", None));
            ___qtablewidgetitem3 = self.tableWidget_2.horizontalHeaderItem(2)
            ___qtablewidgetitem3.setText(QCoreApplication.translate("Form", u"\u5907\u6ce8", None));
            ___qtablewidgetitem4 = self.tableWidget_2.horizontalHeaderItem(3)
            ___qtablewidgetitem4.setText(QCoreApplication.translate("Form", u"\u7c7b\u578b", None));
            ___qtablewidgetitem5 = self.tableWidget_2.horizontalHeaderItem(4)
            ___qtablewidgetitem5.setText(QCoreApplication.translate("Form", u"\u4f59\u989d/\u5143", None));
            self.label_22.setText(QCoreApplication.translate("Form", u"\u67e5\u770b\u6240\u6709\u8d26\u5355", None))
            self.label_23.setText(QCoreApplication.translate("Form", u"\u67e5\u770b\u6307\u5b9a\u7c7b\u578b\u7684\u8d26\u5355", None))
            self.pushButton_9.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2", None))
            ___qtablewidgetitem6 = self.tableWidget_5.horizontalHeaderItem(0)
            ___qtablewidgetitem6.setText(QCoreApplication.translate("Form", u"\u65e5\u671f", None));
            ___qtablewidgetitem7 = self.tableWidget_5.horizontalHeaderItem(1)
            ___qtablewidgetitem7.setText(QCoreApplication.translate("Form", u"\u91d1\u989d/\u5143", None));
            ___qtablewidgetitem8 = self.tableWidget_5.horizontalHeaderItem(2)
            ___qtablewidgetitem8.setText(QCoreApplication.translate("Form", u"\u5907\u6ce8", None));
            ___qtablewidgetitem9 = self.tableWidget_5.horizontalHeaderItem(3)
            ___qtablewidgetitem9.setText(QCoreApplication.translate("Form", u"\u7c7b\u578b", None));
            self.lineEdit_17.setPlaceholderText(QCoreApplication.translate("Form", u"\u8bf7\u8f93\u5165\u60f3\u8981\u67e5\u8be2\u7684\u7c7b\u578b", None))
            self.label_25.setText(QCoreApplication.translate("Form", u"\u67e5\u770b\u6307\u5b9a\u5e74\u4efd\u7684\u8d26\u5355", None))
            self.pushButton_11.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2", None))
            ___qtablewidgetitem10 = self.tableWidget_8.horizontalHeaderItem(0)
            ___qtablewidgetitem10.setText(QCoreApplication.translate("Form", u"\u65e5\u671f", None));
            ___qtablewidgetitem11 = self.tableWidget_8.horizontalHeaderItem(1)
            ___qtablewidgetitem11.setText(QCoreApplication.translate("Form", u"\u91d1\u989d/\u5143", None));
            ___qtablewidgetitem12 = self.tableWidget_8.horizontalHeaderItem(2)
            ___qtablewidgetitem12.setText(QCoreApplication.translate("Form", u"\u5907\u6ce8", None));
            ___qtablewidgetitem13 = self.tableWidget_8.horizontalHeaderItem(3)
            ___qtablewidgetitem13.setText(QCoreApplication.translate("Form", u"\u7c7b\u578b", None));
            ___qtablewidgetitem14 = self.tableWidget_8.horizontalHeaderItem(4)
            ___qtablewidgetitem14.setText(QCoreApplication.translate("Form", u"\u4f59\u989d/\u5143", None));
            self.lineEdit_18.setPlaceholderText(QCoreApplication.translate("Form", u"\u8bf7\u8f93\u5165\u60f3\u8981\u67e5\u8be2\u7684\u5e74\u4efd", None))
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), QCoreApplication.translate("Form", u"\u67e5\u770b\u8d26\u5355\u8be6\u60c5", None))
            self.pushButton_5.setText(QCoreApplication.translate("Form", u"\u786e\u8ba4\u63d2\u5165", None))
            self.label_10.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.label_12.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.label_9.setText(QCoreApplication.translate("Form", u"\u63d2\u5165\u5929", None))
            self.label_11.setText(QCoreApplication.translate("Form", u"\u65e5", None))
            self.pushButton_6.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2\u6bcf\u5929\u8d26\u5355", None))
            ___qtablewidgetitem15 = self.tableWidget_3.horizontalHeaderItem(0)
            ___qtablewidgetitem15.setText(QCoreApplication.translate("Form", u"\u65e5\u671f", None));
            ___qtablewidgetitem16 = self.tableWidget_3.horizontalHeaderItem(1)
            ___qtablewidgetitem16.setText(QCoreApplication.translate("Form", u"\u65e5\u652f\u51fa\u603b\u989d/\u5143", None));
            ___qtablewidgetitem17 = self.tableWidget_3.horizontalHeaderItem(2)
            ___qtablewidgetitem17.setText(QCoreApplication.translate("Form", u"\u65e5\u652f\u51fa\u8be6\u60c5", None));
            ___qtablewidgetitem18 = self.tableWidget_3.horizontalHeaderItem(3)
            ___qtablewidgetitem18.setText(QCoreApplication.translate("Form", u"\u65e5\u6536\u5165\u603b\u989d/\u5143", None));
            ___qtablewidgetitem19 = self.tableWidget_3.horizontalHeaderItem(4)
            ___qtablewidgetitem19.setText(QCoreApplication.translate("Form", u"\u65e5\u6536\u5165\u8be6\u60c5", None));
            ___qtablewidgetitem20 = self.tableWidget_9.horizontalHeaderItem(0)
            ___qtablewidgetitem20.setText(QCoreApplication.translate("Form", u"\u65e5\u671f", None));
            ___qtablewidgetitem21 = self.tableWidget_9.horizontalHeaderItem(1)
            ___qtablewidgetitem21.setText(QCoreApplication.translate("Form", u"\u65e5\u652f\u51fa\u603b\u989d/\u5143", None));
            ___qtablewidgetitem22 = self.tableWidget_9.horizontalHeaderItem(2)
            ___qtablewidgetitem22.setText(QCoreApplication.translate("Form", u"\u65e5\u652f\u51fa\u8be6\u60c5", None));
            ___qtablewidgetitem23 = self.tableWidget_9.horizontalHeaderItem(3)
            ___qtablewidgetitem23.setText(QCoreApplication.translate("Form", u"\u65e5\u6536\u5165\u603b\u989d/\u5143", None));
            ___qtablewidgetitem24 = self.tableWidget_9.horizontalHeaderItem(4)
            ___qtablewidgetitem24.setText(QCoreApplication.translate("Form", u"\u65e5\u6536\u5165\u8be6\u60c5", None));
            self.pushButton_12.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2", None))
            self.lineEdit_14.setPlaceholderText(QCoreApplication.translate("Form", u"\u8bf7\u8f93\u5165\u5e74\u4efd", None))
            self.label_18.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2\u6307\u5b9a\u5e74\u7684\u8d26\u5355", None))
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_3), QCoreApplication.translate("Form", u"\u4ee5\u201c\u5929\u201d\u4e3a\u5355\u4f4d", None))
            ___qtablewidgetitem25 = self.tableWidget_4.horizontalHeaderItem(0)
            ___qtablewidgetitem25.setText(QCoreApplication.translate("Form", u"\u65e5\u671f\u8303\u56f4", None));
            ___qtablewidgetitem26 = self.tableWidget_4.horizontalHeaderItem(1)
            ___qtablewidgetitem26.setText(QCoreApplication.translate("Form", u"\u5468\u652f\u51fa\u603b\u989d/\u5143", None));
            ___qtablewidgetitem27 = self.tableWidget_4.horizontalHeaderItem(2)
            ___qtablewidgetitem27.setText(QCoreApplication.translate("Form", u"\u5468\u6bcf\u5929\u5e73\u5747\u652f\u51fa/\u5143", None));
            ___qtablewidgetitem28 = self.tableWidget_4.horizontalHeaderItem(3)
            ___qtablewidgetitem28.setText(QCoreApplication.translate("Form", u"\u5468\u6536\u5165\u603b\u989d/\u5143", None));
            ___qtablewidgetitem29 = self.tableWidget_4.horizontalHeaderItem(4)
            ___qtablewidgetitem29.setText(QCoreApplication.translate("Form", u"\u5468\u6bcf\u5929\u5e73\u5747\u6536\u5165/\u5143", None));
            ___qtablewidgetitem30 = self.tableWidget_4.horizontalHeaderItem(5)
            ___qtablewidgetitem30.setText(QCoreApplication.translate("Form", u"\u5468\u652f\u51fa\u5360\u6bd4", None));
            ___qtablewidgetitem31 = self.tableWidget_4.horizontalHeaderItem(6)
            ___qtablewidgetitem31.setText(QCoreApplication.translate("Form", u"\u5468\u6536\u5165\u5360\u6bd4", None));
            self.pushButton_7.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u63d2\u5165", None))
            self.label_13.setText(QCoreApplication.translate("Form", u"\u63d2\u5165\u5468", None))
            self.label_14.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.label_15.setText(QCoreApplication.translate("Form", u"\u65e5", None))
            self.label_16.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.lineEdit_13.setPlaceholderText(QCoreApplication.translate("Form", u"\u8be5\u5929\u5fc5\u987b\u662f\u5468\u4e00", None))
            self.label_17.setText(QCoreApplication.translate("Form", u"\u8d77\u59cb\u65e5\u671f:", None))
            self.pushButton_8.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2\u8be6\u60c5", None))
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_4), QCoreApplication.translate("Form", u"\u4ee5\u201c\u5468\u201d\u4e3a\u5355\u4f4d", None))
            self.pushButton_10.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u63d2\u5165", None))
            self.label_19.setText(QCoreApplication.translate("Form", u"\u63d2\u5165\u6708", None))
            self.label_20.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.label_21.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.pushButton_25.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2\u8be6\u60c5", None))
            ___qtablewidgetitem32 = self.tableWidget_15.horizontalHeaderItem(0)
            ___qtablewidgetitem32.setText(QCoreApplication.translate("Form", u"\u6708\u4efd", None));
            ___qtablewidgetitem33 = self.tableWidget_15.horizontalHeaderItem(1)
            ___qtablewidgetitem33.setText(QCoreApplication.translate("Form", u"\u6708\u652f\u51fa\u603b\u989d/\u5143", None));
            ___qtablewidgetitem34 = self.tableWidget_15.horizontalHeaderItem(2)
            ___qtablewidgetitem34.setText(QCoreApplication.translate("Form", u"\u6708\u6bcf\u5929\u5e73\u5747\u652f\u51fa/\u5143", None));
            ___qtablewidgetitem35 = self.tableWidget_15.horizontalHeaderItem(3)
            ___qtablewidgetitem35.setText(QCoreApplication.translate("Form", u"\u6708\u6536\u5165\u603b\u989d/\u5143", None));
            ___qtablewidgetitem36 = self.tableWidget_15.horizontalHeaderItem(4)
            ___qtablewidgetitem36.setText(QCoreApplication.translate("Form", u"\u6708\u6bcf\u5929\u5e73\u5747\u6536\u5165/\u5143", None));
            ___qtablewidgetitem37 = self.tableWidget_15.horizontalHeaderItem(5)
            ___qtablewidgetitem37.setText(QCoreApplication.translate("Form", u"\u6708\u652f\u51fa\u5360\u6bd4", None));
            ___qtablewidgetitem38 = self.tableWidget_15.horizontalHeaderItem(6)
            ___qtablewidgetitem38.setText(QCoreApplication.translate("Form", u"\u6708\u6536\u5165\u5360\u6bd4", None));
            self.comboBox_2.setItemText(0, QCoreApplication.translate("Form", u"1", None))
            self.comboBox_2.setItemText(1, QCoreApplication.translate("Form", u"2", None))
            self.comboBox_2.setItemText(2, QCoreApplication.translate("Form", u"3", None))
            self.comboBox_2.setItemText(3, QCoreApplication.translate("Form", u"4", None))
            self.comboBox_2.setItemText(4, QCoreApplication.translate("Form", u"5", None))
            self.comboBox_2.setItemText(5, QCoreApplication.translate("Form", u"6", None))
            self.comboBox_2.setItemText(6, QCoreApplication.translate("Form", u"7", None))
            self.comboBox_2.setItemText(7, QCoreApplication.translate("Form", u"8", None))
            self.comboBox_2.setItemText(8, QCoreApplication.translate("Form", u"9", None))
            self.comboBox_2.setItemText(9, QCoreApplication.translate("Form", u"10", None))
            self.comboBox_2.setItemText(10, QCoreApplication.translate("Form", u"11", None))
            self.comboBox_2.setItemText(11, QCoreApplication.translate("Form", u"12", None))
    
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_5), QCoreApplication.translate("Form", u"\u4ee5\u201c\u6708\u201d\u4e3a\u5355\u4f4d", None))
            self.label_49.setText(QCoreApplication.translate("Form", u"\u63d2\u5165\u5b63\u5ea6", None))
            self.label_50.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.comboBox.setItemText(0, QCoreApplication.translate("Form", u"\u7b2c\u4e00\u5b63\u5ea6", None))
            self.comboBox.setItemText(1, QCoreApplication.translate("Form", u"\u7b2c\u4e8c\u5b63\u5ea6", None))
            self.comboBox.setItemText(2, QCoreApplication.translate("Form", u"\u7b2c\u4e09\u5b63\u5ea6", None))
            self.comboBox.setItemText(3, QCoreApplication.translate("Form", u"\u7b2c\u56db\u5b63\u5ea6", None))
    
            self.pushButton_26.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u63d2\u5165", None))
            self.pushButton_27.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2\u8be6\u60c5", None))
            ___qtablewidgetitem39 = self.tableWidget_16.horizontalHeaderItem(0)
            ___qtablewidgetitem39.setText(QCoreApplication.translate("Form", u"\u5b63\u5ea6", None));
            ___qtablewidgetitem40 = self.tableWidget_16.horizontalHeaderItem(1)
            ___qtablewidgetitem40.setText(QCoreApplication.translate("Form", u"\u5b63\u5ea6\u652f\u51fa\u603b\u989d/\u5143", None));
            ___qtablewidgetitem41 = self.tableWidget_16.horizontalHeaderItem(2)
            ___qtablewidgetitem41.setText(QCoreApplication.translate("Form", u"\u5b63\u5ea6\u6bcf\u5929\u5e73\u5747\u652f\u51fa/\u5143", None));
            ___qtablewidgetitem42 = self.tableWidget_16.horizontalHeaderItem(3)
            ___qtablewidgetitem42.setText(QCoreApplication.translate("Form", u"\u5b63\u5ea6\u6536\u5165\u603b\u989d/\u5143", None));
            ___qtablewidgetitem43 = self.tableWidget_16.horizontalHeaderItem(4)
            ___qtablewidgetitem43.setText(QCoreApplication.translate("Form", u"\u5b63\u5ea6\u6bcf\u5929\u5e73\u5747\u6536\u5165/\u5143", None));
            ___qtablewidgetitem44 = self.tableWidget_16.horizontalHeaderItem(5)
            ___qtablewidgetitem44.setText(QCoreApplication.translate("Form", u"\u5b63\u5ea6\u652f\u51fa\u5360\u6bd4", None));
            ___qtablewidgetitem45 = self.tableWidget_16.horizontalHeaderItem(6)
            ___qtablewidgetitem45.setText(QCoreApplication.translate("Form", u"\u5b63\u5ea6\u6536\u5165\u5360\u6bd4", None));
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_11), QCoreApplication.translate("Form", u"\u4ee5\u201c\u5b63\u5ea6\u201d\u4e3a\u5355\u4f4d", None))
            self.label_51.setText(QCoreApplication.translate("Form", u"\u63d2\u5165\u5e74", None))
            self.pushButton_28.setText(QCoreApplication.translate("Form", u"\u67e5\u8be2\u8be6\u60c5", None))
            self.label_52.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            ___qtablewidgetitem46 = self.tableWidget_17.horizontalHeaderItem(0)
            ___qtablewidgetitem46.setText(QCoreApplication.translate("Form", u"\u5e74", None));
            ___qtablewidgetitem47 = self.tableWidget_17.horizontalHeaderItem(1)
            ___qtablewidgetitem47.setText(QCoreApplication.translate("Form", u"\u5e74\u652f\u51fa\u603b\u989d/\u5143", None));
            ___qtablewidgetitem48 = self.tableWidget_17.horizontalHeaderItem(2)
            ___qtablewidgetitem48.setText(QCoreApplication.translate("Form", u"\u5e74\u6bcf\u5929\u5e73\u5747\u652f\u51fa/\u5143", None));
            ___qtablewidgetitem49 = self.tableWidget_17.horizontalHeaderItem(3)
            ___qtablewidgetitem49.setText(QCoreApplication.translate("Form", u"\u5e74\u6536\u5165\u603b\u989d/\u5143", None));
            ___qtablewidgetitem50 = self.tableWidget_17.horizontalHeaderItem(4)
            ___qtablewidgetitem50.setText(QCoreApplication.translate("Form", u"\u5e74\u6bcf\u5929\u5e73\u5747\u6536\u5165/\u5143", None));
            ___qtablewidgetitem51 = self.tableWidget_17.horizontalHeaderItem(5)
            ___qtablewidgetitem51.setText(QCoreApplication.translate("Form", u"\u5e74\u652f\u51fa\u5360\u6bd4", None));
            ___qtablewidgetitem52 = self.tableWidget_17.horizontalHeaderItem(6)
            ___qtablewidgetitem52.setText(QCoreApplication.translate("Form", u"\u5e74\u6536\u5165\u5360\u6bd4", None));
            self.pushButton_29.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u63d2\u5165", None))
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_12), QCoreApplication.translate("Form", u"\u4ee5\u201c\u5e74\u201d\u4e3a\u5355\u4f4d", None))
            self.label_24.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u67d0\u4e00\u7c7b\u578b\uff1a", None))
            self.lineEdit_16.setPlaceholderText(QCoreApplication.translate("Form", u"\u8bf7\u8f93\u5165\u7c7b\u578b\u540d", None))
            self.pushButton_13.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u5220\u9664", None))
            self.label_26.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u67d0\u4e00\u5929\u7684\u6240\u6709\u8d26\u5355\u9879:", None))
            self.label_27.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.pushButton_14.setText(QCoreApplication.translate("Form", u"\u786e\u8ba4\u5220\u9664", None))
            self.label_28.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.label_29.setText(QCoreApplication.translate("Form", u"\u65e5", None))
            self.label_30.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u67d0\u4e00\u5929\u7684\u8d26\u5355:", None))
            self.label_69.setText(QCoreApplication.translate("Form", u"\u65e5", None))
            self.label_70.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.pushButton_39.setText(QCoreApplication.translate("Form", u"\u786e\u8ba4\u5220\u9664", None))
            self.label_71.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.label_72.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u67d0\u4e00\u5e74\u7684\u8d26\u5355:", None))
            self.label_73.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.pushButton_40.setText(QCoreApplication.translate("Form", u"\u786e\u8ba4\u5220\u9664", None))
            self.label_74.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.label_75.setText(QCoreApplication.translate("Form", u"\u91d1\u989d/\u5143:", None))
            self.label_76.setText(QCoreApplication.translate("Form", u"\u65e5", None))
            self.pushButton_41.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u5220\u9664", None))
            self.label_77.setText(QCoreApplication.translate("Form", u"\u5907\u6ce8:", None))
            self.lineEdit_53.setText("")
            self.label_78.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.label_79.setText(QCoreApplication.translate("Form", u"\u7c7b\u578b:", None))
            self.label_80.setText(QCoreApplication.translate("Form", u"\u65e5\u671f:", None))
            self.label_81.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u67d0\u4e00\u8d26\u5355\u9879:", None))
            self.lineEdit_57.setPlaceholderText(QCoreApplication.translate("Form", u"\u8be5\u5929\u5fc5\u987b\u662f\u5468\u4e00", None))
            self.label_82.setText(QCoreApplication.translate("Form", u"\u8d77\u59cb\u65e5\u671f:", None))
            self.label_83.setText(QCoreApplication.translate("Form", u"\u65e5", None))
            self.label_84.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.label_85.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u67d0\u4e00\u5468\u7684\u6570\u636e:", None))
            self.label_86.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.pushButton_42.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u5220\u9664", None))
            self.comboBox_5.setItemText(0, QCoreApplication.translate("Form", u"1", None))
            self.comboBox_5.setItemText(1, QCoreApplication.translate("Form", u"2", None))
            self.comboBox_5.setItemText(2, QCoreApplication.translate("Form", u"3", None))
            self.comboBox_5.setItemText(3, QCoreApplication.translate("Form", u"4", None))
            self.comboBox_5.setItemText(4, QCoreApplication.translate("Form", u"5", None))
            self.comboBox_5.setItemText(5, QCoreApplication.translate("Form", u"6", None))
            self.comboBox_5.setItemText(6, QCoreApplication.translate("Form", u"7", None))
            self.comboBox_5.setItemText(7, QCoreApplication.translate("Form", u"8", None))
            self.comboBox_5.setItemText(8, QCoreApplication.translate("Form", u"9", None))
            self.comboBox_5.setItemText(9, QCoreApplication.translate("Form", u"10", None))
            self.comboBox_5.setItemText(10, QCoreApplication.translate("Form", u"11", None))
            self.comboBox_5.setItemText(11, QCoreApplication.translate("Form", u"12", None))
    
            self.pushButton_43.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u5220\u9664", None))
            self.label_87.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u67d0\u4e00\u4e2a\u6708\u7684\u6570\u636e:", None))
            self.label_88.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.label_89.setText(QCoreApplication.translate("Form", u"\u6708", None))
            self.label_90.setText(QCoreApplication.translate("Form", u"\u5220\u9664\u5b63\u5ea6", None))
            self.comboBox_6.setItemText(0, QCoreApplication.translate("Form", u"\u7b2c\u4e00\u5b63\u5ea6", None))
            self.comboBox_6.setItemText(1, QCoreApplication.translate("Form", u"\u7b2c\u4e8c\u5b63\u5ea6", None))
            self.comboBox_6.setItemText(2, QCoreApplication.translate("Form", u"\u7b2c\u4e09\u5b63\u5ea6", None))
            self.comboBox_6.setItemText(3, QCoreApplication.translate("Form", u"\u7b2c\u56db\u5b63\u5ea6", None))
    
            self.label_91.setText(QCoreApplication.translate("Form", u"\u5e74", None))
            self.pushButton_44.setText(QCoreApplication.translate("Form", u"\u786e\u5b9a\u5220\u9664", None))
            self.label_92.setText(QCoreApplication.translate("Form", u"\u5269\u4f59\u91d1\u989d:", None))
            self.lineEdit_62.setText("")
            self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_6), QCoreApplication.translate("Form", u"\u5220\u9664\u6570\u636e", None))
        # retranslateUi
    
    
    if __name__ == "__main__":
        app = QApplication([])
        win = Ui_mnyman()
        win.show()
        sys.exit(app.exec())
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
    • 713
    • 714
    • 715
    • 716
    • 717
    • 718
    • 719
    • 720
    • 721
    • 722
    • 723
    • 724
    • 725
    • 726
    • 727
    • 728
    • 729
    • 730
    • 731
    • 732
    • 733
    • 734
    • 735
    • 736
    • 737
    • 738
    • 739
    • 740
    • 741
    • 742
    • 743
    • 744
    • 745
    • 746
    • 747
    • 748
    • 749
    • 750
    • 751
    • 752
    • 753
    • 754
    • 755
    • 756
    • 757
    • 758
    • 759
    • 760
    • 761
    • 762
    • 763
    • 764
    • 765
    • 766
    • 767
    • 768
    • 769
    • 770
    • 771
    • 772
    • 773
    • 774
    • 775
    • 776
    • 777
    • 778
    • 779
    • 780
    • 781
    • 782
    • 783
    • 784
    • 785
    • 786
    • 787
    • 788
    • 789
    • 790
    • 791
    • 792
    • 793
    • 794
    • 795
    • 796
    • 797
    • 798
    • 799
    • 800
    • 801
    • 802
    • 803
    • 804
    • 805
    • 806
    • 807
    • 808
    • 809
    • 810
    • 811
    • 812
    • 813
    • 814
    • 815
    • 816
    • 817
    • 818
    • 819
    • 820
    • 821
    • 822
    • 823
    • 824
    • 825
    • 826
    • 827
    • 828
    • 829
    • 830
    • 831
    • 832
    • 833
    • 834
    • 835
    • 836
    • 837
    • 838
    • 839
    • 840
    • 841
    • 842
    • 843
    • 844
    • 845
    • 846
    • 847
    • 848
    • 849
    • 850
    • 851
    • 852
    • 853
    • 854
    • 855
    • 856
    • 857
    • 858
    • 859
    • 860
    • 861
    • 862
    • 863
    • 864
    • 865
    • 866
    • 867
    • 868
    • 869
    • 870
    • 871
    • 872
    • 873
    • 874
    • 875
    • 876
    • 877
    • 878
    • 879
    • 880
    • 881
    • 882
    • 883
    • 884
    • 885
    • 886
    • 887
    • 888
    • 889
    • 890
    • 891
    • 892
    • 893
    • 894
    • 895
    • 896
    • 897
    • 898
    • 899
    • 900
    • 901
    • 902
    • 903
    • 904
    • 905
    • 906
    • 907
    • 908
    • 909
    • 910
    • 911
    • 912
    • 913
    • 914
    • 915
    • 916
    • 917
    • 918
    • 919
    • 920
    • 921
    • 922
    • 923
    • 924
    • 925
    • 926
    • 927
    • 928
    • 929
    • 930
    • 931
    • 932
    • 933
    • 934
    • 935
    • 936
    • 937
    • 938
    • 939
    • 940
    • 941
    • 942
    • 943
    • 944
    • 945
    • 946
    • 947
    • 948
    • 949
    • 950
    • 951
    • 952
    • 953
    • 954
    • 955
    • 956
    • 957
    • 958
    • 959
    • 960
    • 961
    • 962
    • 963
    • 964
    • 965
    • 966
    • 967
    • 968
    • 969
    • 970
    • 971
    • 972
    • 973
    • 974
    • 975
    • 976
    • 977
    • 978
    • 979
    • 980
    • 981
    • 982
    • 983
    • 984
    • 985
    • 986
    • 987
    • 988
    • 989
    • 990
    • 991
    • 992
    • 993
    • 994
    • 995
    • 996
    • 997
    • 998
    • 999
    • 1000
    • 1001
    • 1002
    • 1003
    • 1004
    • 1005
    • 1006
    • 1007
    • 1008
    • 1009
    • 1010
    • 1011
    • 1012
    • 1013
    • 1014
    • 1015
    • 1016
    • 1017
    • 1018
    • 1019
    • 1020
    • 1021
    • 1022
    • 1023
    • 1024
    • 1025
    • 1026
    • 1027
    • 1028
    • 1029
    • 1030
    • 1031
    • 1032
    • 1033
    • 1034
    • 1035
    • 1036
    • 1037
    • 1038
    • 1039
    • 1040
    • 1041
    • 1042
    • 1043
    • 1044
    • 1045
    • 1046
    • 1047
    • 1048
    • 1049
    • 1050
    • 1051
    • 1052
    • 1053
    • 1054
    • 1055
    • 1056
    • 1057
    • 1058
    • 1059
    • 1060
    • 1061
    • 1062
    • 1063
    • 1064
    • 1065
    • 1066
    • 1067
    • 1068
    • 1069
    • 1070
    • 1071
    • 1072
    • 1073
    • 1074
    • 1075
    • 1076
    • 1077
    • 1078
    • 1079
    • 1080
    • 1081
    • 1082
    • 1083
    • 1084
    • 1085
    • 1086
    • 1087
    • 1088
    • 1089
    • 1090
    • 1091
    • 1092
    • 1093
    • 1094
    • 1095
    • 1096
    • 1097
    • 1098
    • 1099
    • 1100
    • 1101
    • 1102
    • 1103
    • 1104
    • 1105
    • 1106
    • 1107
    • 1108
    • 1109
    • 1110
    • 1111
    • 1112
    • 1113
    • 1114
    • 1115
    • 1116
    • 1117
    • 1118
    • 1119
    • 1120
    • 1121
    • 1122
    • 1123
    • 1124
    • 1125
    • 1126
    • 1127
    • 1128
    • 1129
    • 1130
    • 1131
    • 1132
    • 1133
    • 1134
    • 1135
    • 1136
    • 1137
    • 1138
    • 1139
    • 1140
    • 1141
    • 1142
    • 1143
    • 1144
    • 1145
    • 1146
    • 1147
    • 1148
    • 1149
    • 1150
    • 1151
    • 1152
    • 1153
    • 1154
    • 1155
    • 1156
    • 1157
    • 1158
    • 1159
    • 1160
    • 1161
    • 1162
    • 1163
    • 1164
    • 1165
    • 1166
    • 1167
    • 1168
    • 1169
    • 1170
    • 1171
    • 1172
    • 1173
    • 1174
    • 1175
    • 1176
    • 1177
    • 1178
    • 1179
    • 1180
    • 1181
    • 1182
    • 1183
    • 1184
    • 1185
    • 1186
    • 1187
    • 1188
    • 1189
    • 1190
    • 1191
    • 1192
    • 1193
    • 1194
    • 1195
    • 1196
    • 1197
    • 1198
    • 1199
    • 1200
    • 1201
    • 1202
    • 1203
    • 1204
    • 1205
    • 1206
    • 1207
    • 1208
    • 1209
    • 1210
    • 1211
    • 1212
    • 1213
    • 1214
    • 1215
    • 1216
    • 1217
    • 1218
    • 1219
    • 1220
    • 1221
    • 1222
    • 1223
    • 1224
    • 1225
    • 1226
    • 1227
    • 1228
    • 1229
    • 1230
    • 1231
    • 1232
    • 1233
    • 1234
    • 1235
    • 1236
    • 1237
    • 1238
    • 1239
    • 1240
    • 1241
    • 1242
    • 1243
    • 1244
    • 1245
    • 1246
    • 1247
    • 1248
    • 1249
    • 1250
    • 1251
    • 1252
    • 1253
    • 1254
    • 1255
    • 1256
    • 1257
    • 1258
    • 1259
    • 1260
    • 1261
    • 1262
    • 1263
    • 1264
    • 1265
    • 1266
    • 1267
    • 1268
    • 1269
    • 1270
    • 1271
    • 1272
    • 1273
    • 1274
    • 1275
    • 1276
    • 1277
    • 1278
    • 1279
    • 1280
    • 1281
    • 1282
    • 1283
    • 1284
    • 1285
    • 1286
    • 1287
    • 1288
    • 1289
    • 1290
    • 1291
    • 1292
    • 1293
    • 1294
    • 1295
    • 1296
    • 1297
    • 1298
    • 1299
    • 1300
    • 1301
    • 1302
    • 1303
    • 1304
    • 1305
    • 1306
    • 1307
    • 1308
    • 1309
    • 1310
    • 1311
    • 1312
    • 1313
    • 1314
    • 1315
    • 1316
    • 1317
    • 1318
    • 1319
    • 1320
    • 1321
    • 1322
    • 1323
    • 1324
    • 1325
    • 1326
    • 1327
    • 1328
    • 1329
    • 1330
    • 1331
    • 1332
    • 1333
    • 1334
    • 1335
    • 1336
    • 1337
    • 1338
    • 1339
    • 1340
    • 1341
    • 1342
    • 1343
    • 1344
    • 1345
    • 1346
    • 1347
    • 1348
    • 1349
    • 1350
    • 1351
    • 1352
    • 1353
    • 1354
    • 1355
    • 1356
    • 1357
    • 1358
    • 1359
    • 1360
    • 1361
    • 1362
    • 1363
    • 1364
    • 1365
    • 1366
    • 1367
    • 1368
    • 1369
    • 1370
    • 1371
    • 1372
    • 1373
    • 1374
    • 1375
    • 1376
    • 1377
    • 1378
    • 1379
    • 1380
    • 1381
    • 1382
    • 1383
    • 1384
    • 1385
    • 1386
    • 1387
    • 1388
    • 1389
    • 1390
    • 1391
    • 1392
    • 1393
    • 1394
    • 1395
    • 1396
    • 1397
    • 1398
    • 1399
    • 1400
    • 1401
    • 1402
    • 1403
    • 1404
    • 1405
    • 1406
    • 1407
    • 1408
    • 1409
    • 1410
    • 1411
    • 1412
    • 1413
    • 1414
    • 1415
    • 1416
    • 1417
    • 1418
    • 1419
    • 1420
    • 1421
    • 1422
    • 1423
    • 1424
    • 1425
    • 1426
    • 1427
    • 1428
    • 1429
    • 1430
    • 1431
    • 1432
    • 1433
    • 1434
    • 1435
    • 1436
    • 1437
    • 1438
    • 1439
    • 1440
    • 1441
    • 1442
    • 1443
    • 1444
    • 1445
    • 1446
    • 1447
    • 1448
    • 1449
    • 1450
    • 1451
    • 1452
    • 1453
    • 1454
    • 1455
    • 1456
    • 1457
    • 1458
    • 1459
    • 1460
    • 1461
    • 1462
    • 1463
    • 1464
    • 1465
    • 1466
    • 1467
    • 1468
    • 1469
    • 1470
    • 1471
    • 1472
    • 1473
    • 1474
    • 1475
    • 1476
    • 1477
    • 1478
    • 1479
    • 1480
    • 1481
    • 1482
    • 1483
    • 1484
    • 1485
    • 1486
    • 1487
    • 1488
    • 1489
    • 1490
    • 1491
    • 1492
    • 1493
    • 1494
    • 1495
    • 1496
    • 1497
    • 1498
    • 1499
    • 1500
    • 1501
    • 1502
    • 1503
    • 1504
    • 1505
    • 1506
    • 1507
    • 1508
    • 1509
    • 1510
    • 1511
    • 1512
    • 1513
    • 1514
    • 1515
    • 1516
    • 1517
    • 1518
    • 1519
    • 1520
    • 1521
    • 1522
    • 1523
    • 1524
    • 1525
    • 1526
    • 1527
    • 1528
    • 1529
    • 1530
    • 1531
    • 1532
    • 1533
    • 1534
    • 1535
    • 1536
    • 1537
    • 1538
    • 1539
    • 1540
    • 1541
    • 1542
    • 1543
    • 1544
    • 1545
    • 1546
    • 1547
    • 1548
    • 1549
    • 1550
    • 1551
    • 1552
    • 1553
    • 1554
    • 1555
    • 1556
    • 1557
    • 1558
    • 1559
    • 1560
    • 1561
    • 1562
    • 1563
    • 1564
    • 1565
    • 1566
    • 1567
    • 1568
    • 1569
    • 1570
    • 1571
    • 1572
    • 1573
    • 1574
    • 1575
    • 1576
    • 1577
    • 1578
    • 1579
    • 1580
    • 1581
    • 1582
    • 1583
    • 1584
    • 1585
    • 1586
    • 1587
    • 1588
    • 1589
    • 1590
    • 1591
    • 1592
    • 1593
    • 1594
    • 1595
    • 1596
    • 1597
    • 1598
    • 1599
    • 1600
    • 1601
    • 1602
    • 1603
    • 1604
    • 1605
    • 1606
    • 1607
    • 1608
    • 1609
    • 1610
    • 1611
    • 1612
    • 1613
    • 1614
    • 1615
    • 1616
    • 1617
    • 1618
    • 1619
    • 1620
    • 1621
    • 1622
    • 1623
    • 1624
    • 1625
    • 1626
    • 1627
    • 1628
    • 1629
    • 1630
    • 1631
    • 1632
    • 1633
    • 1634
    • 1635
    • 1636
    • 1637
    • 1638
    • 1639
    • 1640
    • 1641
    • 1642
    • 1643
    • 1644
    • 1645
    • 1646
    • 1647
    • 1648
    • 1649
    • 1650
    • 1651
    • 1652
    • 1653
    • 1654
    • 1655
    • 1656
    • 1657
    • 1658
    • 1659
    • 1660
    • 1661
    • 1662
    • 1663
    • 1664
    • 1665
    • 1666
    • 1667
    • 1668
    • 1669
    • 1670
    • 1671
    • 1672
    • 1673
    • 1674
    • 1675
    • 1676
    • 1677
    • 1678
    • 1679
    • 1680
    • 1681
    • 1682
    • 1683
    • 1684
    • 1685
    • 1686
    • 1687
    • 1688
    • 1689
    • 1690
    • 1691
    • 1692
    • 1693
    • 1694
    • 1695
    • 1696
    • 1697
    • 1698
    • 1699
    • 1700
    • 1701
    • 1702
    • 1703
    • 1704
    • 1705
    • 1706
    • 1707
    • 1708
    • 1709
    • 1710
    • 1711
    • 1712
    • 1713
    • 1714
    • 1715
    • 1716
    • 1717
    • 1718
    • 1719
    • 1720
    • 1721
    • 1722
    • 1723
    • 1724
    • 1725
    • 1726
    • 1727
    • 1728
    • 1729
    • 1730
    • 1731
    • 1732
    • 1733
    • 1734
    • 1735
    • 1736
    • 1737
    • 1738
    • 1739
    • 1740
    • 1741
    • 1742
    • 1743
    • 1744
    • 1745
    • 1746
    • 1747
    • 1748
    • 1749
    • 1750
    • 1751
    • 1752
    • 1753
    • 1754
    • 1755
    • 1756
    • 1757
    • 1758
    • 1759
    • 1760
    • 1761
    • 1762
    • 1763
    • 1764
    • 1765
    • 1766
    • 1767
    • 1768
    • 1769
    • 1770
    • 1771
    • 1772
    • 1773
    • 1774
    • 1775
    • 1776
    • 1777
    • 1778
    • 1779
    • 1780
    • 1781
    • 1782
    • 1783
    • 1784
    • 1785
    • 1786
    • 1787
    • 1788
    • 1789
    • 1790
    • 1791
    • 1792
    • 1793
    • 1794
    • 1795
    • 1796
    • 1797
    • 1798
    • 1799
    • 1800
    • 1801
    • 1802
    • 1803
    • 1804
    • 1805
    • 1806
    • 1807
    • 1808
    • 1809
    • 1810
    • 1811
    • 1812
    • 1813
    • 1814
    • 1815
    • 1816
    • 1817
    • 1818
    • 1819
    • 1820
    • 1821
    • 1822
    • 1823
    • 1824
    • 1825
    • 1826
    • 1827
    • 1828
    • 1829
    • 1830
    • 1831
    • 1832
    • 1833
    • 1834
    • 1835
    • 1836
    • 1837
    • 1838
    • 1839
    • 1840
    • 1841
    • 1842
    • 1843
    • 1844
    • 1845
    • 1846
    • 1847
    • 1848
    • 1849
    • 1850
    • 1851
    • 1852
    • 1853
    • 1854
    • 1855
    • 1856
    • 1857
    • 1858
    • 1859
    • 1860
    • 1861
    • 1862
    • 1863
    • 1864
    • 1865
    • 1866
    • 1867
    • 1868
    • 1869
    • 1870
    • 1871
    • 1872
    • 1873
    • 1874
    • 1875
    • 1876
    • 1877
    • 1878
    • 1879
    • 1880
    • 1881
    • 1882
    • 1883
    • 1884
    • 1885
    • 1886
    • 1887
    • 1888
    • 1889
    • 1890
    • 1891
    • 1892
    • 1893
    • 1894
    • 1895
    • 1896
    • 1897
    • 1898
    • 1899
    • 1900
    • 1901
    • 1902
    • 1903
    • 1904
    • 1905
    • 1906
    • 1907
    • 1908
    • 1909
    • 1910
    • 1911
    • 1912
    • 1913
    • 1914
    • 1915
    • 1916
    • 1917
    • 1918
    • 1919
    • 1920
    • 1921
    • 1922
    • 1923
    • 1924
    • 1925
    • 1926
    • 1927
    • 1928
    • 1929
    • 1930
    • 1931
    • 1932
    • 1933
    • 1934
    • 1935
    • 1936
    • 1937
    • 1938
    • 1939
    • 1940
    • 1941
    • 1942
    • 1943
    • 1944
    • 1945
    • 1946
    • 1947
    • 1948
    • 1949
    • 1950
    • 1951
    • 1952
    • 1953
    • 1954
    • 1955
    • 1956
    • 1957
    • 1958
    • 1959
    • 1960
    • 1961
    • 1962
    • 1963
    • 1964
    • 1965
    • 1966
    • 1967
    • 1968
    • 1969
    • 1970
    • 1971
    • 1972
    • 1973
    • 1974
    • 1975
    • 1976
    • 1977
    • 1978
    • 1979
    • 1980
    • 1981
    • 1982
    • 1983
    • 1984
    • 1985
    • 1986
    • 1987
    • 1988
    • 1989
    • 1990
    • 1991
    • 1992
    • 1993
    • 1994
    • 1995
    • 1996
    • 1997
    • 1998
    • 1999
    • 2000
    • 2001
    • 2002
    • 2003
    • 2004
    • 2005
    • 2006
    • 2007
    • 2008
    • 2009
    • 2010
    • 2011
    • 2012
    • 2013
    • 2014
    • 2015
    • 2016
    • 2017
    • 2018
    • 2019
    • 2020
    • 2021
    • 2022
    • 2023
    • 2024
    • 2025
    • 2026
    • 2027
    • 2028
    • 2029
    • 2030
    • 2031
    • 2032
    • 2033
    • 2034
    • 2035
    • 2036
    • 2037
    • 2038
    • 2039
    • 2040
    • 2041
    • 2042
    • 2043
    • 2044
    • 2045
    • 2046
    • 2047
    • 2048
    • 2049
    • 2050
    • 2051
    • 2052
    • 2053
    • 2054
    • 2055
    • 2056
    • 2057
    • 2058
    • 2059
    • 2060
    • 2061
    • 2062
    • 2063
    • 2064
    • 2065
    • 2066
    • 2067
    • 2068
    • 2069
    • 2070
    • 2071
    • 2072
    • 2073
    • 2074
    • 2075
    • 2076
    • 2077
    • 2078
    • 2079
    • 2080
    • 2081
    • 2082
    • 2083
    • 2084
    • 2085
    • 2086
    • 2087
    • 2088
    • 2089
    • 2090
    • 2091
    • 2092
    • 2093
    • 2094
    • 2095
    • 2096
    • 2097
    • 2098
    • 2099
    • 2100
    • 2101
    • 2102
    • 2103
    • 2104
    • 2105
    • 2106
    • 2107
    • 2108
    • 2109
    • 2110
    • 2111
    • 2112
    • 2113
    • 2114
    • 2115
    • 2116
    • 2117
    • 2118
    • 2119
    • 2120
    • 2121
    • 2122
    • 2123
    • 2124
    • 2125
    • 2126
    • 2127
    • 2128
    • 2129
    • 2130
    • 2131
    • 2132
    • 2133
    • 2134
    • 2135
    • 2136
    • 2137
    • 2138
    • 2139
    • 2140
    • 2141
    • 2142
    • 2143
    • 2144
    • 2145
    • 2146
    • 2147
    • 2148
    • 2149
    • 2150
    • 2151
    • 2152
    • 2153
    • 2154
    • 2155
    • 2156
    • 2157
    • 2158
    • 2159
    • 2160
    • 2161
    • 2162
    • 2163
    • 2164
    • 2165
    • 2166
    • 2167
    • 2168
    • 2169
    • 2170
    • 2171
    • 2172
    • 2173
    • 2174
    • 2175
    • 2176
    • 2177
    • 2178
    • 2179
    • 2180
    • 2181
    • 2182
    • 2183
    • 2184
    • 2185
    • 2186
    • 2187
    • 2188
    • 2189
    • 2190
    • 2191
    • 2192
    • 2193
    • 2194
    • 2195
    • 2196
    • 2197
    • 2198
    • 2199
    • 2200
    • 2201
    • 2202
    • 2203
    • 2204
    • 2205
    • 2206
    • 2207
    • 2208
    • 2209
    • 2210
    • 2211
    • 2212
    • 2213
    • 2214
    • 2215
    • 2216
    • 2217
    • 2218
    • 2219
    • 2220
    • 2221
    • 2222
    • 2223
    • 2224
    • 2225
    • 2226
    • 2227
    • 2228
    • 2229
    • 2230
    • 2231
    • 2232
    • 2233
    • 2234
    • 2235
    • 2236
    • 2237
    • 2238
    • 2239
    • 2240
    • 2241
    • 2242
    • 2243
    • 2244
    • 2245
    • 2246
    • 2247
    • 2248
    • 2249
    • 2250
    • 2251
    • 2252
    • 2253
    • 2254
    • 2255
    • 2256
    • 2257
    • 2258
    • 2259
    • 2260
    • 2261
    • 2262
    • 2263
    • 2264
    • 2265
    • 2266
    • 2267
    • 2268
    • 2269
    • 2270
    • 2271
    • 2272
    • 2273
    • 2274
    • 2275
    • 2276
    • 2277
    • 2278
    • 2279
    • 2280
    • 2281
    • 2282
    • 2283
    • 2284
    • 2285
    • 2286
    • 2287
    • 2288
    • 2289
    • 2290
    • 2291
    • 2292
    • 2293
    • 2294
    • 2295
    • 2296
    • 2297
    • 2298
    • 2299
    • 2300
    • 2301
    • 2302
    • 2303
    • 2304
    • 2305
    • 2306
    • 2307
    • 2308
    • 2309
    • 2310
    • 2311
    • 2312
    • 2313
    • 2314
    • 2315
    • 2316
    • 2317
    • 2318
    • 2319
    • 2320
    • 2321
    • 2322
    • 2323
    • 2324
    • 2325
    • 2326
    • 2327
    • 2328
    • 2329
    • 2330
    • 2331
    • 2332
    • 2333
    • 2334
    • 2335
    • 2336
    • 2337
    • 2338
    • 2339
    • 2340
    • 2341
    • 2342
    • 2343
    • 2344
    • 2345
    • 2346
    • 2347
    • 2348
    • 2349
    • 2350
    • 2351
    • 2352
    • 2353
    • 2354
    • 2355
    • 2356
    • 2357
    • 2358
    • 2359
    • 2360
    • 2361
    • 2362
    • 2363
    • 2364
    • 2365
    • 2366
    • 2367
    • 2368
    • 2369
    • 2370
    • 2371
    • 2372
    • 2373
    • 2374
    • 2375
    • 2376
    • 2377
    • 2378
    • 2379
    • 2380
    • 2381
    • 2382
    • 2383
    • 2384
    • 2385
    • 2386
    • 2387
    • 2388
    • 2389
    • 2390
    • 2391
    • 2392
    • 2393
    • 2394
    • 2395
    • 2396
    • 2397
    • 2398
    • 2399
    • 2400
    • 2401
    • 2402
    • 2403
    • 2404
    • 2405
    • 2406
    • 2407
    • 2408
    • 2409
    • 2410
    • 2411
    • 2412
    • 2413
    • 2414
    • 2415
    • 2416
    • 2417
    • 2418
    • 2419
    • 2420
    • 2421
    • 2422
    • 2423
    • 2424
    • 2425
    • 2426
    • 2427
    • 2428
    • 2429
    • 2430
    • 2431
    • 2432
    • 2433
    • 2434
    • 2435
    • 2436
    • 2437
    • 2438
    • 2439
    • 2440
    • 2441
    • 2442
    • 2443
    • 2444
    • 2445
    • 2446
    • 2447

    注意

    代码中会用到两个图标:

    • 链接:https://pan.baidu.com/s/1APQkblRYjL-IDPagxm3ddQ
      提取码:gj21
    • 链接:https://pan.baidu.com/s/1EM-z9ynENKbI1Fgir-b2Cg
      提取码:gj21
      在这里插入图片描述
      将这两个图标和py源文件放在同一个文件夹下面。

    将py程序打包成exe可执行文件
    命令行进入py源文件所在的目录下:
    使用命令pyinstaller -F -w 源文件名.py
    pyinstaller是第三方库,需要pip下载。
    使用命令pyinstaller -F -w 源文件名.py --icon="mn.ico"打包出来的exe会带上图标。
    在这里插入图片描述

    界面

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    使用

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    涉及一些隐私数据,就不展示使用截图了。有兴趣的小伙伴可以更改代码增加喜欢的功能。

  • 相关阅读:
    手把手教你使用Python写贪吃蛇游戏(pygame)
    关于 re.sub 部分替换的解决办法
    开源项目学习心得
    视频云存储/安防监控/AI分析/视频AI智能分析网关:占道经营算法
    python数据容器——列表
    Orange3数据可视化(箱线图-离散属性分布)
    前端缓存汇总
    【数据结构与算法】六、手动实现树结构代码示例
    在矩池云使用安装AgentTuning
    C++: std::call_once vs atomic
  • 原文地址:https://blog.csdn.net/m0_46190471/article/details/126002471