├── .config.ini ├── .config.sample.ini ├── .gitignore ├── Back.py ├── Backup ├── 1_Main.ui ├── 2_Add.ui ├── MessageBox.py ├── way.py └── 深度截图_Control.py_20181107190137.png ├── Control.py ├── Data ├── 20190607191157.bak ├── 20190607191434.bak ├── Main.db ├── Main.py ├── final.db └── init.sql ├── Document ├── API.md ├── Dev.md ├── Usage.md ├── sqlite简单使用说明.md ├── 一次反馈记录.txt ├── 录入活动图.pdf ├── 录入活动图.vsdx ├── 问诊活动图.pdf └── 问诊活动图.vsdx ├── Front.py ├── LICENSE ├── README.md ├── UI ├── MessageBox.py ├── UI.py ├── UI.ui ├── __init__.py ├── final.py ├── final.ui ├── information.py ├── information.ui ├── inquire.py ├── inquire.ui ├── login.py ├── login.ui ├── logwrong.py ├── logwrong.ui ├── missPhone.py ├── missPhone.ui ├── property.py ├── property.ui ├── quantity.py ├── quantity.ui ├── relationDelete.py ├── relationDelete.ui ├── reminder.py ├── reminder.ui ├── result.py ├── result.ui ├── wrong.py ├── wrong.ui ├── yes.py └── yes.ui ├── __init__.py ├── books ├── 仲景全书.docx ├── 本草纲目.docx ├── 汤头歌决.docx ├── 药王全书.docx └── 黄帝内经.docx ├── searchfile.py └── 备份界面 ├── UI.ui ├── UI1.ui ├── UI2.ui └── UI3.ui /.config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/.config.ini -------------------------------------------------------------------------------- /.config.sample.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/.gitignore -------------------------------------------------------------------------------- /Back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Back.py -------------------------------------------------------------------------------- /Backup/1_Main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Backup/1_Main.ui -------------------------------------------------------------------------------- /Backup/2_Add.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Backup/2_Add.ui -------------------------------------------------------------------------------- /Backup/MessageBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Backup/MessageBox.py -------------------------------------------------------------------------------- /Backup/way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Backup/way.py -------------------------------------------------------------------------------- /Backup/深度截图_Control.py_20181107190137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Backup/深度截图_Control.py_20181107190137.png -------------------------------------------------------------------------------- /Control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Control.py -------------------------------------------------------------------------------- /Data/20190607191157.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Data/20190607191157.bak -------------------------------------------------------------------------------- /Data/20190607191434.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Data/20190607191434.bak -------------------------------------------------------------------------------- /Data/Main.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Data/Main.db -------------------------------------------------------------------------------- /Data/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Data/Main.py -------------------------------------------------------------------------------- /Data/final.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Data/final.db -------------------------------------------------------------------------------- /Data/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Data/init.sql -------------------------------------------------------------------------------- /Document/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/API.md -------------------------------------------------------------------------------- /Document/Dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/Dev.md -------------------------------------------------------------------------------- /Document/Usage.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Document/sqlite简单使用说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/sqlite简单使用说明.md -------------------------------------------------------------------------------- /Document/一次反馈记录.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/一次反馈记录.txt -------------------------------------------------------------------------------- /Document/录入活动图.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/录入活动图.pdf -------------------------------------------------------------------------------- /Document/录入活动图.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/录入活动图.vsdx -------------------------------------------------------------------------------- /Document/问诊活动图.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/问诊活动图.pdf -------------------------------------------------------------------------------- /Document/问诊活动图.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Document/问诊活动图.vsdx -------------------------------------------------------------------------------- /Front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/Front.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/README.md -------------------------------------------------------------------------------- /UI/MessageBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/MessageBox.py -------------------------------------------------------------------------------- /UI/UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/UI.py -------------------------------------------------------------------------------- /UI/UI.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/UI.ui -------------------------------------------------------------------------------- /UI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UI/final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/final.py -------------------------------------------------------------------------------- /UI/final.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/final.ui -------------------------------------------------------------------------------- /UI/information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/information.py -------------------------------------------------------------------------------- /UI/information.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/information.ui -------------------------------------------------------------------------------- /UI/inquire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/inquire.py -------------------------------------------------------------------------------- /UI/inquire.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/inquire.ui -------------------------------------------------------------------------------- /UI/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/login.py -------------------------------------------------------------------------------- /UI/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/login.ui -------------------------------------------------------------------------------- /UI/logwrong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/logwrong.py -------------------------------------------------------------------------------- /UI/logwrong.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/logwrong.ui -------------------------------------------------------------------------------- /UI/missPhone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/missPhone.py -------------------------------------------------------------------------------- /UI/missPhone.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/missPhone.ui -------------------------------------------------------------------------------- /UI/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/property.py -------------------------------------------------------------------------------- /UI/property.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/property.ui -------------------------------------------------------------------------------- /UI/quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/quantity.py -------------------------------------------------------------------------------- /UI/quantity.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/quantity.ui -------------------------------------------------------------------------------- /UI/relationDelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/relationDelete.py -------------------------------------------------------------------------------- /UI/relationDelete.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/relationDelete.ui -------------------------------------------------------------------------------- /UI/reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/reminder.py -------------------------------------------------------------------------------- /UI/reminder.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/reminder.ui -------------------------------------------------------------------------------- /UI/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/result.py -------------------------------------------------------------------------------- /UI/result.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/result.ui -------------------------------------------------------------------------------- /UI/wrong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/wrong.py -------------------------------------------------------------------------------- /UI/wrong.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/wrong.ui -------------------------------------------------------------------------------- /UI/yes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/yes.py -------------------------------------------------------------------------------- /UI/yes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/UI/yes.ui -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books/仲景全书.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/books/仲景全书.docx -------------------------------------------------------------------------------- /books/本草纲目.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/books/本草纲目.docx -------------------------------------------------------------------------------- /books/汤头歌决.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/books/汤头歌决.docx -------------------------------------------------------------------------------- /books/药王全书.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/books/药王全书.docx -------------------------------------------------------------------------------- /books/黄帝内经.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/books/黄帝内经.docx -------------------------------------------------------------------------------- /searchfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/searchfile.py -------------------------------------------------------------------------------- /备份界面/UI.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/备份界面/UI.ui -------------------------------------------------------------------------------- /备份界面/UI1.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/备份界面/UI1.ui -------------------------------------------------------------------------------- /备份界面/UI2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/备份界面/UI2.ui -------------------------------------------------------------------------------- /备份界面/UI3.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefJia/TCM-Retrieval-System/HEAD/备份界面/UI3.ui --------------------------------------------------------------------------------