在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 超市进销存管理系统PHP源码

超市进销存管理系统PHP源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.55M
  • 下载次数:11
  • 浏览次数:171
  • 发布时间:2021-02-22
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
超市进销存管理系统PHP源码。 可直接运行。做毕业设计、课程设计或者想研究下技术的可以下载学习。需要更多资源的可以关注我。
【实例截图】
【核心代码】
ddde235d-7c04-45ad-a332-c156539b8449
└── supermarket-master
├── Home
│   ├── Common
│   │   └── common.php
│   ├── Conf
│   │   ├── config.php
│   │   ├── fields.php
│   │   ├── role.php
│   │   └── tags.php
│   ├── Lib
│   │   ├── Action
│   │   │   ├── BuyAction.class.php
│   │   │   ├── BuyRecordAction.class.php
│   │   │   ├── CategoryAction.class.php
│   │   │   ├── CheckAction.class.php
│   │   │   ├── GoodsAction.class.php
│   │   │   ├── IndexAction.class.php
│   │   │   ├── SellAction.class.php
│   │   │   ├── SellRecordAction.class.php
│   │   │   └── UserAction.class.php
│   │   ├── Behavior
│   │   │   └── CheckBehavior.class.php
│   │   ├── Helper
│   │   │   ├── Image.class.php
│   │   │   ├── Page.class.php
│   │   │   └── UploadFile.class.php
│   │   └── Model
│   │   ├── BuyRecordModel.class.php
│   │   ├── CategoryModel.class.php
│   │   ├── GoodsModel.class.php
│   │   ├── RoleModel.class.php
│   │   ├── SellRecordModel.class.php
│   │   └── UserModel.class.php
│   └── Tpl
│   ├── Buy
│   │   └── index.html
│   ├── Check
│   │   ├── chart.html
│   │   ├── index.html
│   │   └── reclist.html
│   ├── Goods
│   │   ├── editgoods.html
│   │   ├── goodslist.html
│   │   └── index.html
│   ├── Index
│   │   ├── account.html
│   │   └── login.html
│   ├── Public
│   │   ├── footer.html
│   │   ├── header.html
│   │   └── tab-header.html
│   ├── Sell
│   │   └── index.html
│   └── User
│   ├── edituser.html
│   ├── index.html
│   └── userlist.html
├── supermarket.sql
├── Test
│   ├── common.php
│   ├── conf.php
│   ├── Home
│   │   ├── BuyTest.php
│   │   ├── CategoryTest.php
│   │   ├── GoodsTest.php
│   │   ├── IndexTest.php
│   │   ├── SellTest.php
│   │   ├── suite.php
│   │   ├── temp
│   │   │   └── cookiefile
│   │   └── UserTest.php
│   ├── myTestCase.php
│   └── test_data.php
├── ThinkPHP
│   ├── Common
│   │   ├── common.php
│   │   ├── functions.php
│   │   └── runtime.php
│   ├── Conf
│   │   ├── alias.php
│   │   ├── convention.php
│   │   ├── debug.php
│   │   └── tags.php
│   ├── Extend
│   │   ├── Function
│   │   │   ├── eppCommon.php
│   │   │   └── extend.php
│   │   └── README.txt
│   ├── Lang
│   │   ├── en-us.php
│   │   └── zh-cn.php
│   ├── Lib
│   │   ├── Behavior
│   │   │   ├── CheckRouteBehavior.class.php
│   │   │   ├── ContentReplaceBehavior.class.php
│   │   │   ├── LocationTemplateBehavior.class.php
│   │   │   ├── ParseTemplateBehavior.class.php
│   │   │   ├── ReadHtmlCacheBehavior.class.php
│   │   │   ├── ShowPageTraceBehavior.class.php
│   │   │   ├── ShowRuntimeBehavior.class.php
│   │   │   ├── TokenBuildBehavior.class.php
│   │   │   └── WriteHtmlCacheBehavior.class.php
│   │   ├── Core
│   │   │   ├── Action.class.php
│   │   │   ├── App.class.php
│   │   │   ├── Behavior.class.php
│   │   │   ├── Cache.class.php
│   │   │   ├── Db.class.php
│   │   │   ├── Dispatcher.class.php
│   │   │   ├── Log.class.php
│   │   │   ├── Model.class.php
│   │   │   ├── Think.class.php
│   │   │   ├── ThinkException.class.php
│   │   │   ├── View.class.php
│   │   │   └── Widget.class.php
│   │   ├── Driver
│   │   │   ├── Cache
│   │   │   │   └── CacheFile.class.php
│   │   │   ├── Db
│   │   │   │   ├── DbMysql.class.php
│   │   │   │   └── DbMysqli.class.php
│   │   │   └── TagLib
│   │   │   └── TagLibCx.class.php
│   │   └── Template
│   │   ├── TagLib.class.php
│   │   └── ThinkTemplate.class.php
│   ├── LICENSE.txt
│   ├── logo.png
│   ├── README.txt
│   ├── ThinkPHP.php
│   └── Tpl
│   ├── default_index.tpl
│   ├── dispatch_jump.tpl
│   ├── page_trace.tpl
│   └── think_exception.tpl
└── Webroot
├── index.php
├── Public
│   ├── Css
│   │   ├── bootstrap
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-responsive.css
│   │   │   │   └── bootstrap-responsive.min.css
│   │   │   ├── img
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   └── glyphicons-halflings-white.png
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   └── bootstrap.min.js
│   │   ├── flat-ui
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   └── flat-ui.css
│   │   │   ├── flat-ui.css
│   │   │   ├── fonts
│   │   │   │   ├── Flat-UI-Icons-16.dev.svg
│   │   │   │   ├── Flat-UI-Icons-16.eot
│   │   │   │   ├── Flat-UI-Icons-16.svg
│   │   │   │   ├── Flat-UI-Icons-16.ttf
│   │   │   │   ├── Flat-UI-Icons-16.woff
│   │   │   │   ├── Flat-UI-Icons-24.dev.svg
│   │   │   │   ├── Flat-UI-Icons-24.eot
│   │   │   │   ├── Flat-UI-Icons-24.svg
│   │   │   │   ├── Flat-UI-Icons-24.ttf
│   │   │   │   └── Flat-UI-Icons-24.woff
│   │   │   ├── images
│   │   │   │   ├── checkbox-2x.png
│   │   │   │   ├── checkbox.png
│   │   │   │   ├── demo
│   │   │   │   │   ├── browser-2x.png
│   │   │   │   │   ├── browser-author.jpg
│   │   │   │   │   ├── browser-pic-1.jpg
│   │   │   │   │   ├── browser-pic-2.jpg
│   │   │   │   │   ├── browser-pic-3.jpg
│   │   │   │   │   ├── browser-pic-4.jpg
│   │   │   │   │   ├── browser-pic-5.jpg
│   │   │   │   │   ├── browser-pic-6.jpg
│   │   │   │   │   ├── browser.png
│   │   │   │   │   ├── html-icon.png
│   │   │   │   │   ├── logo-mask-2x.png
│   │   │   │   │   ├── logo-mask.png
│   │   │   │   │   └── video.jpg
│   │   │   │   ├── favicon.ico
│   │   │   │   ├── footer
│   │   │   │   │   └── logo.png
│   │   │   │   ├── illustrations
│   │   │   │   │   ├── bag.png
│   │   │   │   │   ├── book.png
│   │   │   │   │   ├── calendar.png
│   │   │   │   │   ├── clipboard.png
│   │   │   │   │   ├── colors.png
│   │   │   │   │   ├── compass.png
│   │   │   │   │   ├── gift.png
│   │   │   │   │   ├── infinity.png
│   │   │   │   │   ├── mail.png
│   │   │   │   │   ├── map.png
│   │   │   │   │   ├── paper.png
│   │   │   │   │   ├── retina.png
│   │   │   │   │   ├── share.png
│   │   │   │   │   └── time.png
│   │   │   │   ├── login
│   │   │   │   │   ├── icon.png
│   │   │   │   │   ├── imac-2x.png
│   │   │   │   │   └── imac.png
│   │   │   │   ├── pager
│   │   │   │   │   ├── next.png
│   │   │   │   │   └── previous.png
│   │   │   │   ├── radio-2x.png
│   │   │   │   ├── radio.png
│   │   │   │   ├── select
│   │   │   │   │   └── toggle.png
│   │   │   │   ├── tile
│   │   │   │   │   ├── ribbon-2x.png
│   │   │   │   │   └── ribbon.png
│   │   │   │   ├── todo
│   │   │   │   │   ├── done-2x.png
│   │   │   │   │   ├── done.png
│   │   │   │   │   ├── search-2x.png
│   │   │   │   │   ├── search.png
│   │   │   │   │   ├── todo-2x.png
│   │   │   │   │   └── todo.png
│   │   │   │   ├── toggle
│   │   │   │   │   ├── block-off.png
│   │   │   │   │   ├── block-on.png
│   │   │   │   │   ├── icon-off-2x.png
│   │   │   │   │   ├── icon-off.png
│   │   │   │   │   ├── icon-on-2x.png
│   │   │   │   │   └── icon-on.png
│   │   │   │   └── video
│   │   │   │   ├── fullscreen-2x.png
│   │   │   │   ├── fullscreen.png
│   │   │   │   ├── pause-2x.png
│   │   │   │   ├── pause.png
│   │   │   │   ├── play-2x.png
│   │   │   │   ├── play.png
│   │   │   │   ├── poster.jpg
│   │   │   │   ├── volume-full-2x.png
│   │   │   │   ├── volume-full.png
│   │   │   │   ├── volume-off-2x.png
│   │   │   │   └── volume-off.png
│   │   │   ├── index.html
│   │   │   ├── js
│   │   │   │   ├── application.js
│   │   │   │   ├── bootstrap-tooltip.js
│   │   │   │   ├── custom_checkbox_and_radio.js
│   │   │   │   ├── custom_radio.js
│   │   │   │   ├── html5shiv.js
│   │   │   │   ├── icon-font-ie7.js
│   │   │   │   ├── jquery-1.8.2.min.js
│   │   │   │   ├── jquery.dropkick-1.0.0.js
│   │   │   │   ├── jquery.placeholder.js
│   │   │   │   ├── jquery.tagsinput.js
│   │   │   │   ├── jquery-ui-1.10.0.custom.min.js
│   │   │   │   └── lte-ie7-24.js
│   │   │   ├── README.md
│   │   │   ├── sass
│   │   │   │   ├── _config.sass
│   │   │   │   ├── flat-ui.sass
│   │   │   │   ├── _icon-font-24.sass
│   │   │   │   ├── _icon-font.sass
│   │   │   │   ├── _mixins.sass
│   │   │   │   ├── modules
│   │   │   │   │   ├── _btn.sass
│   │   │   │   │   ├── _checkbox-and-radio.sass
│   │   │   │   │   ├── _demo.sass
│   │   │   │   │   ├── _footer.sass
│   │   │   │   │   ├── _input.sass
│   │   │   │   │   ├── _login.sass
│   │   │   │   │   ├── _navbar.sass
│   │   │   │   │   ├── _pager.sass
│   │   │   │   │   ├── _pagination.sass
│   │   │   │   │   ├── _palette.sass
│   │   │   │   │   ├── _progress.sass
│   │   │   │   │   ├── _select.sass
│   │   │   │   │   ├── _share.sass
│   │   │   │   │   ├── _tagsinput.sass
│   │   │   │   │   ├── _tile.sass
│   │   │   │   │   ├── _todo.sass
│   │   │   │   │   ├── _toggle.sass
│   │   │   │   │   ├── _tooltip.sass
│   │   │   │   │   ├── _type.sass
│   │   │   │   │   ├── _ui-slider.sass
│   │   │   │   │   └── _video.sass
│   │   │   │   └── _spaces.sass
│   │   │   └── Useful Links! (How To)
│   │   ├── less-1.3.3.min.js
│   │   └── main.css
│   ├── error.html
│   ├── images
│   │   └── login
│   │   ├── icon.png
│   │   └── imac.png
│   └── Js
│   ├── account.js
│   ├── buy.js
│   ├── check.js
│   ├── draw.js
│   ├── editgoods.js
│   ├── goods.js
│   ├── goodslist.js
│   ├── google
│   │   ├── corechart.js
│   │   ├── jsapi.js
│   │   └── tooltip.css
│   ├── jquery-1.9.1.min.js
│   ├── login.js
│   ├── public.js
│   ├── reclist.js
│   ├── sell.js
│   ├── user.js
│   └── userlist.js
└── Upload
└── Image
├── 1370441026.jpg
├── 1370441092.jpg
├── 1370441324.jpg
├── 1370441352.jpg
├── 1370441401.jpg
├── 1370441576.jpg
├── 1370441790.jpg
├── 1370442423.jpg
├── 1370442466.jpg
├── 1371019594.jpg
├── Nopic.jpg
├── test2.jpg
└── test.jpg

65 directories, 263 files

标签:

实例下载地址

超市进销存管理系统PHP源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警