├── .gitignore ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── App.vue ├── Skeleton │ ├── SK-doctor-home.vue │ ├── SK-doctor.vue │ ├── SK-hpvlist.vue │ ├── SK-index.vue │ ├── SK-nucleic.vue │ ├── SK-phy-details.vue │ ├── SK-phy-exam.vue │ ├── SK-registered.vue │ ├── SK-self-test-result.vue │ └── SK-self-test.vue ├── com-components │ ├── point.vue │ └── se-member.vue ├── common-style │ ├── form.css │ ├── nucleic-time.css │ └── vaccine.css ├── env.d.ts ├── main.ts ├── manifest.json ├── pages.json ├── pages │ ├── doctor │ │ ├── components │ │ │ └── pop-ups.vue │ │ ├── doctor-Homepage.vue │ │ └── index.vue │ ├── graphics │ │ └── index.vue │ ├── hpv-vaccine │ │ ├── hpv-buy.vue │ │ └── hpv-vaccine.vue │ ├── index │ │ └── index.vue │ ├── login-page │ │ └── index.vue │ ├── mine │ │ └── mine.vue │ ├── my-service │ │ ├── hpv-view │ │ │ └── index.vue │ │ ├── my-patient │ │ │ ├── add-patient.vue │ │ │ └── my-patient.vue │ │ ├── my-registration │ │ │ └── index.vue │ │ ├── nucleic-acid │ │ │ └── index.vue │ │ ├── phy-exam │ │ │ └── index.vue │ │ └── xingaun │ │ │ └── index.vue │ ├── nuclelc-acld │ │ └── index.vue │ ├── phy-exam │ │ ├── Details.vue │ │ └── index.vue │ ├── registered │ │ └── registered.vue │ ├── self-test │ │ ├── result.vue │ │ └── topic.vue │ ├── video │ │ └── video.vue │ └── xinguan-vaccine │ │ └── xinguan-vaccine.vue ├── public │ ├── decl-type.d.ts │ ├── mise.ts │ ├── rquest.ts │ └── testing.ts ├── static │ ├── doctor.png │ ├── mine │ │ ├── guahao.svg │ │ ├── hesuan.svg │ │ ├── hpvyimiao.svg │ │ ├── jiuzhenren.svg │ │ ├── tijianbaogao.svg │ │ └── xinguanyimiao.svg │ ├── other │ │ ├── AI-shibie.svg │ │ ├── dianhua.svg │ │ ├── gengduo.svg │ │ ├── kongshuju.jpg │ │ ├── loading.svg │ │ ├── shaixuan-jiantou.png │ │ ├── shaixuan.png │ │ ├── shanchu-goods.svg │ │ ├── shuxing-img.png │ │ ├── touxiang.svg │ │ └── video-bofang.png │ └── tab │ │ ├── guahao-001.png │ │ ├── guahao-002.png │ │ ├── shipin-001.png │ │ ├── shipin-002.png │ │ ├── shouye-001.png │ │ ├── shouye-002.png │ │ ├── wode-001.png │ │ └── wode-002.png ├── store │ └── index.ts └── uni.scss ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-doctor-home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-doctor-home.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-doctor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-doctor.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-hpvlist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-hpvlist.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-index.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-nucleic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-nucleic.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-phy-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-phy-details.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-phy-exam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-phy-exam.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-registered.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-registered.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-self-test-result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-self-test-result.vue -------------------------------------------------------------------------------- /src/Skeleton/SK-self-test.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/Skeleton/SK-self-test.vue -------------------------------------------------------------------------------- /src/com-components/point.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/com-components/point.vue -------------------------------------------------------------------------------- /src/com-components/se-member.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/com-components/se-member.vue -------------------------------------------------------------------------------- /src/common-style/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/common-style/form.css -------------------------------------------------------------------------------- /src/common-style/nucleic-time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/common-style/nucleic-time.css -------------------------------------------------------------------------------- /src/common-style/vaccine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/common-style/vaccine.css -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages.json -------------------------------------------------------------------------------- /src/pages/doctor/components/pop-ups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/doctor/components/pop-ups.vue -------------------------------------------------------------------------------- /src/pages/doctor/doctor-Homepage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/doctor/doctor-Homepage.vue -------------------------------------------------------------------------------- /src/pages/doctor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/doctor/index.vue -------------------------------------------------------------------------------- /src/pages/graphics/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/graphics/index.vue -------------------------------------------------------------------------------- /src/pages/hpv-vaccine/hpv-buy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/hpv-vaccine/hpv-buy.vue -------------------------------------------------------------------------------- /src/pages/hpv-vaccine/hpv-vaccine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/hpv-vaccine/hpv-vaccine.vue -------------------------------------------------------------------------------- /src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/index/index.vue -------------------------------------------------------------------------------- /src/pages/login-page/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/login-page/index.vue -------------------------------------------------------------------------------- /src/pages/mine/mine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/mine/mine.vue -------------------------------------------------------------------------------- /src/pages/my-service/hpv-view/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/my-service/hpv-view/index.vue -------------------------------------------------------------------------------- /src/pages/my-service/my-patient/add-patient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/my-service/my-patient/add-patient.vue -------------------------------------------------------------------------------- /src/pages/my-service/my-patient/my-patient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/my-service/my-patient/my-patient.vue -------------------------------------------------------------------------------- /src/pages/my-service/my-registration/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/my-service/my-registration/index.vue -------------------------------------------------------------------------------- /src/pages/my-service/nucleic-acid/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/my-service/nucleic-acid/index.vue -------------------------------------------------------------------------------- /src/pages/my-service/phy-exam/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/my-service/phy-exam/index.vue -------------------------------------------------------------------------------- /src/pages/my-service/xingaun/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/my-service/xingaun/index.vue -------------------------------------------------------------------------------- /src/pages/nuclelc-acld/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/nuclelc-acld/index.vue -------------------------------------------------------------------------------- /src/pages/phy-exam/Details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/phy-exam/Details.vue -------------------------------------------------------------------------------- /src/pages/phy-exam/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/phy-exam/index.vue -------------------------------------------------------------------------------- /src/pages/registered/registered.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/registered/registered.vue -------------------------------------------------------------------------------- /src/pages/self-test/result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/self-test/result.vue -------------------------------------------------------------------------------- /src/pages/self-test/topic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/self-test/topic.vue -------------------------------------------------------------------------------- /src/pages/video/video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/video/video.vue -------------------------------------------------------------------------------- /src/pages/xinguan-vaccine/xinguan-vaccine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/pages/xinguan-vaccine/xinguan-vaccine.vue -------------------------------------------------------------------------------- /src/public/decl-type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/public/decl-type.d.ts -------------------------------------------------------------------------------- /src/public/mise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/public/mise.ts -------------------------------------------------------------------------------- /src/public/rquest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/public/rquest.ts -------------------------------------------------------------------------------- /src/public/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/public/testing.ts -------------------------------------------------------------------------------- /src/static/doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/doctor.png -------------------------------------------------------------------------------- /src/static/mine/guahao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/mine/guahao.svg -------------------------------------------------------------------------------- /src/static/mine/hesuan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/mine/hesuan.svg -------------------------------------------------------------------------------- /src/static/mine/hpvyimiao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/mine/hpvyimiao.svg -------------------------------------------------------------------------------- /src/static/mine/jiuzhenren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/mine/jiuzhenren.svg -------------------------------------------------------------------------------- /src/static/mine/tijianbaogao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/mine/tijianbaogao.svg -------------------------------------------------------------------------------- /src/static/mine/xinguanyimiao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/mine/xinguanyimiao.svg -------------------------------------------------------------------------------- /src/static/other/AI-shibie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/AI-shibie.svg -------------------------------------------------------------------------------- /src/static/other/dianhua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/dianhua.svg -------------------------------------------------------------------------------- /src/static/other/gengduo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/gengduo.svg -------------------------------------------------------------------------------- /src/static/other/kongshuju.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/kongshuju.jpg -------------------------------------------------------------------------------- /src/static/other/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/loading.svg -------------------------------------------------------------------------------- /src/static/other/shaixuan-jiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/shaixuan-jiantou.png -------------------------------------------------------------------------------- /src/static/other/shaixuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/shaixuan.png -------------------------------------------------------------------------------- /src/static/other/shanchu-goods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/shanchu-goods.svg -------------------------------------------------------------------------------- /src/static/other/shuxing-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/shuxing-img.png -------------------------------------------------------------------------------- /src/static/other/touxiang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/touxiang.svg -------------------------------------------------------------------------------- /src/static/other/video-bofang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/other/video-bofang.png -------------------------------------------------------------------------------- /src/static/tab/guahao-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/guahao-001.png -------------------------------------------------------------------------------- /src/static/tab/guahao-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/guahao-002.png -------------------------------------------------------------------------------- /src/static/tab/shipin-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/shipin-001.png -------------------------------------------------------------------------------- /src/static/tab/shipin-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/shipin-002.png -------------------------------------------------------------------------------- /src/static/tab/shouye-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/shouye-001.png -------------------------------------------------------------------------------- /src/static/tab/shouye-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/shouye-002.png -------------------------------------------------------------------------------- /src/static/tab/wode-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/wode-001.png -------------------------------------------------------------------------------- /src/static/tab/wode-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/static/tab/wode-002.png -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/src/uni.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenTreasure/Smart-medical-applet/HEAD/vite.config.ts --------------------------------------------------------------------------------