欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

uniapp+php 健康信息

介绍 评论 失效链接反馈

【例子介绍】uniapp php 健康信息

【相关图片】

from clipboard

【源码结构】

.
├── uniapp php 健康信息_附件资料和笔记.rar
└── 附件资料和笔记
    ├── dcloud-xinguan2020-xuesheng-master.zip
    ├── image
    │   ├── index.png
    │   ├── index_a.png
    │   ├── info.png
    │   └── info_a.png
    ├── image-icon.rar
    ├── tp
    │   ├── CHANGELOG.md
    │   ├── LICENSE.txt
    │   ├── README.md
    │   ├── application
    │   │   ├── command.php
    │   │   ├── common.php
    │   │   ├── index
    │   │   │   └── controller
    │   │   │       └── Index.php
    │   │   ├── provider.php
    │   │   └── tags.php
    │   ├── build.php
    │   ├── composer.json
    │   ├── composer.lock
    │   ├── config
    │   │   ├── app.php
    │   │   ├── cache.php
    │   │   ├── console.php
    │   │   ├── cookie.php
    │   │   ├── database.php
    │   │   ├── log.php
    │   │   ├── middleware.php
    │   │   ├── session.php
    │   │   ├── template.php
    │   │   └── trace.php
    │   ├── extend
    │   ├── public
    │   │   ├── favicon.ico
    │   │   ├── index.php
    │   │   ├── robots.txt
    │   │   ├── router.php
    │   │   └── static
    │   ├── route
    │   │   └── route.php
    │   ├── runtime
    │   ├── think
    │   ├── thinkphp
    │   │   ├── CONTRIBUTING.md
    │   │   ├── LICENSE.txt
    │   │   ├── README.md
    │   │   ├── base.php
    │   │   ├── composer.json
    │   │   ├── convention.php
    │   │   ├── helper.php
    │   │   ├── lang
    │   │   │   └── zh-cn.php
    │   │   ├── library
    │   │   │   ├── think
    │   │   │   │   ├── App.php
    │   │   │   │   ├── Build.php
    │   │   │   │   ├── Cache.php
    │   │   │   │   ├── Collection.php
    │   │   │   │   ├── Config.php
    │   │   │   │   ├── Console.php
    │   │   │   │   ├── Container.php
    │   │   │   │   ├── Controller.php
    │   │   │   │   ├── Cookie.php
    │   │   │   │   ├── Db.php
    │   │   │   │   ├── Debug.php
    │   │   │   │   ├── Env.php
    │   │   │   │   ├── Error.php
    │   │   │   │   ├── Exception.php
    │   │   │   │   ├── Facade.php
    │   │   │   │   ├── File.php
    │   │   │   │   ├── Hook.php
    │   │   │   │   ├── Lang.php
    │   │   │   │   ├── Loader.php
    │   │   │   │   ├── Log.php
    │   │   │   │   ├── Middleware.php
    │   │   │   │   ├── Model.php
    │   │   │   │   ├── Paginator.php
    │   │   │   │   ├── Process.php
    │   │   │   │   ├── Request.php
    │   │   │   │   ├── Response.php
    │   │   │   │   ├── Route.php
    │   │   │   │   ├── Session.php
    │   │   │   │   ├── Template.php
    │   │   │   │   ├── Url.php
    │   │   │   │   ├── Validate.php
    │   │   │   │   ├── View.php
    │   │   │   │   ├── cache
    │   │   │   │   │   ├── Driver.php
    │   │   │   │   │   └── driver
    │   │   │   │   │       ├── File.php
    │   │   │   │   │       ├── Lite.php
    │   │   │   │   │       ├── Memcache.php
    │   │   │   │   │       ├── Memcached.php
    │   │   │   │   │       ├── Redis.php
    │   │   │   │   │       ├── Sqlite.php
    │   │   │   │   │       ├── Wincache.php
    │   │   │   │   │       └── Xcache.php
    │   │   │   │   ├── config
    │   │   │   │   │   └── driver
    │   │   │   │   │       ├── Ini.php
    │   │   │   │   │       ├── Json.php
    │   │   │   │   │       └── Xml.php
    │   │   │   │   ├── console
    │   │   │   │   │   ├── Command.php
    │   │   │   │   │   ├── Input.php
    │   │   │   │   │   ├── LICENSE
    │   │   │   │   │   ├── Output.php
    │   │   │   │   │   ├── Table.php
    │   │   │   │   │   ├── bin
    │   │   │   │   │   │   ├── README.md
    │   │   │   │   │   │   └── hiddeninput.exe
    │   │   │   │   │   ├── command
    │   │   │   │   │   │   ├── Build.php
    │   │   │   │   │   │   ├── Clear.php
    │   │   │   │   │   │   ├── Help.php
    │   │   │   │   │   │   ├── Lists.php
    │   │   │   │   │   │   ├── Make.php
    │   │   │   │   │   │   ├── RouteList.php
    │   │   │   │   │   │   ├── RunServer.php
    │   │   │   │   │   │   ├── Version.php
    │   │   │   │   │   │   ├── make
    │   │   │   │   │   │   │   ├── Command.php
    │   │   │   │   │   │   │   ├── Controller.php
    │   │   │   │   │   │   │   ├── Middleware.php
    │   │   │   │   │   │   │   ├── Model.php
    │   │   │   │   │   │   │   ├── Validate.php
    │   │   │   │   │   │   │   └── stubs
    │   │   │   │   │   │   │       ├── command.stub
    │   │   │   │   │   │   │       ├── controller.api.stub
    │   │   │   │   │   │   │       ├── controller.plain.stub
    │   │   │   │   │   │   │       ├── controller.stub
    │   │   │   │   │   │   │       ├── middleware.stub
    │   │   │   │   │   │   │       ├── model.stub
    │   │   │   │   │   │   │       └── validate.stub
    │   │   │   │   │   │   └── optimize
    │   │   │   │   │   │       ├── Autoload.php
    │   │   │   │   │   │       ├── Config.php
    │   │   │   │   │   │       ├── Route.php
    │   │   │   │   │   │       └── Schema.php
    │   │   │   │   │   ├── input
    │   │   │   │   │   │   ├── Argument.php
    │   │   │   │   │   │   ├── Definition.php
    │   │   │   │   │   │   └── Option.php
    │   │   │   │   │   └── output
    │   │   │   │   │       ├── Ask.php
    │   │   │   │   │       ├── Descriptor.php
    │   │   │   │   │       ├── Formatter.php
    │   │   │   │   │       ├── Question.php
    │   │   │   │   │       ├── descriptor
    │   │   │   │   │       │   └── Console.php
    │   │   │   │   │       ├── driver
    │   │   │   │   │       │   ├── Buffer.php
    │   │   │   │   │       │   ├── Console.php
    │   │   │   │   │       │   └── Nothing.php
    │   │   │   │   │       ├── formatter
    │   │   │   │   │       │   ├── Stack.php
    │   │   │   │   │       │   └── Style.php
    │   │   │   │   │       └── question
    │   │   │   │   │           ├── Choice.php
    │   │   │   │   │           └── Confirmation.php
    │   │   │   │   ├── db
    │   │   │   │   │   ├── Builder.php
    │   │   │   │   │   ├── Connection.php
    │   │   │   │   │   ├── Expression.php
    │   │   │   │   │   ├── Query.php
    │   │   │   │   │   ├── Where.php
    │   │   │   │   │   ├── builder
    │   │   │   │   │   │   ├── Mysql.php
    │   │   │   │   │   │   ├── Pgsql.php
    │   │   │   │   │   │   ├── Sqlite.php
    │   │   │   │   │   │   └── Sqlsrv.php
    │   │   │   │   │   ├── connector
    │   │   │   │   │   │   ├── Mysql.php
    │   │   │   │   │   │   ├── Pgsql.php
    │   │   │   │   │   │   ├── Sqlite.php
    │   │   │   │   │   │   ├── Sqlsrv.php
    │   │   │   │   │   │   └── pgsql.sql
    │   │   │   │   │   └── exception
    │   │   │   │   │       ├── BindParamException.php
    │   │   │   │   │       ├── DataNotFoundException.php
    │   │   │   │   │       └── ModelNotFoundException.php
    │   │   │   │   ├── debug
    │   │   │   │   │   ├── Console.php
    │   │   │   │   │   └── Html.php
    │   │   │   │   ├── exception
    │   │   │   │   │   ├── ClassNotFoundException.php
    │   │   │   │   │   ├── DbException.php
    │   │   │   │   │   ├── ErrorException.php
    │   │   │   │   │   ├── Handle.php
    │   │   │   │   │   ├── HttpException.php
    │   │   │   │   │   ├── HttpResponseException.php
    │   │   │   │   │   ├── PDOException.php
    │   │   │   │   │   ├── RouteNotFoundException.php
    │   │   │   │   │   ├── TemplateNotFoundException.php
    │   │   │   │   │   ├── ThrowableError.php
    │   │   │   │   │   └── ValidateException.php
    │   │   │   │   ├── facade
    │   │   │   │   │   ├── App.php
    │   │   │   │   │   ├── Build.php
    │   │   │   │   │   ├── Cache.php
    │   │   │   │   │   ├── Config.php
    │   │   │   │   │   ├── Cookie.php
    │   │   │   │   │   ├── Debug.php
    │   │   │   │   │   ├── Env.php
    │   │   │   │   │   ├── Hook.php
    │   │   │   │   │   ├── Lang.php
    │   │   │   │   │   ├── Log.php
    │   │   │   │   │   ├── Middleware.php
    │   │   │   │   │   ├── Request.php
    │   │   │   │   │   ├── Response.php
    │   │   │   │   │   ├── Route.php
    │   │   │   │   │   ├── Session.php
    │   │   │   │   │   ├── Template.php
    │   │   │   │   │   ├── Url.php
    │   │   │   │   │   ├── Validate.php
    │   │   │   │   │   └── View.php
    │   │   │   │   ├── log
    │   │   │   │   │   └── driver
    │   │   │   │   │       ├── File.php
    │   │   │   │   │       └── Socket.php
    │   │   │   │   ├── model
    │   │   │   │   │   ├── Collection.php
    │   │   │   │   │   ├── Pivot.php
    │   │   │   │   │   ├── Relation.php
    │   │   │   │   │   ├── concern
    │   │   │   │   │   │   ├── Attribute.php
    │   │   │   │   │   │   ├── Conversion.php
    │   │   │   │   │   │   ├── ModelEvent.php
    │   │   │   │   │   │   ├── RelationShip.php
    │   │   │   │   │   │   ├── SoftDelete.php
    │   │   │   │   │   │   └── TimeStamp.php
    │   │   │   │   │   └── relation
    │   │   │   │   │       ├── BelongsTo.php
    │   │   │   │   │       ├── BelongsToMany.php
    │   │   │   │   │       ├── HasMany.php
    │   │   │   │   │       ├── HasManyThrough.php
    │   │   │   │   │       ├── HasOne.php
    │   │   │   │   │       ├── MorphMany.php
    │   │   │   │   │       ├── MorphOne.php
    │   │   │   │   │       ├── MorphTo.php
    │   │   │   │   │       └── OneToOne.php
    │   │   │   │   ├── paginator
    │   │   │   │   │   └── driver
    │   │   │   │   │       └── Bootstrap.php
    │   │   │   │   ├── process
    │   │   │   │   │   ├── Builder.php
    │   │   │   │   │   ├── Utils.php
    │   │   │   │   │   ├── exception
    │   │   │   │   │   │   ├── Faild.php
    │   │   │   │   │   │   ├── Failed.php
    │   │   │   │   │   │   └── Timeout.php
    │   │   │   │   │   └── pipes
    │   │   │   │   │       ├── Pipes.php
    │   │   │   │   │       ├── Unix.php
    │   │   │   │   │       └── Windows.php
    │   │   │   │   ├── response
    │   │   │   │   │   ├── Download.php
    │   │   │   │   │   ├── Json.php
    │   │   │   │   │   ├── Jsonp.php
    │   │   │   │   │   ├── Jump.php
    │   │   │   │   │   ├── Redirect.php
    │   │   │   │   │   ├── View.php
    │   │   │   │   │   └── Xml.php
    │   │   │   │   ├── route
    │   │   │   │   │   ├── AliasRule.php
    │   │   │   │   │   ├── Dispatch.php
    │   │   │   │   │   ├── Domain.php
    │   │   │   │   │   ├── Resource.php
    │   │   │   │   │   ├── Rule.php
    │   │   │   │   │   ├── RuleGroup.php
    │   │   │   │   │   ├── RuleItem.php
    │   │   │   │   │   ├── RuleName.php
    │   │   │   │   │   └── dispatch
    │   │   │   │   │       ├── Callback.php
    │   │   │   │   │       ├── Controller.php
    │   │   │   │   │       ├── Module.php
    │   │   │   │   │       ├── Redirect.php
    │   │   │   │   │       ├── Response.php
    │   │   │   │   │       ├── Url.php
    │   │   │   │   │       └── View.php
    │   │   │   │   ├── session
    │   │   │   │   │   └── driver
    │   │   │   │   │       ├── Memcache.php
    │   │   │   │   │       ├── Memcached.php
    │   │   │   │   │       └── Redis.php
    │   │   │   │   ├── template
    │   │   │   │   │   ├── TagLib.php
    │   │   │   │   │   ├── driver
    │   │   │   │   │   │   └── File.php
    │   │   │   │   │   └── taglib
    │   │   │   │   │       └── Cx.php
    │   │   │   │   ├── validate
    │   │   │   │   │   └── ValidateRule.php
    │   │   │   │   └── view
    │   │   │   │       └── driver
    │   │   │   │           ├── Php.php
    │   │   │   │           └── Think.php
    │   │   │   └── traits
    │   │   │       └── controller
    │   │   │           └── Jump.php
    │   │   ├── logo.png
    │   │   ├── phpunit.xml.dist
    │   │   └── tpl
    │   │       ├── default_index.tpl
    │   │       ├── dispatch_jump.tpl
    │   │       ├── page_trace.tpl
    │   │       └── think_exception.tpl
    │   └── vendor
    │       ├── autoload.php
    │       ├── composer
    │       │   ├── ClassLoader.php
    │       │   ├── LICENSE
    │       │   ├── autoload_classmap.php
    │       │   ├── autoload_namespaces.php
    │       │   ├── autoload_psr4.php
    │       │   ├── autoload_real.php
    │       │   ├── autoload_static.php
    │       │   └── installed.json
    │       └── topthink
    │           └── think-installer
    │               ├── composer.json
    │               └── src
    │                   ├── Plugin.php
    │                   ├── ThinkExtend.php
    │                   ├── ThinkFramework.php
    │                   └── ThinkTesting.php
    ├── tp.zip
    ├── xinguan2020-xuesheng
    │   ├── App.vue
    │   ├── LICENSE
    │   ├── README.md
    │   ├── cloudfunctions-aliyun
    │   │   ├── StudentBind
    │   │   │   └── index.js
    │   │   ├── addClassItem
    │   │   │   └── index.js
    │   │   ├── addGradeItem
    │   │   │   └── index.js
    │   │   ├── db_init.json
    │   │   ├── delClassItem
    │   │   │   └── index.js
    │   │   ├── delGradeItem
    │   │   │   └── index.js
    │   │   ├── getClass
    │   │   │   └── index.js
    │   │   ├── getClassList
    │   │   │   └── index.js
    │   │   ├── getGradeList
    │   │   │   └── index.js
    │   │   ├── getStudent
    │   │   │   └── index.js
    │   │   ├── login
    │   │   │   └── index.js
    │   │   ├── query_reports
    │   │   │   └── index.js
    │   │   ├── signIn
    │   │   │   └── index.js
    │   │   ├── signUp
    │   │   │   └── index.js
    │   │   ├── studentDay
    │   │   │   └── index.js
    │   │   ├── teacherBind
    │   │   │   └── index.js
    │   │   ├── upClassItem
    │   │   │   └── index.js
    │   │   ├── upGradeItem
    │   │   │   └── index.js
    │   │   ├── validateToken
    │   │   │   └── index.js
    │   │   └── wexinSingUp
    │   │       └── index.js
    │   ├── cloudfunctions-dev
    │   │   ├── README.md
    │   │   ├── build-api.js
    │   │   ├── package-lock.json
    │   │   ├── package.json
    │   │   └── src
    │   │       ├── api
    │   │       │   ├── login
    │   │       │   │   └── login.js
    │   │       │   ├── signIn
    │   │       │   │   └── signIn.js
    │   │       │   ├── signUp
    │   │       │   │   └── signUp.js
    │   │       │   ├── validateToken
    │   │       │   │   └── validateToken.js
    │   │       │   └── wexinSingUp
    │   │       │       └── wexinSingUp.js
    │   │       └── utils
    │   │           ├── constants.js
    │   │           ├── encryptPassword.js
    │   │           ├── getSchoolName.js
    │   │           ├── userTypeConfig.js
    │   │           └── validateToken.js
    │   ├── common
    │   │   ├── my.css
    │   │   └── uni.css
    │   ├── components
    │   │   ├── demo
    │   │   │   ├── demo.vue
    │   │   │   ├── styles
    │   │   │   │   └── icon.scss
    │   │   │   └── utils
    │   │   │       └── index.js
    │   │   ├── simple-address
    │   │   │   ├── city-data
    │   │   │   │   ├── area.js
    │   │   │   │   ├── city.js
    │   │   │   │   └── province.js
    │   │   │   └── simple-address.nvue
    │   │   ├── t-table
    │   │   │   ├── t-table.vue
    │   │   │   ├── t-td.vue
    │   │   │   ├── t-th.vue
    │   │   │   └── t-tr.vue
    │   │   ├── uni-badge
    │   │   │   └── uni-badge.vue
    │   │   ├── uni-calendar
    │   │   │   ├── calendar.js
    │   │   │   ├── uni-calendar-item.vue
    │   │   │   ├── uni-calendar.vue
    │   │   │   └── util.js
    │   │   ├── uni-card
    │   │   │   └── uni-card.vue
    │   │   ├── uni-collapse
    │   │   │   └── uni-collapse.vue
    │   │   ├── uni-collapse-item
    │   │   │   └── uni-collapse-item.vue
    │   │   ├── uni-combox
    │   │   │   └── uni-combox.vue
    │   │   ├── uni-countdown
    │   │   │   └── uni-countdown.vue
    │   │   ├── uni-drawer
    │   │   │   └── uni-drawer.vue
    │   │   ├── uni-fab
    │   │   │   └── uni-fab.vue
    │   │   ├── uni-fav
    │   │   │   └── uni-fav.vue
    │   │   ├── uni-goods-nav
    │   │   │   └── uni-goods-nav.vue
    │   │   ├── uni-grid
    │   │   │   └── uni-grid.vue
    │   │   ├── uni-grid-item
    │   │   │   └── uni-grid-item.vue
    │   │   ├── uni-icons
    │   │   │   ├── icons.js
    │   │   │   └── uni-icons.vue
    │   │   ├── uni-indexed-list
    │   │   │   ├── uni-indexed-list-item.vue
    │   │   │   └── uni-indexed-list.vue
    │   │   ├── uni-link
    │   │   │   └── uni-link.vue
    │   │   ├── uni-list
    │   │   │   ├── uni-list.vue
    │   │   │   ├── uni-refresh.vue
    │   │   │   └── uni-refresh.wxs
    │   │   ├── uni-list-item
    │   │   │   └── uni-list-item.vue
    │   │   ├── uni-load-more
    │   │   │   └── uni-load-more.vue
    │   │   ├── uni-nav-bar
    │   │   │   └── uni-nav-bar.vue
    │   │   ├── uni-notice-bar
    │   │   │   └── uni-notice-bar.vue
    │   │   ├── uni-number-box
    │   │   │   └── uni-number-box.vue
    │   │   ├── uni-pagination
    │   │   │   └── uni-pagination.vue
    │   │   ├── uni-popup
    │   │   │   └── uni-popup.vue
    │   │   ├── uni-rate
    │   │   │   └── uni-rate.vue
    │   │   ├── uni-search-bar
    │   │   │   └── uni-search-bar.vue
    │   │   ├── uni-section
    │   │   │   └── uni-section.vue
    │   │   ├── uni-segmented-control
    │   │   │   └── uni-segmented-control.vue
    │   │   ├── uni-status-bar
    │   │   │   └── uni-status-bar.vue
    │   │   ├── uni-steps
    │   │   │   └── uni-steps.vue
    │   │   ├── uni-swipe-action
    │   │   │   └── uni-swipe-action.vue
    │   │   ├── uni-swipe-action-item
    │   │   │   ├── bindingx.js
    │   │   │   ├── index.wxs
    │   │   │   ├── mpalipay.js
    │   │   │   ├── mpother.js
    │   │   │   ├── mpwxs.js
    │   │   │   └── uni-swipe-action-item.vue
    │   │   ├── uni-swiper-dot
    │   │   │   └── uni-swiper-dot.vue
    │   │   ├── uni-tag
    │   │   │   └── uni-tag.vue
    │   │   ├── uni-title
    │   │   │   └── uni-title.vue
    │   │   ├── uni-transition
    │   │   │   └── uni-transition.vue
    │   │   └── wuc-tab
    │   │       └── wuc-tab.vue
    │   ├── db.md
    │   ├── main.js
    │   ├── manifest.json
    │   ├── pages
    │   │   ├── administrator
    │   │   │   ├── admin_class.vue
    │   │   │   └── admin_grade.vue
    │   │   ├── index
    │   │   │   └── index.vue
    │   │   ├── list
    │   │   │   └── list.vue
    │   │   ├── login
    │   │   │   └── login.vue
    │   │   ├── register
    │   │   │   └── register.vue
    │   │   ├── student
    │   │   │   └── student_day.vue
    │   │   ├── student_bind
    │   │   │   └── student_bind.vue
    │   │   ├── teacher_bind
    │   │   │   └── teacher_bind.vue
    │   │   └── weixinRegister
    │   │       └── weixinRegister.vue
    │   ├── pages.json
    │   ├── static
    │   │   ├── logo.png
    │   │   └── uni.ttf
    │   └── uni.scss
    ├── 笔记
    │   ├── 1.png
    │   ├── 2.png
    │   ├── 3.png
    │   └── readme.md
    └── 笔记.rar

155 directories, 384 files

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

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


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

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