找传奇、传世资源到传世资源站!

医疗前后端分布式项目

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】医疗前后端分布式项目
【相关图片】医疗前后端分布式项目 WEB/WAP应用开发-第1张医疗前后端分布式项目 WEB/WAP应用开发-第2张医疗前后端分布式项目 WEB/WAP应用开发-第3张医疗前后端分布式项目 WEB/WAP应用开发-第4张医疗前后端分布式项目 WEB/WAP应用开发-第5张医疗前后端分布式项目 WEB/WAP应用开发-第6张

【源码结构】

.
├── VMoom.TemplateEngine.suo
├── java医疗前后端分布式项目_阶段代码.rar
└── 阶段代码
    ├── open-his
    │   ├── his-commons
    │   │   ├── pom.xml
    │   │   └── src
    │   │       ├── main
    │   │       │   ├── java
    │   │       │   └── resources
    │   │       └── test
    │   │           └── java
    │   ├── his-doctor
    │   │   ├── doctor-api
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── doctor-domain
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── doctor-mapper
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── doctor-service
    │   │   │   ├── pom.xml
    │   │   │   ├── src
    │   │   │   │   ├── main
    │   │   │   │   │   ├── java
    │   │   │   │   │   │   └── com
    │   │   │   │   │   │       └── bjsxt
    │   │   │   │   │   │           └── DoctorApplication.java
    │   │   │   │   │   └── resources
    │   │   │   │   │       ├── application-dev.yml
    │   │   │   │   │       ├── application-pro.yml
    │   │   │   │   │       └── application.yml
    │   │   │   │   └── test
    │   │   │   │       └── java
    │   │   │   └── target
    │   │   │       ├── classes
    │   │   │       │   ├── application-dev.yml
    │   │   │       │   ├── application-pro.yml
    │   │   │       │   ├── application.yml
    │   │   │       │   └── com
    │   │   │       │       └── bjsxt
    │   │   │       │           └── DoctorApplication.class
    │   │   │       └── generated-sources
    │   │   │           └── annotations
    │   │   ├── pom.xml
    │   │   └── src
    │   │       ├── main
    │   │       │   ├── java
    │   │       │   └── resources
    │   │       └── test
    │   │           └── java
    │   ├── his-erp
    │   │   ├── erp-api
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── erp-domain
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── erp-mapper
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── erp-service
    │   │   │   ├── pom.xml
    │   │   │   ├── src
    │   │   │   │   ├── main
    │   │   │   │   │   ├── java
    │   │   │   │   │   │   └── com
    │   │   │   │   │   │       └── bjsxt
    │   │   │   │   │   │           └── ErpApplication.java
    │   │   │   │   │   └── resources
    │   │   │   │   │       ├── application-dev.yml
    │   │   │   │   │       ├── application-pro.yml
    │   │   │   │   │       └── application.yml
    │   │   │   │   └── test
    │   │   │   │       └── java
    │   │   │   └── target
    │   │   │       ├── classes
    │   │   │       │   ├── application-dev.yml
    │   │   │       │   ├── application-pro.yml
    │   │   │       │   ├── application.yml
    │   │   │       │   └── com
    │   │   │       │       └── bjsxt
    │   │   │       │           └── ErpApplication.class
    │   │   │       └── generated-sources
    │   │   │           └── annotations
    │   │   ├── pom.xml
    │   │   └── src
    │   │       ├── main
    │   │       │   ├── java
    │   │       │   └── resources
    │   │       └── test
    │   │           └── java
    │   ├── his-statistics
    │   │   ├── pom.xml
    │   │   ├── src
    │   │   │   ├── main
    │   │   │   │   ├── java
    │   │   │   │   └── resources
    │   │   │   └── test
    │   │   │       └── java
    │   │   ├── statistics-api
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── statistics-domain
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── statistics-mapper
    │   │   │   ├── pom.xml
    │   │   │   ├── src
    │   │   │   │   ├── main
    │   │   │   │   │   ├── java
    │   │   │   │   │   └── resources
    │   │   │   │   └── test
    │   │   │   │       └── java
    │   │   │   └── statistics-mapper.iml
    │   │   └── statistics-service
    │   │       ├── pom.xml
    │   │       ├── src
    │   │       │   ├── main
    │   │       │   │   ├── java
    │   │       │   │   │   └── com
    │   │       │   │   │       └── bjsxt
    │   │       │   │   │           └── StatisticsApplication.java
    │   │       │   │   └── resources
    │   │       │   │       ├── application-dev.yml
    │   │       │   │       ├── application-pro.yml
    │   │       │   │       └── application.yml
    │   │       │   └── test
    │   │       │       └── java
    │   │       └── target
    │   │           ├── classes
    │   │           │   ├── application-dev.yml
    │   │           │   ├── application-pro.yml
    │   │           │   ├── application.yml
    │   │           │   └── com
    │   │           │       └── bjsxt
    │   │           │           └── StatisticsApplication.class
    │   │           └── generated-sources
    │   │               └── annotations
    │   ├── his-system
    │   │   ├── pom.xml
    │   │   ├── src
    │   │   │   ├── main
    │   │   │   │   ├── java
    │   │   │   │   └── resources
    │   │   │   └── test
    │   │   │       └── java
    │   │   ├── system-api
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── system-domain
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── system-mapper
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   ├── system-service
    │   │   │   ├── pom.xml
    │   │   │   └── src
    │   │   │       ├── main
    │   │   │       │   ├── java
    │   │   │       │   └── resources
    │   │   │       └── test
    │   │   │           └── java
    │   │   └── system-web
    │   │       ├── pom.xml
    │   │       ├── src
    │   │       │   ├── main
    │   │       │   │   ├── java
    │   │       │   │   │   └── com
    │   │       │   │   │       └── bjsxt
    │   │       │   │   │           └── SystemApplication.java
    │   │       │   │   └── resources
    │   │       │   │       ├── application-dev.yml
    │   │       │   │       ├── application-pro.yml
    │   │       │   │       └── application.yml
    │   │       │   └── test
    │   │       │       └── java
    │   │       └── target
    │   │           ├── classes
    │   │           │   ├── application-dev.yml
    │   │           │   ├── application-pro.yml
    │   │           │   ├── application.yml
    │   │           │   └── com
    │   │           │       └── bjsxt
    │   │           │           └── SystemApplication.class
    │   │           └── generated-sources
    │   │               └── annotations
    │   ├── open-his.iml
    │   └── pom.xml
    └── open-his-ui
        ├── LICENSE
        ├── README.zh-CN.md
        ├── babel.config.js
        ├── build
        │   └── index.js
        ├── jest.config.js
        ├── jsconfig.json
        ├── mock
        │   ├── article.js
        │   ├── index.js
        │   ├── mock-server.js
        │   ├── remote-search.js
        │   ├── role
        │   │   ├── index.js
        │   │   └── routes.js
        │   ├── user.js
        │   └── utils.js
        ├── new
        ├── package-lock.json
        ├── package.json
        ├── plopfile.js
        ├── postcss.config.js
        ├── public
        │   ├── favicon.ico
        │   └── index.html
        ├── src
        │   ├── App.vue
        │   ├── api
        │   │   ├── article.js
        │   │   ├── qiniu.js
        │   │   ├── remote-search.js
        │   │   ├── role.js
        │   │   └── user.js
        │   ├── assets
        │   │   ├── 401_images
        │   │   │   └── 401.gif
        │   │   ├── 404_images
        │   │   │   ├── 404.png
        │   │   │   └── 404_cloud.png
        │   │   └── custom-theme
        │   │       ├── fonts
        │   │       │   ├── element-icons.ttf
        │   │       │   └── element-icons.woff
        │   │       └── index.css
        │   ├── components
        │   │   ├── BackToTop
        │   │   │   └── index.vue
        │   │   ├── Breadcrumb
        │   │   │   └── index.vue
        │   │   ├── Charts
        │   │   │   ├── Keyboard.vue
        │   │   │   ├── LineMarker.vue
        │   │   │   ├── MixChart.vue
        │   │   │   └── mixins
        │   │   │       └── resize.js
        │   │   ├── DndList
        │   │   │   └── index.vue
        │   │   ├── DragSelect
        │   │   │   └── index.vue
        │   │   ├── Dropzone
        │   │   │   └── index.vue
        │   │   ├── ErrorLog
        │   │   │   └── index.vue
        │   │   ├── GithubCorner
        │   │   │   └── index.vue
        │   │   ├── Hamburger
        │   │   │   └── index.vue
        │   │   ├── HeaderSearch
        │   │   │   └── index.vue
        │   │   ├── ImageCropper
        │   │   │   ├── index.vue
        │   │   │   └── utils
        │   │   │       ├── data2blob.js
        │   │   │       ├── effectRipple.js
        │   │   │       ├── language.js
        │   │   │       └── mimes.js
        │   │   ├── JsonEditor
        │   │   │   └── index.vue
        │   │   ├── Kanban
        │   │   │   └── index.vue
        │   │   ├── MDinput
        │   │   │   └── index.vue
        │   │   ├── MarkdownEditor
        │   │   │   ├── default-options.js
        │   │   │   └── index.vue
        │   │   ├── Pagination
        │   │   │   └── index.vue
        │   │   ├── PanThumb
        │   │   │   └── index.vue
        │   │   ├── RightPanel
        │   │   │   └── index.vue
        │   │   ├── Screenfull
        │   │   │   └── index.vue
        │   │   ├── Share
        │   │   │   └── DropdownMenu.vue
        │   │   ├── SizeSelect
        │   │   │   └── index.vue
        │   │   ├── Sticky
        │   │   │   └── index.vue
        │   │   ├── SvgIcon
        │   │   │   └── index.vue
        │   │   ├── TextHoverEffect
        │   │   │   └── Mallki.vue
        │   │   ├── ThemePicker
        │   │   │   └── index.vue
        │   │   ├── Tinymce
        │   │   │   ├── components
        │   │   │   │   └── EditorImage.vue
        │   │   │   ├── dynamicLoadScript.js
        │   │   │   ├── index.vue
        │   │   │   ├── plugins.js
        │   │   │   └── toolbar.js
        │   │   ├── Upload
        │   │   │   ├── SingleImage.vue
        │   │   │   ├── SingleImage2.vue
        │   │   │   └── SingleImage3.vue
        │   │   └── UploadExcel
        │   │       └── index.vue
        │   ├── directive
        │   │   ├── clipboard
        │   │   │   ├── clipboard.js
        │   │   │   └── index.js
        │   │   ├── el-drag-dialog
        │   │   │   ├── drag.js
        │   │   │   └── index.js
        │   │   ├── el-table
        │   │   │   ├── adaptive.js
        │   │   │   └── index.js
        │   │   ├── permission
        │   │   │   ├── index.js
        │   │   │   └── permission.js
        │   │   ├── sticky.js
        │   │   └── waves
        │   │       ├── index.js
        │   │       ├── waves.css
        │   │       └── waves.js
        │   ├── filters
        │   │   └── index.js
        │   ├── icons
        │   │   ├── index.js
        │   │   ├── svg
        │   │   │   ├── 404.svg
        │   │   │   ├── bug.svg
        │   │   │   ├── chart.svg
        │   │   │   ├── clipboard.svg
        │   │   │   ├── component.svg
        │   │   │   ├── dashboard.svg
        │   │   │   ├── documentation.svg
        │   │   │   ├── drag.svg
        │   │   │   ├── edit.svg
        │   │   │   ├── education.svg
        │   │   │   ├── email.svg
        │   │   │   ├── example.svg
        │   │   │   ├── excel.svg
        │   │   │   ├── exit-fullscreen.svg
        │   │   │   ├── eye-open.svg
        │   │   │   ├── eye.svg
        │   │   │   ├── form.svg
        │   │   │   ├── fullscreen.svg
        │   │   │   ├── guide.svg
        │   │   │   ├── icon.svg
        │   │   │   ├── international.svg
        │   │   │   ├── language.svg
        │   │   │   ├── link.svg
        │   │   │   ├── list.svg
        │   │   │   ├── lock.svg
        │   │   │   ├── message.svg
        │   │   │   ├── money.svg
        │   │   │   ├── nested.svg
        │   │   │   ├── password.svg
        │   │   │   ├── pdf.svg
        │   │   │   ├── people.svg
        │   │   │   ├── peoples.svg
        │   │   │   ├── qq.svg
        │   │   │   ├── search.svg
        │   │   │   ├── shopping.svg
        │   │   │   ├── size.svg
        │   │   │   ├── skill.svg
        │   │   │   ├── star.svg
        │   │   │   ├── tab.svg
        │   │   │   ├── table.svg
        │   │   │   ├── theme.svg
        │   │   │   ├── tree-table.svg
        │   │   │   ├── tree.svg
        │   │   │   ├── user.svg
        │   │   │   ├── wechat.svg
        │   │   │   └── zip.svg
        │   │   └── svgo.yml
        │   ├── layout
        │   │   ├── components
        │   │   │   ├── AppMain.vue
        │   │   │   ├── Navbar.vue
        │   │   │   ├── Settings
        │   │   │   │   └── index.vue
        │   │   │   ├── Sidebar
        │   │   │   │   ├── FixiOSBug.js
        │   │   │   │   ├── Item.vue
        │   │   │   │   ├── Link.vue
        │   │   │   │   ├── Logo.vue
        │   │   │   │   ├── SidebarItem.vue
        │   │   │   │   └── index.vue
        │   │   │   ├── TagsView
        │   │   │   │   ├── ScrollPane.vue
        │   │   │   │   └── index.vue
        │   │   │   └── index.js
        │   │   ├── index.vue
        │   │   └── mixin
        │   │       └── ResizeHandler.js
        │   ├── main.js
        │   ├── permission.js
        │   ├── router
        │   │   ├── index.js
        │   │   └── modules
        │   │       ├── charts.js
        │   │       ├── components.js
        │   │       ├── nested.js
        │   │       └── table.js
        │   ├── settings.js
        │   ├── store
        │   │   ├── getters.js
        │   │   ├── index.js
        │   │   └── modules
        │   │       ├── app.js
        │   │       ├── errorLog.js
        │   │       ├── permission.js
        │   │       ├── settings.js
        │   │       ├── tagsView.js
        │   │       └── user.js
        │   ├── styles
        │   │   ├── btn.scss
        │   │   ├── element-ui.scss
        │   │   ├── element-variables.scss
        │   │   ├── index.scss
        │   │   ├── mixin.scss
        │   │   ├── sidebar.scss
        │   │   ├── transition.scss
        │   │   └── variables.scss
        │   ├── utils
        │   │   ├── auth.js
        │   │   ├── clipboard.js
        │   │   ├── error-log.js
        │   │   ├── get-page-title.js
        │   │   ├── index.js
        │   │   ├── open-window.js
        │   │   ├── permission.js
        │   │   ├── request.js
        │   │   ├── scroll-to.js
        │   │   └── validate.js
        │   ├── vendor
        │   │   ├── Export2Excel.js
        │   │   └── Export2Zip.js
        │   └── views
        │       ├── charts
        │       │   ├── keyboard.vue
        │       │   ├── line.vue
        │       │   └── mix-chart.vue
        │       ├── clipboard
        │       │   └── index.vue
        │       ├── components-demo
        │       │   ├── avatar-upload.vue
        │       │   ├── back-to-top.vue
        │       │   ├── count-to.vue
        │       │   ├── dnd-list.vue
        │       │   ├── drag-dialog.vue
        │       │   ├── drag-kanban.vue
        │       │   ├── drag-select.vue
        │       │   ├── dropzone.vue
        │       │   ├── json-editor.vue
        │       │   ├── markdown.vue
        │       │   ├── mixin.vue
        │       │   ├── split-pane.vue
        │       │   ├── sticky.vue
        │       │   └── tinymce.vue
        │       ├── dashboard
        │       │   ├── admin
        │       │   │   ├── components
        │       │   │   │   ├── BarChart.vue
        │       │   │   │   ├── BoxCard.vue
        │       │   │   │   ├── LineChart.vue
        │       │   │   │   ├── PanelGroup.vue
        │       │   │   │   ├── PieChart.vue
        │       │   │   │   ├── RaddarChart.vue
        │       │   │   │   ├── TodoList
        │       │   │   │   │   ├── Todo.vue
        │       │   │   │   │   ├── index.scss
        │       │   │   │   │   └── index.vue
        │       │   │   │   ├── TransactionTable.vue
        │       │   │   │   └── mixins
        │       │   │   │       └── resize.js
        │       │   │   └── index.vue
        │       │   ├── editor
        │       │   │   └── index.vue
        │       │   └── index.vue
        │       ├── error-page
        │       │   ├── 401.vue
        │       │   └── 404.vue
        │       ├── example
        │       │   ├── components
        │       │   │   ├── ArticleDetail.vue
        │       │   │   ├── Dropdown
        │       │   │   │   ├── Comment.vue
        │       │   │   │   ├── Platform.vue
        │       │   │   │   ├── SourceUrl.vue
        │       │   │   │   └── index.js
        │       │   │   └── Warning.vue
        │       │   ├── create.vue
        │       │   ├── edit.vue
        │       │   └── list.vue
        │       ├── excel
        │       │   ├── components
        │       │   │   ├── AutoWidthOption.vue
        │       │   │   ├── BookTypeOption.vue
        │       │   │   └── FilenameOption.vue
        │       │   ├── export-excel.vue
        │       │   ├── merge-header.vue
        │       │   ├── select-excel.vue
        │       │   └── upload-excel.vue
        │       ├── guide
        │       │   ├── index.vue
        │       │   └── steps.js
        │       ├── icons
        │       │   ├── element-icons.js
        │       │   ├── index.vue
        │       │   └── svg-icons.js
        │       ├── login
        │       │   ├── auth-redirect.vue
        │       │   ├── components
        │       │   │   └── SocialSignin.vue
        │       │   └── index.vue
        │       ├── permission
        │       │   ├── components
        │       │   │   └── SwitchRoles.vue
        │       │   ├── directive.vue
        │       │   ├── page.vue
        │       │   └── role.vue
        │       ├── redirect
        │       │   └── index.vue
        │       ├── tab
        │       │   ├── components
        │       │   │   └── TabPane.vue
        │       │   └── index.vue
        │       ├── table
        │       │   ├── complex-table.vue
        │       │   ├── drag-table.vue
        │       │   ├── dynamic-table
        │       │   │   ├── components
        │       │   │   │   ├── FixedThead.vue
        │       │   │   │   └── UnfixedThead.vue
        │       │   │   └── index.vue
        │       │   └── inline-edit-table.vue
        │       ├── theme
        │       │   └── index.vue
        │       └── zip
        │           └── index.vue
        ├── tests
        │   └── unit
        │       ├── components
        │       │   ├── Hamburger.spec.js
        │       │   └── SvgIcon.spec.js
        │       └── utils
        │           ├── formatTime.spec.js
        │           ├── param2Obj.spec.js
        │           ├── parseTime.spec.js
        │           └── validate.spec.js
        └── vue.config.js

288 directories, 325 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复