├── .env.development ├── .env.production ├── .eslintrc.cjs ├── .gitignore ├── .husky └── pre-commit ├── .vscode └── extensions.json ├── README.md ├── display ├── alipay.png ├── qq-login.png ├── uyi-chat.png ├── uyi-desc.png ├── uyi-home.png ├── uyi-login.png ├── uyi-map.png ├── uyi-pay.png ├── uyi-profile.png └── uyi-record.png ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public └── vite.svg ├── src ├── App.vue ├── api │ ├── httpRequest.ts │ └── index.ts ├── assets │ ├── ad.png │ ├── avatar-doctor.svg │ ├── car.png │ ├── consult-fast.png │ ├── end.png │ ├── qq.svg │ ├── start.png │ └── vue.svg ├── components.d.ts ├── components │ ├── ImgUpload │ │ ├── ImgUpload.vue │ │ └── style.scss │ ├── NavBar │ │ ├── NavBar.vue │ │ └── style.scss │ ├── OrderMedical │ │ ├── OrderMedical.vue │ │ └── style.scss │ ├── OrderRecordPopover │ │ ├── OrderRecordPopover.vue │ │ └── style.scss │ ├── PayActionSheet │ │ ├── PayActionSheet.vue │ │ └── style.scss │ ├── RadioBtn │ │ ├── RadioBtn.vue │ │ └── style.scss │ └── SvgIcon │ │ └── SvgIcon.vue ├── consts │ └── index.ts ├── enums │ └── index.ts ├── env.d.ts ├── hooks │ ├── useProxyHook.ts │ └── useUserHook.ts ├── icons │ ├── consult │ │ ├── alipay.svg │ │ ├── delete.svg │ │ ├── doctor.svg │ │ ├── download.svg │ │ ├── img.svg │ │ ├── message.svg │ │ ├── safe.svg │ │ ├── upload.svg │ │ └── wechat.svg │ ├── home │ │ ├── article-active.svg │ │ ├── article-default.svg │ │ ├── docs.svg │ │ ├── doctor.svg │ │ ├── find.svg │ │ ├── graphic.svg │ │ ├── index-active.svg │ │ ├── index-default.svg │ │ ├── mine-active.svg │ │ ├── mine-default.svg │ │ ├── notice-active.svg │ │ ├── notice-default.svg │ │ ├── order.svg │ │ ├── prescribe.svg │ │ ├── rp.svg │ │ └── search.svg │ ├── login │ │ ├── eye-off.svg │ │ └── eye-on.svg │ └── user │ │ ├── add.svg │ │ ├── arrow.svg │ │ ├── edit.svg │ │ ├── finished.svg │ │ ├── paid.svg │ │ ├── received.svg │ │ ├── shipped.svg │ │ ├── tool-01.svg │ │ ├── tool-02.svg │ │ ├── tool-03.svg │ │ ├── tool-04.svg │ │ ├── tool-05.svg │ │ ├── tool-06.svg │ │ └── tool-07.svg ├── main.ts ├── mock │ └── index.ts ├── router │ ├── index.ts │ └── routes.ts ├── stores │ ├── index.ts │ └── modules │ │ ├── consultModule.ts │ │ └── userModule.ts ├── style.css ├── styles │ ├── main.scss │ └── room.scss ├── types │ ├── consult.d.ts │ ├── global.d.ts │ ├── order.d.ts │ ├── room.d.ts │ └── user.d.ts ├── utils │ ├── createOrderParamUtil.ts │ ├── filterUtil.ts │ ├── index.ts │ └── ruleUtil.ts ├── views │ ├── 404 │ │ ├── 404.vue │ │ └── style.scss │ ├── login-callback │ │ ├── login-callback.vue │ │ └── style.scss │ ├── login │ │ ├── login.vue │ │ └── style.scss │ ├── module-consult │ │ ├── components │ │ │ ├── DepartmentContent │ │ │ │ ├── DepartmentContent.vue │ │ │ │ └── style.scss │ │ │ ├── DoctorCard │ │ │ │ ├── DoctorCard.vue │ │ │ │ └── style.scss │ │ │ ├── DoctorList │ │ │ │ ├── DoctorList.vue │ │ │ │ └── style.scss │ │ │ ├── MedicineAction │ │ │ │ ├── MedicineAction.vue │ │ │ │ └── style.scss │ │ │ ├── MedicineCard │ │ │ │ ├── MedicineCard.vue │ │ │ │ └── style.scss │ │ │ └── MedicineList │ │ │ │ ├── MedicineList.vue │ │ │ │ └── style.scss │ │ ├── consult-dep │ │ │ ├── consult-dep.vue │ │ │ └── style.scss │ │ ├── consult-doctor-detail │ │ │ ├── consult-doctor-detail.vue │ │ │ └── style.scss │ │ ├── consult-doctor-list │ │ │ ├── consult-doctor-list.vue │ │ │ └── style.scss │ │ ├── consult-doctor │ │ │ ├── consult-doctor.vue │ │ │ └── style.scss │ │ ├── consult-fast │ │ │ ├── consult-fast.vue │ │ │ └── style.scss │ │ ├── consult-illness │ │ │ ├── consult-illness.vue │ │ │ └── style.scss │ │ ├── consult-medicine-choose │ │ │ ├── consult-medicine-choose.vue │ │ │ └── style.scss │ │ ├── consult-medicine-detail │ │ │ ├── consult-medicine-detail.vue │ │ │ └── style.scss │ │ ├── consult-medicine │ │ │ ├── consult-medicine.vue │ │ │ └── style.scss │ │ ├── consult-pay │ │ │ ├── consult-pay.vue │ │ │ └── style.scss │ │ └── consult-room │ │ │ ├── components │ │ │ ├── RoomAction │ │ │ │ ├── RoomAction.vue │ │ │ │ └── style.scss │ │ │ ├── RoomMessage │ │ │ │ ├── RoomMessage.vue │ │ │ │ ├── components │ │ │ │ │ └── EvaluateCard │ │ │ │ │ │ ├── EvaluateCard.vue │ │ │ │ │ │ └── style.scss │ │ │ │ └── style.scss │ │ │ └── RoomStatus │ │ │ │ ├── RoomStatus.vue │ │ │ │ └── style.scss │ │ │ ├── consult-room.vue │ │ │ └── style.scss │ ├── module-order │ │ ├── order-detail │ │ │ ├── order-detail.vue │ │ │ └── style.scss │ │ ├── order-logistics │ │ │ ├── order-logistics.vue │ │ │ └── style.scss │ │ ├── order-pay-result │ │ │ ├── order-pay-result.vue │ │ │ └── style.scss │ │ └── order-pay │ │ │ ├── order-pay.vue │ │ │ └── style.scss │ ├── module-user │ │ ├── user-consult-detail │ │ │ ├── style.scss │ │ │ └── user-consult-detail.vue │ │ ├── user-consult │ │ │ ├── components │ │ │ │ ├── ConsultItem │ │ │ │ │ ├── ConsultItem.vue │ │ │ │ │ └── style.scss │ │ │ │ └── ConsultList │ │ │ │ │ ├── ConsultList.vue │ │ │ │ │ └── style.scss │ │ │ ├── style.scss │ │ │ └── user-consult.vue │ │ └── user-patient │ │ │ ├── style.scss │ │ │ └── user-patient.vue │ └── tabbar │ │ ├── style.scss │ │ ├── tab-article │ │ ├── style.scss │ │ └── tab-article.vue │ │ ├── tab-index │ │ ├── components │ │ │ ├── DoctorCard │ │ │ │ ├── DoctorCard.vue │ │ │ │ └── style.scss │ │ │ ├── KnowledgeCard │ │ │ │ ├── KnowledgeCard.vue │ │ │ │ └── style.scss │ │ │ ├── KnowledgeList │ │ │ │ ├── KnowledgeList.vue │ │ │ │ └── style.scss │ │ │ └── RecommendDoctor │ │ │ │ ├── RecommendDoctor.vue │ │ │ │ └── style.scss │ │ ├── style.scss │ │ └── tab-index.vue │ │ ├── tab-msg │ │ ├── style.scss │ │ └── tab-msg.vue │ │ ├── tab-user │ │ ├── style.scss │ │ └── tab-user.vue │ │ └── tabbar.vue └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | pnpm lint-staged 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/README.md -------------------------------------------------------------------------------- /display/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/alipay.png -------------------------------------------------------------------------------- /display/qq-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/qq-login.png -------------------------------------------------------------------------------- /display/uyi-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-chat.png -------------------------------------------------------------------------------- /display/uyi-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-desc.png -------------------------------------------------------------------------------- /display/uyi-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-home.png -------------------------------------------------------------------------------- /display/uyi-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-login.png -------------------------------------------------------------------------------- /display/uyi-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-map.png -------------------------------------------------------------------------------- /display/uyi-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-pay.png -------------------------------------------------------------------------------- /display/uyi-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-profile.png -------------------------------------------------------------------------------- /display/uyi-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/display/uyi-record.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/httpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/api/httpRequest.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/assets/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/ad.png -------------------------------------------------------------------------------- /src/assets/avatar-doctor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/avatar-doctor.svg -------------------------------------------------------------------------------- /src/assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/car.png -------------------------------------------------------------------------------- /src/assets/consult-fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/consult-fast.png -------------------------------------------------------------------------------- /src/assets/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/end.png -------------------------------------------------------------------------------- /src/assets/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/qq.svg -------------------------------------------------------------------------------- /src/assets/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/start.png -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/components/ImgUpload/ImgUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/ImgUpload/ImgUpload.vue -------------------------------------------------------------------------------- /src/components/ImgUpload/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/ImgUpload/style.scss -------------------------------------------------------------------------------- /src/components/NavBar/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/NavBar/NavBar.vue -------------------------------------------------------------------------------- /src/components/NavBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/NavBar/style.scss -------------------------------------------------------------------------------- /src/components/OrderMedical/OrderMedical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/OrderMedical/OrderMedical.vue -------------------------------------------------------------------------------- /src/components/OrderMedical/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/OrderMedical/style.scss -------------------------------------------------------------------------------- /src/components/OrderRecordPopover/OrderRecordPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/OrderRecordPopover/OrderRecordPopover.vue -------------------------------------------------------------------------------- /src/components/OrderRecordPopover/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/OrderRecordPopover/style.scss -------------------------------------------------------------------------------- /src/components/PayActionSheet/PayActionSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/PayActionSheet/PayActionSheet.vue -------------------------------------------------------------------------------- /src/components/PayActionSheet/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/PayActionSheet/style.scss -------------------------------------------------------------------------------- /src/components/RadioBtn/RadioBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/RadioBtn/RadioBtn.vue -------------------------------------------------------------------------------- /src/components/RadioBtn/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/RadioBtn/style.scss -------------------------------------------------------------------------------- /src/components/SvgIcon/SvgIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/components/SvgIcon/SvgIcon.vue -------------------------------------------------------------------------------- /src/consts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/consts/index.ts -------------------------------------------------------------------------------- /src/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/enums/index.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/hooks/useProxyHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/hooks/useProxyHook.ts -------------------------------------------------------------------------------- /src/hooks/useUserHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/hooks/useUserHook.ts -------------------------------------------------------------------------------- /src/icons/consult/alipay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/alipay.svg -------------------------------------------------------------------------------- /src/icons/consult/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/delete.svg -------------------------------------------------------------------------------- /src/icons/consult/doctor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/doctor.svg -------------------------------------------------------------------------------- /src/icons/consult/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/download.svg -------------------------------------------------------------------------------- /src/icons/consult/img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/img.svg -------------------------------------------------------------------------------- /src/icons/consult/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/message.svg -------------------------------------------------------------------------------- /src/icons/consult/safe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/safe.svg -------------------------------------------------------------------------------- /src/icons/consult/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/upload.svg -------------------------------------------------------------------------------- /src/icons/consult/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/consult/wechat.svg -------------------------------------------------------------------------------- /src/icons/home/article-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/article-active.svg -------------------------------------------------------------------------------- /src/icons/home/article-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/article-default.svg -------------------------------------------------------------------------------- /src/icons/home/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/docs.svg -------------------------------------------------------------------------------- /src/icons/home/doctor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/doctor.svg -------------------------------------------------------------------------------- /src/icons/home/find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/find.svg -------------------------------------------------------------------------------- /src/icons/home/graphic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/graphic.svg -------------------------------------------------------------------------------- /src/icons/home/index-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/index-active.svg -------------------------------------------------------------------------------- /src/icons/home/index-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/index-default.svg -------------------------------------------------------------------------------- /src/icons/home/mine-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/mine-active.svg -------------------------------------------------------------------------------- /src/icons/home/mine-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/mine-default.svg -------------------------------------------------------------------------------- /src/icons/home/notice-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/notice-active.svg -------------------------------------------------------------------------------- /src/icons/home/notice-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/notice-default.svg -------------------------------------------------------------------------------- /src/icons/home/order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/order.svg -------------------------------------------------------------------------------- /src/icons/home/prescribe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/prescribe.svg -------------------------------------------------------------------------------- /src/icons/home/rp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/rp.svg -------------------------------------------------------------------------------- /src/icons/home/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/home/search.svg -------------------------------------------------------------------------------- /src/icons/login/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/login/eye-off.svg -------------------------------------------------------------------------------- /src/icons/login/eye-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/login/eye-on.svg -------------------------------------------------------------------------------- /src/icons/user/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/add.svg -------------------------------------------------------------------------------- /src/icons/user/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/arrow.svg -------------------------------------------------------------------------------- /src/icons/user/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/edit.svg -------------------------------------------------------------------------------- /src/icons/user/finished.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/finished.svg -------------------------------------------------------------------------------- /src/icons/user/paid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/paid.svg -------------------------------------------------------------------------------- /src/icons/user/received.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/received.svg -------------------------------------------------------------------------------- /src/icons/user/shipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/shipped.svg -------------------------------------------------------------------------------- /src/icons/user/tool-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/tool-01.svg -------------------------------------------------------------------------------- /src/icons/user/tool-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/tool-02.svg -------------------------------------------------------------------------------- /src/icons/user/tool-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/tool-03.svg -------------------------------------------------------------------------------- /src/icons/user/tool-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/tool-04.svg -------------------------------------------------------------------------------- /src/icons/user/tool-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/tool-05.svg -------------------------------------------------------------------------------- /src/icons/user/tool-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/tool-06.svg -------------------------------------------------------------------------------- /src/icons/user/tool-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/icons/user/tool-07.svg -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/mock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/mock/index.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/router/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/router/routes.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/stores/modules/consultModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/stores/modules/consultModule.ts -------------------------------------------------------------------------------- /src/stores/modules/userModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/stores/modules/userModule.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/style.css -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/room.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/styles/room.scss -------------------------------------------------------------------------------- /src/types/consult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/types/consult.d.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/order.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/types/order.d.ts -------------------------------------------------------------------------------- /src/types/room.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/types/room.d.ts -------------------------------------------------------------------------------- /src/types/user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/types/user.d.ts -------------------------------------------------------------------------------- /src/utils/createOrderParamUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/utils/createOrderParamUtil.ts -------------------------------------------------------------------------------- /src/utils/filterUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/utils/filterUtil.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/ruleUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/utils/ruleUtil.ts -------------------------------------------------------------------------------- /src/views/404/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/404/404.vue -------------------------------------------------------------------------------- /src/views/404/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/login-callback/login-callback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/login-callback/login-callback.vue -------------------------------------------------------------------------------- /src/views/login-callback/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/login-callback/style.scss -------------------------------------------------------------------------------- /src/views/login/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/login/login.vue -------------------------------------------------------------------------------- /src/views/login/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/login/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/components/DepartmentContent/DepartmentContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/DepartmentContent/DepartmentContent.vue -------------------------------------------------------------------------------- /src/views/module-consult/components/DepartmentContent/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/DepartmentContent/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/components/DoctorCard/DoctorCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/DoctorCard/DoctorCard.vue -------------------------------------------------------------------------------- /src/views/module-consult/components/DoctorCard/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/DoctorCard/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/components/DoctorList/DoctorList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/DoctorList/DoctorList.vue -------------------------------------------------------------------------------- /src/views/module-consult/components/DoctorList/style.scss: -------------------------------------------------------------------------------- 1 | .doctor-list { 2 | padding: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /src/views/module-consult/components/MedicineAction/MedicineAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/MedicineAction/MedicineAction.vue -------------------------------------------------------------------------------- /src/views/module-consult/components/MedicineAction/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/MedicineAction/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/components/MedicineCard/MedicineCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/MedicineCard/MedicineCard.vue -------------------------------------------------------------------------------- /src/views/module-consult/components/MedicineCard/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/MedicineCard/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/components/MedicineList/MedicineList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/MedicineList/MedicineList.vue -------------------------------------------------------------------------------- /src/views/module-consult/components/MedicineList/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/components/MedicineList/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-dep/consult-dep.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-dep/consult-dep.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-dep/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-dep/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-doctor-detail/consult-doctor-detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-doctor-detail/consult-doctor-detail.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-doctor-detail/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-doctor-detail/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-doctor-list/consult-doctor-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-doctor-list/consult-doctor-list.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-doctor-list/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-doctor-list/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-doctor/consult-doctor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-doctor/consult-doctor.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-doctor/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-doctor/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-fast/consult-fast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-fast/consult-fast.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-fast/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-fast/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-illness/consult-illness.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-illness/consult-illness.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-illness/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-illness/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-medicine-choose/consult-medicine-choose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-medicine-choose/consult-medicine-choose.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-medicine-choose/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-medicine-choose/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-medicine-detail/consult-medicine-detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-medicine-detail/consult-medicine-detail.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-medicine-detail/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-medicine-detail/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-medicine/consult-medicine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-medicine/consult-medicine.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-medicine/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-medicine/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-pay/consult-pay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-pay/consult-pay.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-pay/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-pay/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomAction/RoomAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/components/RoomAction/RoomAction.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomAction/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/components/RoomAction/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomMessage/RoomMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/components/RoomMessage/RoomMessage.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomMessage/components/EvaluateCard/EvaluateCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/components/RoomMessage/components/EvaluateCard/EvaluateCard.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomMessage/components/EvaluateCard/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/components/RoomMessage/components/EvaluateCard/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomMessage/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomStatus/RoomStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/components/RoomStatus/RoomStatus.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/components/RoomStatus/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/components/RoomStatus/style.scss -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/consult-room.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/consult-room.vue -------------------------------------------------------------------------------- /src/views/module-consult/consult-room/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-consult/consult-room/style.scss -------------------------------------------------------------------------------- /src/views/module-order/order-detail/order-detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-detail/order-detail.vue -------------------------------------------------------------------------------- /src/views/module-order/order-detail/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-detail/style.scss -------------------------------------------------------------------------------- /src/views/module-order/order-logistics/order-logistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-logistics/order-logistics.vue -------------------------------------------------------------------------------- /src/views/module-order/order-logistics/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-logistics/style.scss -------------------------------------------------------------------------------- /src/views/module-order/order-pay-result/order-pay-result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-pay-result/order-pay-result.vue -------------------------------------------------------------------------------- /src/views/module-order/order-pay-result/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-pay-result/style.scss -------------------------------------------------------------------------------- /src/views/module-order/order-pay/order-pay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-pay/order-pay.vue -------------------------------------------------------------------------------- /src/views/module-order/order-pay/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-order/order-pay/style.scss -------------------------------------------------------------------------------- /src/views/module-user/user-consult-detail/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-consult-detail/style.scss -------------------------------------------------------------------------------- /src/views/module-user/user-consult-detail/user-consult-detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-consult-detail/user-consult-detail.vue -------------------------------------------------------------------------------- /src/views/module-user/user-consult/components/ConsultItem/ConsultItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-consult/components/ConsultItem/ConsultItem.vue -------------------------------------------------------------------------------- /src/views/module-user/user-consult/components/ConsultItem/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-consult/components/ConsultItem/style.scss -------------------------------------------------------------------------------- /src/views/module-user/user-consult/components/ConsultList/ConsultList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-consult/components/ConsultList/ConsultList.vue -------------------------------------------------------------------------------- /src/views/module-user/user-consult/components/ConsultList/style.scss: -------------------------------------------------------------------------------- 1 | .consult-list { 2 | padding: 10px 15px; 3 | } 4 | -------------------------------------------------------------------------------- /src/views/module-user/user-consult/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-consult/style.scss -------------------------------------------------------------------------------- /src/views/module-user/user-consult/user-consult.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-consult/user-consult.vue -------------------------------------------------------------------------------- /src/views/module-user/user-patient/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-patient/style.scss -------------------------------------------------------------------------------- /src/views/module-user/user-patient/user-patient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/module-user/user-patient/user-patient.vue -------------------------------------------------------------------------------- /src/views/tabbar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/style.scss -------------------------------------------------------------------------------- /src/views/tabbar/tab-article/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/tabbar/tab-article/tab-article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-article/tab-article.vue -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/DoctorCard/DoctorCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/components/DoctorCard/DoctorCard.vue -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/DoctorCard/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/components/DoctorCard/style.scss -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/KnowledgeCard/KnowledgeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/components/KnowledgeCard/KnowledgeCard.vue -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/KnowledgeCard/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/components/KnowledgeCard/style.scss -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/KnowledgeList/KnowledgeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/components/KnowledgeList/KnowledgeList.vue -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/KnowledgeList/style.scss: -------------------------------------------------------------------------------- 1 | .knowledge-list { 2 | padding: 0 15px; 3 | } 4 | -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/RecommendDoctor/RecommendDoctor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/components/RecommendDoctor/RecommendDoctor.vue -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/components/RecommendDoctor/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/components/RecommendDoctor/style.scss -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/style.scss -------------------------------------------------------------------------------- /src/views/tabbar/tab-index/tab-index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-index/tab-index.vue -------------------------------------------------------------------------------- /src/views/tabbar/tab-msg/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/tabbar/tab-msg/tab-msg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-msg/tab-msg.vue -------------------------------------------------------------------------------- /src/views/tabbar/tab-user/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-user/style.scss -------------------------------------------------------------------------------- /src/views/tabbar/tab-user/tab-user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tab-user/tab-user.vue -------------------------------------------------------------------------------- /src/views/tabbar/tabbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/src/views/tabbar/tabbar.vue -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyucd/vue3-uyi-consult/HEAD/vite.config.ts --------------------------------------------------------------------------------