├── .DS_Store ├── .gitattributes ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── My97DatePicker │ ├── My97DatePicker.htm │ ├── WdatePicker.js │ ├── calendar.js │ ├── config.js │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ └── 开发包 │ │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ │ ├── readme.txt │ │ └── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ ├── datepicker.css │ │ └── img.gif │ │ └── whyGreen │ │ ├── bg.jpg │ │ ├── datepicker.css │ │ └── img.gif ├── WEB-INF │ ├── applicationContext.xml │ ├── classes │ │ ├── com │ │ │ ├── action │ │ │ │ ├── UserAction.class │ │ │ │ ├── adminAction.class │ │ │ │ ├── buyAction.class │ │ │ │ ├── catelogAction.class │ │ │ │ ├── commentAction.class │ │ │ │ ├── gonggaoAction.class │ │ │ │ ├── goodsAction.class │ │ │ │ ├── indexAction.class │ │ │ │ ├── liuyanAction.class │ │ │ │ ├── xiaoshouAction$1.class │ │ │ │ ├── xiaoshouAction$2.class │ │ │ │ └── xiaoshouAction.class │ │ │ ├── dao │ │ │ │ ├── TAdminDAO.class │ │ │ │ ├── TCatelogDAO.class │ │ │ │ ├── TCommentDAO.class │ │ │ │ ├── TGonggaoDAO.class │ │ │ │ ├── TGoodsDAO.class │ │ │ │ ├── TLiuyanDAO.class │ │ │ │ ├── TOrderDAO$1.class │ │ │ │ ├── TOrderDAO.class │ │ │ │ ├── TOrderItemDAO$1.class │ │ │ │ ├── TOrderItemDAO$2.class │ │ │ │ ├── TOrderItemDAO.class │ │ │ │ └── TUserDAO.class │ │ │ ├── model │ │ │ │ ├── TAdmin.class │ │ │ │ ├── TAdmin.hbm.xml │ │ │ │ ├── TCatelog.class │ │ │ │ ├── TCatelog.hbm.xml │ │ │ │ ├── TComment.class │ │ │ │ ├── TComment.hbm.xml │ │ │ │ ├── TGonggao.class │ │ │ │ ├── TGonggao.hbm.xml │ │ │ │ ├── TGoods.class │ │ │ │ ├── TGoods.hbm.xml │ │ │ │ ├── TLiuyan.class │ │ │ │ ├── TLiuyan.hbm.xml │ │ │ │ ├── TOrder.class │ │ │ │ ├── TOrder.hbm.xml │ │ │ │ ├── TOrderItem.class │ │ │ │ ├── TOrderItem.hbm.xml │ │ │ │ ├── TUser.class │ │ │ │ └── TUser.hbm.xml │ │ │ ├── service │ │ │ │ ├── cartService.class │ │ │ │ ├── catelogService.class │ │ │ │ └── loginService.class │ │ │ └── util │ │ │ │ ├── Cart.class │ │ │ │ ├── Util.class │ │ │ │ ├── safeFileter.class │ │ │ │ └── upload.class │ │ ├── struts.properties │ │ └── struts.xml │ ├── dwr.xml │ ├── lib │ │ ├── antlr-2.7.6rc1.jar │ │ ├── asm-attrs.jar │ │ ├── asm.jar │ │ ├── c3p0-0.9.0.jar │ │ ├── c3p0-0.9.1.1.jar │ │ ├── cglib-2.1.3.jar │ │ ├── commons-attributes-api.jar │ │ ├── commons-attributes-compiler.jar │ │ ├── commons-collections-2.1.1.jar │ │ ├── commons-collections-3.2.jar │ │ ├── commons-dbcp.jar │ │ ├── commons-fileupload-1.2.1.jar │ │ ├── commons-io-1.3.2.jar │ │ ├── commons-lang.jar │ │ ├── commons-logging-1.0.4.jar │ │ ├── commons-pool-1.2.jar │ │ ├── connector.jar │ │ ├── cos.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── dwr.jar │ │ ├── ehcache-1.2.4.jar │ │ ├── fastjson-1.2.23.jar │ │ ├── freemarker-2.3.8.jar │ │ ├── freemarker.jar │ │ ├── hibernate3.jar │ │ ├── jakarta-oro-2.0.8.jar │ │ ├── java-core-2.4.1.jar │ │ ├── javaee.jar │ │ ├── jcommon-1.0.14.jar │ │ ├── jdbc2_0-stdext.jar │ │ ├── jdo2-api.jar │ │ ├── jotm.jar │ │ ├── jspsmartupload.jar │ │ ├── jstl-1.2.jar │ │ ├── jta.jar │ │ ├── liuliu.jar │ │ ├── log4j-1.2.14.jar │ │ ├── msbase.jar │ │ ├── mssqlserver.jar │ │ ├── msutil.jar │ │ ├── mysql-connector-java-5.0.4-bin.jar │ │ ├── ognl-2.6.11.jar │ │ ├── oro-2.0.8.jar │ │ ├── oscache-2.1.jar │ │ ├── persistence.jar │ │ ├── proxool-0.8.3.jar │ │ ├── slf4j-api-1.5.2.jar │ │ ├── slf4j-simple-1.5.2.jar │ │ ├── spring-beans.jar │ │ ├── spring-context.jar │ │ ├── spring-core.jar │ │ ├── spring-dao.jar │ │ ├── spring-hibernate3.jar │ │ ├── spring-jdbc.jar │ │ ├── spring-struts.jar │ │ ├── spring-tomcat-weaver.jar │ │ ├── spring-web.jar │ │ ├── spring-webmvc.jar │ │ ├── spring.jar │ │ ├── struts2-core-2.0.9.jar │ │ ├── struts2-spring-plugin-2.0.9.jar │ │ ├── xapool.jar │ │ ├── xml-apis.jar │ │ └── xwork-2.0.4.jar │ └── web.xml ├── admin │ ├── catelog │ │ ├── catelogAdd.jsp │ │ ├── catelogMana.jsp │ │ └── catelogUpdate.jsp │ ├── comment │ │ ├── commentMana.jsp │ │ └── commentReply.jsp │ ├── gonggao │ │ ├── gonggaoAdd.jsp │ │ ├── gonggaoAll.jsp │ │ ├── gonggaoDetail.jsp │ │ ├── gonggaoMana.jsp │ │ └── gonggaoUpdate.jsp │ ├── goods │ │ ├── goodsAdd.jsp │ │ ├── goodsDetailHou.jsp │ │ ├── goodsMana.jsp │ │ └── goodsUpdate.jsp │ ├── index.jsp │ ├── index │ │ └── sysPro.jsp │ ├── js │ │ └── list_nav.js │ ├── liuyan │ │ ├── huifuadd.jsp │ │ ├── liuyanAll.jsp │ │ └── liuyanMana.jsp │ ├── menu.jsp │ ├── order │ │ ├── orderDetail.jsp │ │ └── orderMana.jsp │ ├── top.jsp │ ├── user │ │ └── userMana.jsp │ ├── userinfo │ │ └── userPw.jsp │ └── xiaoshou │ │ ├── tongji.jsp │ │ └── xiaoshouMine.jsp ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ └── link │ │ │ ├── dialogs │ │ │ ├── anchor.js │ │ │ └── link.js │ │ │ └── images │ │ │ ├── anchor.png │ │ │ └── hidpi │ │ │ └── anchor.png │ ├── samples │ │ ├── css │ │ │ └── samples.css │ │ ├── img │ │ │ ├── github-top.png │ │ │ ├── header-bg.png │ │ │ ├── header-separator.png │ │ │ ├── logo.png │ │ │ └── navigation-tip.png │ │ ├── index.html │ │ ├── js │ │ │ ├── sample.js │ │ │ └── sf.js │ │ ├── old │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ ├── wysiwygarea │ │ │ │ └── fullpage.html │ │ │ └── xhtmlstyle.html │ │ └── toolbarconfigurator │ │ │ ├── css │ │ │ └── fontello.css │ │ │ ├── font │ │ │ ├── LICENSE.txt │ │ │ ├── config.json │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── abstracttoolbarmodifier.js │ │ │ ├── fulltoolbareditor.js │ │ │ ├── toolbarmodifier.js │ │ │ └── toolbartextmodifier.js │ │ │ └── lib │ │ │ └── codemirror │ │ │ ├── LICENSE │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── javascript.js │ │ │ ├── neo.css │ │ │ ├── show-hint.css │ │ │ └── show-hint.js │ ├── skins │ │ └── moono-lisa │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ └── styles.js ├── common │ ├── msg.jsp │ ├── msg1.jsp │ └── succeed.jsp ├── css │ ├── Common.css │ ├── base.css │ ├── bootstrap.css │ ├── component.css │ ├── etalage.css │ ├── sitegeneric08.css │ └── style.css ├── images │ ├── arrow.png │ ├── arrow2.gif │ ├── arrows.png │ ├── banner - ���� (2).png │ ├── banner - ���� (4).png │ ├── banner - ����.png │ ├── banner.231png │ ├── banner.png │ ├── c1.png │ ├── c2.png │ ├── c3.png │ ├── c4.png │ ├── close.png │ ├── close1.png │ ├── f_logo.png │ ├── grid_view.png │ ├── list_view.png │ ├── logo.png │ ├── menu.png │ ├── social.png │ ├── tick1.png │ └── zoom.png ├── img │ ├── 4.png │ ├── Car_icon_01.gif │ ├── Car_icon_02.gif │ ├── Car_icon_03.gif │ ├── arr3.gif │ ├── arr4.gif │ ├── arrfc.gif │ ├── arrl.gif │ ├── arrow.gif │ ├── arrr.gif │ ├── back.jpg │ ├── bank1.jpg │ ├── bank2.jpg │ ├── bank3.jpg │ ├── bank4.jpg │ ├── bank5.jpg │ ├── base.gif │ ├── bhj.jpg │ ├── book.gif │ ├── book1.gif │ ├── bottombg.gif │ ├── buy.jpg │ ├── cd.gif │ ├── circle.gif │ ├── cs-dh-bg.jpg │ ├── cs-foot-bg.jpg │ ├── cs-lan-dh-bg.jpg │ ├── cs-lv-dh-bg.jpg │ ├── cz.gif │ ├── delete_01.gif │ ├── dialogclose.gif │ ├── dl.gif │ ├── empty.gif │ ├── file_dir.gif │ ├── folder.gif │ ├── folderopen.gif │ ├── footbg.gif │ ├── globe.gif │ ├── goumai.jpg │ ├── gtk-del.png │ ├── gtk-sadd.png │ ├── head-mark3.gif │ ├── head-mark4.gif │ ├── ico1.gif │ ├── ico5.jpg │ ├── ico_2.gif │ ├── icon01.gif │ ├── icon04.gif │ ├── icon05.gif │ ├── icon06.gif │ ├── icon07.gif │ ├── imgfolder.gif │ ├── index_icon.gif │ ├── jia.gif │ ├── jian.gif │ ├── jixu.jpg │ ├── join.gif │ ├── joinbottom.gif │ ├── kabg.gif │ ├── lbg.jpg │ ├── left_bg.jpg │ ├── left_bg_bottom.jpg │ ├── line.gif │ ├── liu3718.jpg │ ├── liuyan.gif │ ├── loading.gif │ ├── loading32.gif │ ├── login.gif │ ├── login_03.gif │ ├── login_06.gif │ ├── login_07.gif │ ├── login_08.gif │ ├── login_09.gif │ ├── login_10.gif │ ├── login_11.gif │ ├── main_bottom.jpg │ ├── manage1.gif │ ├── me03.gif │ ├── menu-ex.png │ ├── menu_bg.gif │ ├── menu_bg.jpg │ ├── menu_bg_02.gif │ ├── menu_bottom.gif │ ├── menu_sep.jpg │ ├── menu_top.gif │ ├── menuarrow.gif │ ├── menubg.gif │ ├── menumember.gif │ ├── menusearch.gif │ ├── minus.gif │ ├── minusbottom.gif │ ├── msg2.jpg │ ├── msg_bg.jpg │ ├── musicfolder.gif │ ├── next.jpg │ ├── nolines_minus.gif │ ├── nolines_plus.gif │ ├── orderSub.jpg │ ├── page.gif │ ├── part-index.gif │ ├── plus.gif │ ├── plusbottom.gif │ ├── qingkong.jpg │ ├── question.gif │ ├── reg.gif │ ├── reservation01.jpg │ ├── search.gif │ ├── sp_bg.gif │ ├── tbg.jpg │ ├── timg.jpg │ ├── title-bg.gif │ ├── title_bg1.gif │ ├── top_bg.jpg │ ├── topbg.gif │ ├── topitembg.gif │ ├── topmenu_o.gif │ ├── topsearch_bg.gif │ ├── topsearch_submit.gif │ ├── trash.gif │ ├── wbg.gif │ ├── yuding.jpg │ ├── zj_arrow.gif │ └── zj_menu.gif ├── js │ ├── cbpViewModeSwitch.js │ ├── classie1.js │ ├── dtree.js │ ├── easyResponsiveTabs.js │ ├── echarts.js │ ├── jquery-1.11.1.min.js │ ├── jquery.etalage.min.js │ ├── jquery.flexisel.js │ ├── jquery.wmuSlider.js │ ├── popup.js │ └── public.js ├── login.jsp ├── loginSuccess.jsp ├── qiantai │ ├── catelog │ │ └── catelogAll.jsp │ ├── default.jsp │ ├── gonggao │ │ ├── gonggaoDetailQian.jsp │ │ └── gonggaoQian5.jsp │ ├── goods │ │ ├── goodsByCatelog.jsp │ │ └── goodsDetailQian.jsp │ ├── inc │ │ ├── incFoot.jsp │ │ ├── incLeft.jsp │ │ └── incTop.jsp │ ├── index.jsp │ ├── liuyan │ │ ├── liuyanAdd.jsp │ │ └── liuyanAll.jsp │ ├── myCart │ │ └── myCart.jsp │ ├── order │ │ ├── bank.jsp │ │ ├── kahao.jsp │ │ ├── myOrder.jsp │ │ ├── orderDetail.jsp │ │ ├── orderQueren.jsp │ │ └── orderSubmit.jsp │ ├── rili │ │ └── rili.jsp │ └── userinfo │ │ ├── userLogin.jsp │ │ ├── userReg.jsp │ │ └── userxinxi.jsp ├── updown │ └── updown.jsp └── upload │ ├── 1568197409024.jpg │ ├── 1568197760058.jpg │ ├── 1568197886501.jpg │ ├── 1568198046650.jpg │ ├── 1568198169395.jpg │ ├── 1568198313346.jpg │ ├── 1568213267135.jpg │ ├── 1615713693509.png │ ├── 1647419344137.jpg │ ├── 1647422882892.jpg │ ├── 1647505619931.png │ ├── upload.jsp │ └── upload_re.jsp └── src ├── com ├── action │ ├── UserAction.java │ ├── adminAction.java │ ├── buyAction.java │ ├── catelogAction.java │ ├── commentAction.java │ ├── gonggaoAction.java │ ├── goodsAction.java │ ├── indexAction.java │ ├── liuyanAction.java │ └── xiaoshouAction.java ├── dao │ ├── TAdminDAO.java │ ├── TCatelogDAO.java │ ├── TCommentDAO.java │ ├── TGonggaoDAO.java │ ├── TGoodsDAO.java │ ├── TLiuyanDAO.java │ ├── TOrderDAO.java │ ├── TOrderItemDAO.java │ └── TUserDAO.java ├── model │ ├── TAdmin.hbm.xml │ ├── TAdmin.java │ ├── TCatelog.hbm.xml │ ├── TCatelog.java │ ├── TComment.hbm.xml │ ├── TComment.java │ ├── TGonggao.hbm.xml │ ├── TGonggao.java │ ├── TGoods.hbm.xml │ ├── TGoods.java │ ├── TLiuyan.hbm.xml │ ├── TLiuyan.java │ ├── TOrder.hbm.xml │ ├── TOrder.java │ ├── TOrderItem.hbm.xml │ ├── TOrderItem.java │ ├── TUser.hbm.xml │ └── TUser.java ├── service │ ├── cartService.java │ ├── catelogService.java │ └── loginService.java └── util │ ├── Cart.java │ ├── Util.java │ ├── safeFileter.java │ └── upload.java ├── struts.properties └── struts.xml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | *.vue linguist-language=java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 全目录 2 | 3 | [更多系统、论文,供君选择 ~~>](https://www.yuque.com/wisebit/blog) 4 | 5 | # 293.BeautyShoppingMallManagementSystem 6 | 7 |

群: 983063232(入群获取sql文件)

8 |

QQ: 206157502(加好友获取sql文件)

9 | 10 |

293.美妆购物商城管理系统

11 | 12 | 13 | 14 |

15 | 16 | 17 | 18 | 19 |

20 | 21 | # 简介 22 | 23 | > 本代码来源于网络,仅供学习参考使用,请入群(983063232)后联系群主索要sql文件! 24 | > 25 | > 提供1.远程部署/2.修改代码/3.设计文档指导/4.框架代码讲解等服务 26 | > 27 | > 前端地址: http://localhost:8081/cosmetic/index.action 28 | > 29 | > 用户名: user 密码: 123456 30 | > 31 | > 后端管理地址: http://localhost:8081/cosmetic/login.jsp 32 | > 33 | > 管理员用户名: admin 密码: 123456 34 | > 35 | 36 | 37 | # 环境 38 | 39 | - IntelliJ IDEA 2021.3 40 | 41 | - Mysql 5.7.26 42 | 43 | - Tomcat 7.0.73 44 | 45 | - JDK 1.8 46 | 47 | 48 | 49 | 50 | 51 | ## 缩略图 52 | 53 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/0ee55804-3183-4fb9-864e-9a10b3e5a436.png) 54 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/cea63f74-5f0e-46b0-9e64-aadf88ebe1e6.png) 55 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/2d2fdfed-4b44-4976-8bd2-e1f24c801e2c.png) 56 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/3ecc6479-6aec-4bd9-a736-92418444dbb5.png) 57 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/a1429a71-5920-44c6-8cc2-34b6aa08be66.png) 58 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/5c8bfc4b-cc80-453c-b968-a179f54b91a2.png) 59 | 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/My97DatePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My97DatePicker 5 | 6 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/config.js: -------------------------------------------------------------------------------- 1 | var langList = 2 | [ 3 | {name:'en', charset:'UTF-8'}, 4 | {name:'zh-cn', charset:'UTF-8'}, 5 | {name:'zh-tw', charset:'UTF-8'} 6 | ]; 7 | 8 | var skinList = 9 | [ 10 | {name:'default', charset:'UTF-8'}, 11 | {name:'whyGreen', charset:'UTF-8'} 12 | ]; -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u786E\u5B9A", 10 | updateStr: "\u786E\u5B9A", 11 | timeStr: "\u65F6\u95F4", 12 | quickStr: "\u5FEB\u901F\u9009\u62E9", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u7BC4\u570D,\u9700\u8981\u64A4\u92B7\u55CE?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u78BA\u5B9A", 10 | updateStr: "\u78BA\u5B9A", 11 | timeStr: "\u6642\u9593", 12 | quickStr: "\u5FEB\u901F\u9078\u64C7", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u65BC\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/lang/zh-cn.js -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/lang/zh-tw.js -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/readme.txt -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/skin/datePicker.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/skin/default/datepicker.css -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/skin/default/img.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/My97DatePicker/开发包/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/UserAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/UserAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/adminAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/adminAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/buyAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/buyAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/catelogAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/catelogAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/commentAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/commentAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/gonggaoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/gonggaoAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/goodsAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/goodsAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/indexAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/indexAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/liuyanAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/liuyanAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/xiaoshouAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/xiaoshouAction$1.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/xiaoshouAction$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/xiaoshouAction$2.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/xiaoshouAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/action/xiaoshouAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TAdminDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TAdminDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TCatelogDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TCatelogDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TCommentDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TCommentDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TGonggaoDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TGonggaoDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TGoodsDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TGoodsDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TLiuyanDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TLiuyanDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TOrderDAO$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TOrderDAO$1.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TOrderDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TOrderDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TOrderItemDAO$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TOrderItemDAO$1.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TOrderItemDAO$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TOrderItemDAO$2.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TOrderItemDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TOrderItemDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/TUserDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/dao/TUserDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TAdmin.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TAdmin.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TCatelog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TCatelog.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TCatelog.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TComment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TComment.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TComment.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TGonggao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TGonggao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TGonggao.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TGoods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TGoods.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TLiuyan.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TLiuyan.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TLiuyan.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TOrder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TOrder.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TOrder.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TOrderItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TOrderItem.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TOrderItem.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/model/TUser.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/model/TUser.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/service/cartService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/service/cartService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/service/catelogService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/service/catelogService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/service/loginService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/service/loginService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/util/Cart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/util/Cart.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/util/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/util/Util.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/util/safeFileter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/util/safeFileter.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/util/upload.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/classes/com/util/upload.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/dwr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/antlr-2.7.6rc1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/antlr-2.7.6rc1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/asm-attrs.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/asm-attrs.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/asm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/asm.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/c3p0-0.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/c3p0-0.9.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/c3p0-0.9.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/c3p0-0.9.1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/cglib-2.1.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-attributes-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-attributes-api.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-attributes-compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-attributes-compiler.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-collections-2.1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-collections-3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-dbcp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-dbcp.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-io-1.3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-lang.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-lang.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging-1.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-logging-1.0.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-pool-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/commons-pool-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/connector.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/connector.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cos.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/cos.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dwr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/dwr.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ehcache-1.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/ehcache-1.2.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/fastjson-1.2.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/fastjson-1.2.23.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/freemarker-2.3.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/freemarker-2.3.8.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/freemarker.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/freemarker.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/hibernate3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jakarta-oro-2.0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jakarta-oro-2.0.8.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/java-core-2.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/java-core-2.4.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javaee.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/javaee.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jcommon-1.0.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jcommon-1.0.14.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jdbc2_0-stdext.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jdbc2_0-stdext.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jdo2-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jdo2-api.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jotm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jotm.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jspsmartupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jspsmartupload.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jta.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/jta.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/liuliu.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/liuliu.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/log4j-1.2.14.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/msbase.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/msbase.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mssqlserver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/mssqlserver.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/msutil.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/msutil.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.0.4-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/mysql-connector-java-5.0.4-bin.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ognl-2.6.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/ognl-2.6.11.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/oro-2.0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/oro-2.0.8.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/oscache-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/oscache-2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/persistence.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/persistence.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/proxool-0.8.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/proxool-0.8.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-api-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/slf4j-api-1.5.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-simple-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/slf4j-simple-1.5.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-beans.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-beans.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-context.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-core.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-dao.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-dao.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-hibernate3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-hibernate3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jdbc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-jdbc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-struts.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-struts.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-tomcat-weaver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-tomcat-weaver.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-web.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-web.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring-webmvc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/spring.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-core-2.0.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/struts2-core-2.0.9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-spring-plugin-2.0.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/struts2-spring-plugin-2.0.9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/xapool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/xapool.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/xml-apis.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/xml-apis.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/xwork-2.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/WEB-INF/lib/xwork-2.0.4.jar -------------------------------------------------------------------------------- /WebRoot/admin/comment/commentMana.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <%String path = request.getContextPath();%> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 30 | 31 | 32 | 33 | 36 | 37 | 38 |
${sta.index+1 } 25 | 【星级】${c.cstart } 26 | 【评价时间】${c.ctime }      【评价人】${c.user.userName } 27 | 回复 28 | 删除 29 |
34 | 【内容】${c.comment } 35 |
39 |
40 | 41 | 42 | -------------------------------------------------------------------------------- /WebRoot/admin/comment/commentReply.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <%@ page isELIgnored="false" %> 4 | 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 38 | 39 | 40 | 43 | 47 | 48 |
回复
32 | 内容: 33 | 35 | 36 | 37 |
41 |   42 | 44 |   45 |   46 |
49 |
50 | 51 | 52 | -------------------------------------------------------------------------------- /WebRoot/admin/gonggao/gonggaoDetail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ page isELIgnored="false" %> 3 | <%@ taglib prefix="s" uri="/struts-tags"%> 4 | <% 5 | String path = request.getContextPath(); 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 |
26 | 27 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /WebRoot/admin/goods/goodsDetailHou.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ page isELIgnored="false" %> 3 | <%@ taglib prefix="s" uri="/struts-tags"%> 4 | <% 5 | String path = request.getContextPath(); 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 |
27 | 28 |
31 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/admin/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=utf-8" language="java" errorPage="error.jsp" %> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /WebRoot/admin/index/sysPro.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/admin/index/sysPro.jsp -------------------------------------------------------------------------------- /WebRoot/admin/js/list_nav.js: -------------------------------------------------------------------------------- 1 | var t; 2 | 3 | t=outlookbar.addtitle('修改密码') 4 | outlookbar.additem('密码修改',t,'/cosmetic/admin/userinfo/userPw.jsp') 5 | 6 | t=outlookbar.addtitle('用户管理') 7 | outlookbar.additem('用户管理',t,'/cosmetic/userMana.action') 8 | 9 | t=outlookbar.addtitle('商品类别') 10 | outlookbar.additem('类别管理',t,'/cosmetic/catelogMana.action') 11 | outlookbar.additem('添加类别',t,'/cosmetic/admin/catelog/catelogAdd.jsp') 12 | 13 | t=outlookbar.addtitle('商品管理') 14 | outlookbar.additem('商品管理',t,'/cosmetic/goodsMana.action') 15 | 16 | t=outlookbar.addtitle('订单管理') 17 | outlookbar.additem('订单管理',t,'/cosmetic/xiaoshouMine.action') 18 | outlookbar.additem('订单统计',t,'/cosmetic/admin/xiaoshou/tongji.jsp') 19 | 20 | t=outlookbar.addtitle('留言管理') 21 | outlookbar.additem('留言管理',t,'/cosmetic/liuyanMana.action') 22 | 23 | t=outlookbar.addtitle('评价管理') 24 | outlookbar.additem('评价管理',t,'/cosmetic/commentMana.action') 25 | 26 | t=outlookbar.addtitle('退出系统') 27 | outlookbar.additem('安全退出',t,'/cosmetic/login.jsp') -------------------------------------------------------------------------------- /WebRoot/admin/liuyan/huifuadd.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | 6 | <% 7 | String path = request.getContextPath(); 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 | 32 | 38 | 39 | 40 | 41 | 44 | 45 |
回复内容 33 | 34 | 37 |
  42 | 43 |
46 |
47 | 48 | 49 | 50 | 54 | -------------------------------------------------------------------------------- /WebRoot/admin/top.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 22 | 23 | 24 | 25 |
26 | 27 |    TF美妆产品购物商城后台管理 28 | 29 | 30 |
31 | 32 | 33 | 50 | 51 |
34 | 35 | 36 | 37 | 47 | 48 |
38 | 39 | 欢迎您:管理员 40 | 41 | 42 | 欢迎您:${sessionScope.dianpu.loginname } 43 | 44 |               45 |     46 |
49 |
52 | 53 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/README.md: -------------------------------------------------------------------------------- 1 | # 全目录 2 | 3 | [更多系统、论文,供君选择 ~~>](https://www.yuque.com/wisebit/blog) 4 | CKEditor 4 5 | ========== 6 | 7 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 8 | http://ckeditor.com - See LICENSE.md for license information. 9 | 10 | CKEditor is a text editor to be used inside web pages. It's not a replacement 11 | for desktop text editors like Word or OpenOffice, but a component to be used as 12 | part of web applications and websites. 13 | 14 | # Documentation 15 | 16 | The full editor documentation is available online at the following address: 17 | http://docs.ckeditor.com 18 | 19 | # Installation 20 | 21 | Installing CKEditor is an easy task. Just follow these simple steps: 22 | 23 | 1. **Download** the latest version from the CKEditor website: 24 | http://ckeditor.com. You should have already completed this step, but be 25 | sure you have the very latest version. 26 | 2. **Extract** (decompress) the downloaded file into the root of your website. 27 | 28 | **Note:** CKEditor is by default installed in the `ckeditor` folder. You can 29 | place the files in whichever you want though. 30 | 31 | ## Checking Your Installation 32 | 33 | The editor comes with a few sample pages that can be used to verify that 34 | installation proceeded properly. Take a look at the `samples` directory. 35 | 36 | To test your installation, just call the following page at your website: 37 | 38 | http:////samples/index.html 39 | 40 | For example: 41 | 42 | http://www.example.com/ckeditor/samples/index.html 43 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. 8 | // For complete reference see: 9 | // http://docs.ckeditor.com/#!/api/CKEDITOR.config 10 | 11 | // The toolbar groups arrangement, optimized for a single toolbar row. 12 | config.toolbarGroups = [ 13 | { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, 14 | { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, 15 | { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, 16 | { name: 'forms' }, 17 | { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, 18 | { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, 19 | { name: 'links' }, 20 | { name: 'insert' }, 21 | { name: 'styles' }, 22 | { name: 'colors' }, 23 | { name: 'tools' }, 24 | { name: 'others' }, 25 | { name: 'about' } 26 | ]; 27 | 28 | // The default plugins included in the basic setup define some buttons that 29 | // are not needed in a basic editor. They are removed here. 30 | config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript'; 31 | 32 | // Dialog windows are also simplified. 33 | config.removeDialogTabs = 'link:advanced'; 34 | }; 35 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("about",function(a){a=a.lang.about;var b=CKEDITOR.getUrl(CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png");return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'\x3cstyle type\x3d"text/css"\x3e.cke_about_container{color:#000 !important;padding:10px 10px 0;margin-top:5px}.cke_about_container p{margin: 0 0 10px;}.cke_about_container .cke_about_logo{height:81px;background-color:#fff;background-image:url('+ 6 | b+");"+(CKEDITOR.env.hidpi?"background-size:163px 58px;":"")+'background-position:center; background-repeat:no-repeat;margin-bottom:10px;}.cke_about_container a{cursor:pointer !important;color:#00B2CE !important;text-decoration:underline !important;}\x3c/style\x3e\x3cdiv class\x3d"cke_about_container"\x3e\x3cdiv class\x3d"cke_about_logo"\x3e\x3c/div\x3e\x3cp\x3eCKEditor '+CKEDITOR.version+" (revision "+CKEDITOR.revision+')\x3cbr\x3e\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"http://ckeditor.com/"\x3ehttp://ckeditor.com\x3c/a\x3e\x3c/p\x3e\x3cp\x3e'+ 7 | a.help.replace("$1",'\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"http://docs.ckeditor.com/user"\x3e'+a.userGuide+"\x3c/a\x3e")+"\x3c/p\x3e\x3cp\x3e"+a.moreInfo+'\x3cbr\x3e\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"http://ckeditor.com/about/license"\x3ehttp://ckeditor.com/about/license\x3c/a\x3e\x3c/p\x3e\x3cp\x3e'+a.copy.replace("$1",'\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"http://cksource.com/"\x3eCKSource\x3c/a\x3e - Frederico Knabben')+ 8 | "\x3c/p\x3e\x3c/div\x3e"}]}],buttons:[CKEDITOR.dialog.cancelButton]}}); -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("anchor",function(c){function e(b,a){return b.createFakeElement(b.document.createElement("a",{attributes:a}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,onOk:function(){var b=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),a={id:b,name:b,"data-cke-saved-name":b};this._.selectedElement?this._.selectedElement.data("cke-realelement")?(b=e(c,a),b.replace(this._.selectedElement),CKEDITOR.env.ie&&c.getSelection().selectElement(b)):this._.selectedElement.setAttributes(a): 6 | (b=(b=c.getSelection())&&b.getRanges()[0],b.collapsed?(a=e(c,a),b.insertNode(a)):(CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(a["class"]="cke_anchor"),a=new CKEDITOR.style({element:"a",attributes:a}),a.type=CKEDITOR.STYLE_INLINE,a.applyToRange(b)))},onHide:function(){delete this._.selectedElement},onShow:function(){var b=c.getSelection(),a;a=b.getRanges()[0];var d=b.getSelectedElement();a.shrink(CKEDITOR.SHRINK_ELEMENT);a=(d=a.getEnclosedNode())&&d.type===CKEDITOR.NODE_ELEMENT&&("anchor"===d.data("cke-real-element-type")|| 7 | d.is("a"))?d:void 0;var f=(d=a&&a.data("cke-realelement"))?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,a):CKEDITOR.plugins.link.getSelectedLink(c);if(f){this._.selectedElement=f;var e=f.data("cke-saved-name");this.setValueOf("info","txtName",e||"");!d&&b.selectElement(f);a&&(this._.selectedElement=a)}this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return this.getValue()? 8 | !0:(alert(c.lang.link.anchor.errorName),!1)}}]}]}}); -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/js/sample.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* exported initSample */ 7 | 8 | if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 ) 9 | CKEDITOR.tools.enableHtml5Elements( document ); 10 | 11 | // The trick to keep the editor in the sample quite small 12 | // unless user specified own height. 13 | CKEDITOR.config.height = 150; 14 | CKEDITOR.config.width = 'auto'; 15 | 16 | var initSample = ( function() { 17 | var wysiwygareaAvailable = isWysiwygareaAvailable(), 18 | isBBCodeBuiltIn = !!CKEDITOR.plugins.get( 'bbcode' ); 19 | 20 | return function() { 21 | var editorElement = CKEDITOR.document.getById( 'editor' ); 22 | 23 | // :((( 24 | if ( isBBCodeBuiltIn ) { 25 | editorElement.setHtml( 26 | 'Hello world!\n\n' + 27 | 'I\'m an instance of [url=http://ckeditor.com]CKEditor[/url].' 28 | ); 29 | } 30 | 31 | // Depending on the wysiwygare plugin availability initialize classic or inline editor. 32 | if ( wysiwygareaAvailable ) { 33 | CKEDITOR.replace( 'editor' ); 34 | } else { 35 | editorElement.setAttribute( 'contenteditable', 'true' ); 36 | CKEDITOR.inline( 'editor' ); 37 | 38 | // TODO we can consider displaying some info box that 39 | // without wysiwygarea the classic editor may not work. 40 | } 41 | }; 42 | 43 | function isWysiwygareaAvailable() { 44 | // If in development mode, then the wysiwygarea must be available. 45 | // Split REV into two strings so builder does not replace it :D. 46 | if ( CKEDITOR.revision == ( '%RE' + 'V%' ) ) { 47 | return true; 48 | } 49 | 50 | return !!CKEDITOR.plugins.get( 'wysiwygarea' ); 51 | } 52 | } )(); 53 | 54 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/old/appendto.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | Append To Page Element Using JavaScript Code — CKEditor Sample 10 | 11 | 12 | 13 | 14 |

15 | CKEditor Samples » Append To Page Element Using JavaScript Code 16 |

17 |
18 | This sample is not maintained anymore. Check out the brand new samples in CKEditor SDK. 19 |
20 |
21 |
22 |

23 | The CKEDITOR.appendTo() method serves to to place editors inside existing DOM elements. Unlike CKEDITOR.replace(), 24 | a target container to be replaced is no longer necessary. A new editor 25 | instance is inserted directly wherever it is desired. 26 |

27 |
CKEDITOR.appendTo( 'container_id',
28 | 	{ /* Configuration options to be used. */ }
29 | 	'Editor content to be used.'
30 | );
31 |
32 | 46 |
47 |
48 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/old/assets/posteddata.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | Sample — CKEditor 12 | 13 | 14 | 15 |

16 | CKEditor — Posted Data 17 |

18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | $value ) 31 | { 32 | if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) 33 | continue; 34 | 35 | if ( get_magic_quotes_gpc() ) 36 | $value = htmlspecialchars( stripslashes((string)$value) ); 37 | else 38 | $value = htmlspecialchars( (string)$value ); 39 | ?> 40 | 41 | 42 | 43 | 44 | 48 |
Field NameValue
49 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/old/assets/uilanguages/languages.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | var CKEDITOR_LANGS=function(){var c={af:"Afrikaans",ar:"Arabic",az:"Azerbaijani",bg:"Bulgarian",bn:"Bengali/Bangla",bs:"Bosnian",ca:"Catalan",cs:"Czech",cy:"Welsh",da:"Danish",de:"German","de-ch":"German (Switzerland)",el:"Greek",en:"English","en-au":"English (Australia)","en-ca":"English (Canadian)","en-gb":"English (United Kingdom)",eo:"Esperanto",es:"Spanish","es-mx":"Spanish (Mexico)",et:"Estonian",eu:"Basque",fa:"Persian",fi:"Finnish",fo:"Faroese",fr:"French","fr-ca":"French (Canada)",gl:"Galician", 6 | gu:"Gujarati",he:"Hebrew",hi:"Hindi",hr:"Croatian",hu:"Hungarian",id:"Indonesian",is:"Icelandic",it:"Italian",ja:"Japanese",ka:"Georgian",km:"Khmer",ko:"Korean",ku:"Kurdish",lt:"Lithuanian",lv:"Latvian",mk:"Macedonian",mn:"Mongolian",ms:"Malay",nb:"Norwegian Bokmal",nl:"Dutch",no:"Norwegian",oc:"Occitan",pl:"Polish",pt:"Portuguese (Portugal)","pt-br":"Portuguese (Brazil)",ro:"Romanian",ru:"Russian",si:"Sinhala",sk:"Slovak",sq:"Albanian",sl:"Slovenian",sr:"Serbian (Cyrillic)","sr-latn":"Serbian (Latin)", 7 | sv:"Swedish",th:"Thai",tr:"Turkish",tt:"Tatar",ug:"Uighur",uk:"Ukrainian",vi:"Vietnamese",zh:"Chinese Traditional","zh-cn":"Chinese Simplified"},b=[],a;for(a in CKEDITOR.lang.languages)b.push({code:a,name:c[a]||a});b.sort(function(a,b){return a.name' + requires[ i ] + '' ); 22 | } 23 | 24 | if ( missing.length ) { 25 | var warn = CKEDITOR.dom.element.createFromHtml( 26 | '
' + 27 | 'To fully experience this demo, the ' + missing.join( ', ' ) + ' plugin' + ( missing.length > 1 ? 's are' : ' is' ) + ' required.' + 28 | '
' 29 | ); 30 | warn.insertBefore( editor.container ); 31 | } 32 | } 33 | 34 | // Set icons. 35 | var doc = new CKEDITOR.dom.document( document ), 36 | icons = doc.find( '.button_icon' ); 37 | 38 | for ( i = 0; i < icons.count(); i++ ) { 39 | var icon = icons.getItem( i ), 40 | name = icon.getAttribute( 'data-icon' ), 41 | style = CKEDITOR.skin.getIconStyle( name, ( CKEDITOR.lang.dir == 'rtl' ) ); 42 | 43 | icon.addClass( 'cke_button_icon' ); 44 | icon.addClass( 'cke_button__' + name + '_icon' ); 45 | icon.setAttribute( 'style', style ); 46 | icon.setStyle( 'float', 'none' ); 47 | 48 | } 49 | } ); 50 | } )(); 51 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/old/sample_posteddata.php: -------------------------------------------------------------------------------- 1 |
 2 | 
 3 | -------------------------------------------------------------------------------------------
 4 |   CKEditor - Posted Data
 5 | 
 6 |   We are sorry, but your Web server does not support the PHP language used in this script.
 7 | 
 8 |   Please note that CKEditor can be used with any other server-side language than just PHP.
 9 |   To save the content created with CKEditor you need to read the POST data on the server
10 |   side and write it to a file or the database.
11 | 
12 |   Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
13 |   For licensing, see LICENSE.md or http://ckeditor.com/license
14 | -------------------------------------------------------------------------------------------
15 | 
16 | 
*/ include "assets/posteddata.php"; ?> 17 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/css/fontello.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'fontello'; 3 | src: url('../font/fontello.eot?89024372'); 4 | src: url('../font/fontello.eot?89024372#iefix') format('embedded-opentype'), 5 | url('../font/fontello.woff?89024372') format('woff'), 6 | url('../font/fontello.ttf?89024372') format('truetype'), 7 | url('../font/fontello.svg?89024372#fontello') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ 12 | /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ 13 | /* 14 | @media screen and (-webkit-min-device-pixel-ratio:0) { 15 | @font-face { 16 | font-family: 'fontello'; 17 | src: url('../font/fontello.svg?89024372#fontello') format('svg'); 18 | } 19 | } 20 | */ 21 | 22 | [class^="icon-"]:before, [class*=" icon-"]:before { 23 | font-family: "fontello"; 24 | font-style: normal; 25 | font-weight: normal; 26 | speak: none; 27 | 28 | display: inline-block; 29 | text-decoration: inherit; 30 | width: 1em; 31 | margin-right: .2em; 32 | text-align: center; 33 | /* opacity: .8; */ 34 | 35 | /* For safety - reset parent styles, that can break glyph codes*/ 36 | font-variant: normal; 37 | text-transform: none; 38 | 39 | /* fix buttons height, for twitter bootstrap */ 40 | line-height: 1em; 41 | 42 | /* Animation center compensation - margins should be symmetric */ 43 | /* remove if not needed */ 44 | margin-left: .2em; 45 | 46 | /* you can be more comfortable with increased icons size */ 47 | /* font-size: 120%; */ 48 | 49 | /* Uncomment for 3D effect */ 50 | /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ 51 | } 52 | 53 | .icon-trash:before { content: '\e802'; } /* '' */ 54 | .icon-down-big:before { content: '\e800'; } /* '' */ 55 | .icon-up-big:before { content: '\e801'; } /* '' */ 56 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/font/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "css_prefix_text": "icon-", 4 | "css_use_suffix": false, 5 | "hinting": true, 6 | "units_per_em": 1000, 7 | "ascent": 850, 8 | "glyphs": [ 9 | { 10 | "uid": "f48ae54adfb27d8ada53d0fd9e34ee10", 11 | "css": "trash-empty", 12 | "code": 59392, 13 | "src": "fontawesome" 14 | }, 15 | { 16 | "uid": "1c4068ed75209e21af36017df8871802", 17 | "css": "down-big", 18 | "code": 59393, 19 | "src": "fontawesome" 20 | }, 21 | { 22 | "uid": "95376bf082bfec6ce06ea1cda7bd7ead", 23 | "css": "up-big", 24 | "code": 59394, 25 | "src": "fontawesome" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/font/fontello.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 2014 by original authors @ fontello.com 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2014 by Marijn Haverbeke and others 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css: -------------------------------------------------------------------------------- 1 | /* neo theme for codemirror */ 2 | 3 | /* Color scheme */ 4 | 5 | .cm-s-neo.CodeMirror { 6 | background-color:#ffffff; 7 | color:#2e383c; 8 | line-height:1.4375; 9 | } 10 | .cm-s-neo .cm-comment {color:#75787b} 11 | .cm-s-neo .cm-keyword, .cm-s-neo .cm-property {color:#1d75b3} 12 | .cm-s-neo .cm-atom,.cm-s-neo .cm-number {color:#75438a} 13 | .cm-s-neo .cm-node,.cm-s-neo .cm-tag {color:#9c3328} 14 | .cm-s-neo .cm-string {color:#b35e14} 15 | .cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier {color:#047d65} 16 | 17 | 18 | /* Editor styling */ 19 | 20 | .cm-s-neo pre { 21 | padding:0; 22 | } 23 | 24 | .cm-s-neo .CodeMirror-gutters { 25 | border:none; 26 | border-right:10px solid transparent; 27 | background-color:transparent; 28 | } 29 | 30 | .cm-s-neo .CodeMirror-linenumber { 31 | padding:0; 32 | color:#e0e2e5; 33 | } 34 | 35 | .cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; } 36 | .cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; } 37 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono-lisa/readme.md: -------------------------------------------------------------------------------- 1 | "Moono-lisa" Skin 2 | ================= 3 | 4 | This skin has been made a **default skin** starting from CKEditor 4.6.0 and is maintained by the core developers. 5 | 6 | For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK) 7 | documentation. 8 | 9 | Features 10 | ------------------- 11 | "Moono-lisa" is a monochromatic skin, which offers a modern, flat and minimalistic look which blends very well in modern design. 12 | It comes with the following features: 13 | 14 | - Chameleon feature with brightness. 15 | - High-contrast compatibility. 16 | - Graphics source provided in SVG. 17 | 18 | Directory Structure 19 | ------------------- 20 | 21 | CSS parts: 22 | - **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, 23 | - **mainui.css**: the file contains styles of entire editor outline structures, 24 | - **toolbar.css**: the file contains styles of the editor toolbar space (top), 25 | - **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, 26 | - **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded 27 | until the first panel open up, 28 | - **elementspath.css**: the file contains styles of the editor elements path bar (bottom), 29 | - **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, 30 | it's not loaded until the first menu open up, 31 | - **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, 32 | - **reset.css**: the file defines the basis of style resets among all editor UI spaces, 33 | - **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, 34 | - **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. 35 | 36 | Other parts: 37 | - **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, 38 | - **images/**: contains a fill general used images, 39 | - **dev/**: contains SVG and PNG source of the skin icons. 40 | 41 | License 42 | ------- 43 | 44 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 45 | 46 | For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license) 47 | -------------------------------------------------------------------------------- /WebRoot/common/msg.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <% 6 | String path = request.getContextPath(); 7 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
${requestScope.msg}
22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/common/msg1.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 4 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 5 | <%@ page isELIgnored="false" %> 6 | <% 7 | String path = request.getContextPath(); 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 |
34 | 37 |
38 |
39 |
40 |
 
41 |
42 |
43 |
${requestScope.msg1}
44 |
45 |
46 |
47 |
48 |
49 | 50 | 51 | 52 |
53 | 56 |
57 | 58 | 59 | -------------------------------------------------------------------------------- /WebRoot/common/succeed.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/css/Common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/css/Common.css -------------------------------------------------------------------------------- /WebRoot/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/css/base.css -------------------------------------------------------------------------------- /WebRoot/css/sitegeneric08.css: -------------------------------------------------------------------------------- 1 | .MainCenter { 2 | WIDTH: 972px; POSITION: relative; TEXT-ALIGN: center 3 | } 4 | .MainCenter .naivgation { 5 | DISPLAY: inline; FLOAT: left; WIDTH: 192px 6 | } 7 | .MainCenter .Sub { 8 | FLOAT: left; MARGIN: 0px; WIDTH: 780px; POSITION: relative 9 | } 10 | .MainCenter .Sub .Subheader { 11 | PADDING-LEFT: 10px; VERTICAL-ALIGN: middle; WIDTH: 770px; LINE-HEIGHT: 32px; HEIGHT: 32px; TEXT-ALIGN: left 12 | } 13 | .MainCenter .Sub .SubContent1 { 14 | DISPLAY: inline; FLOAT: left; WIDTH: 780px 15 | } 16 | .MainCenter .Sub .Subfooter { 17 | FLOAT: left; WIDTH: 100%; HEIGHT: 25px 18 | } 19 | -------------------------------------------------------------------------------- /WebRoot/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/images/arrow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/arrow2.gif -------------------------------------------------------------------------------- /WebRoot/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/arrows.png -------------------------------------------------------------------------------- /WebRoot/images/banner - ���� (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/banner - ���� (2).png -------------------------------------------------------------------------------- /WebRoot/images/banner - ���� (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/banner - ���� (4).png -------------------------------------------------------------------------------- /WebRoot/images/banner - ����.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/banner - ����.png -------------------------------------------------------------------------------- /WebRoot/images/banner.231png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/banner.231png -------------------------------------------------------------------------------- /WebRoot/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/banner.png -------------------------------------------------------------------------------- /WebRoot/images/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/c1.png -------------------------------------------------------------------------------- /WebRoot/images/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/c2.png -------------------------------------------------------------------------------- /WebRoot/images/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/c3.png -------------------------------------------------------------------------------- /WebRoot/images/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/c4.png -------------------------------------------------------------------------------- /WebRoot/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/close.png -------------------------------------------------------------------------------- /WebRoot/images/close1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/close1.png -------------------------------------------------------------------------------- /WebRoot/images/f_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/f_logo.png -------------------------------------------------------------------------------- /WebRoot/images/grid_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/grid_view.png -------------------------------------------------------------------------------- /WebRoot/images/list_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/list_view.png -------------------------------------------------------------------------------- /WebRoot/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/logo.png -------------------------------------------------------------------------------- /WebRoot/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/menu.png -------------------------------------------------------------------------------- /WebRoot/images/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/social.png -------------------------------------------------------------------------------- /WebRoot/images/tick1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/tick1.png -------------------------------------------------------------------------------- /WebRoot/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/images/zoom.png -------------------------------------------------------------------------------- /WebRoot/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/4.png -------------------------------------------------------------------------------- /WebRoot/img/Car_icon_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/Car_icon_01.gif -------------------------------------------------------------------------------- /WebRoot/img/Car_icon_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/Car_icon_02.gif -------------------------------------------------------------------------------- /WebRoot/img/Car_icon_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/Car_icon_03.gif -------------------------------------------------------------------------------- /WebRoot/img/arr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/arr3.gif -------------------------------------------------------------------------------- /WebRoot/img/arr4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/arr4.gif -------------------------------------------------------------------------------- /WebRoot/img/arrfc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/arrfc.gif -------------------------------------------------------------------------------- /WebRoot/img/arrl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/arrl.gif -------------------------------------------------------------------------------- /WebRoot/img/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/arrow.gif -------------------------------------------------------------------------------- /WebRoot/img/arrr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/arrr.gif -------------------------------------------------------------------------------- /WebRoot/img/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/back.jpg -------------------------------------------------------------------------------- /WebRoot/img/bank1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/bank1.jpg -------------------------------------------------------------------------------- /WebRoot/img/bank2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/bank2.jpg -------------------------------------------------------------------------------- /WebRoot/img/bank3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/bank3.jpg -------------------------------------------------------------------------------- /WebRoot/img/bank4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/bank4.jpg -------------------------------------------------------------------------------- /WebRoot/img/bank5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/bank5.jpg -------------------------------------------------------------------------------- /WebRoot/img/base.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/base.gif -------------------------------------------------------------------------------- /WebRoot/img/bhj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/bhj.jpg -------------------------------------------------------------------------------- /WebRoot/img/book.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/book.gif -------------------------------------------------------------------------------- /WebRoot/img/book1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/book1.gif -------------------------------------------------------------------------------- /WebRoot/img/bottombg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/bottombg.gif -------------------------------------------------------------------------------- /WebRoot/img/buy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/buy.jpg -------------------------------------------------------------------------------- /WebRoot/img/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/cd.gif -------------------------------------------------------------------------------- /WebRoot/img/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/circle.gif -------------------------------------------------------------------------------- /WebRoot/img/cs-dh-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/cs-dh-bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/cs-foot-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/cs-foot-bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/cs-lan-dh-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/cs-lan-dh-bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/cs-lv-dh-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/cs-lv-dh-bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/cz.gif -------------------------------------------------------------------------------- /WebRoot/img/delete_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/delete_01.gif -------------------------------------------------------------------------------- /WebRoot/img/dialogclose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/dialogclose.gif -------------------------------------------------------------------------------- /WebRoot/img/dl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/dl.gif -------------------------------------------------------------------------------- /WebRoot/img/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/empty.gif -------------------------------------------------------------------------------- /WebRoot/img/file_dir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/file_dir.gif -------------------------------------------------------------------------------- /WebRoot/img/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/folder.gif -------------------------------------------------------------------------------- /WebRoot/img/folderopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/folderopen.gif -------------------------------------------------------------------------------- /WebRoot/img/footbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/footbg.gif -------------------------------------------------------------------------------- /WebRoot/img/globe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/globe.gif -------------------------------------------------------------------------------- /WebRoot/img/goumai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/goumai.jpg -------------------------------------------------------------------------------- /WebRoot/img/gtk-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/gtk-del.png -------------------------------------------------------------------------------- /WebRoot/img/gtk-sadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/gtk-sadd.png -------------------------------------------------------------------------------- /WebRoot/img/head-mark3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/head-mark3.gif -------------------------------------------------------------------------------- /WebRoot/img/head-mark4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/head-mark4.gif -------------------------------------------------------------------------------- /WebRoot/img/ico1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/ico1.gif -------------------------------------------------------------------------------- /WebRoot/img/ico5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/ico5.jpg -------------------------------------------------------------------------------- /WebRoot/img/ico_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/ico_2.gif -------------------------------------------------------------------------------- /WebRoot/img/icon01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/icon01.gif -------------------------------------------------------------------------------- /WebRoot/img/icon04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/icon04.gif -------------------------------------------------------------------------------- /WebRoot/img/icon05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/icon05.gif -------------------------------------------------------------------------------- /WebRoot/img/icon06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/icon06.gif -------------------------------------------------------------------------------- /WebRoot/img/icon07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/icon07.gif -------------------------------------------------------------------------------- /WebRoot/img/imgfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/imgfolder.gif -------------------------------------------------------------------------------- /WebRoot/img/index_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/index_icon.gif -------------------------------------------------------------------------------- /WebRoot/img/jia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/jia.gif -------------------------------------------------------------------------------- /WebRoot/img/jian.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/jian.gif -------------------------------------------------------------------------------- /WebRoot/img/jixu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/jixu.jpg -------------------------------------------------------------------------------- /WebRoot/img/join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/join.gif -------------------------------------------------------------------------------- /WebRoot/img/joinbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/joinbottom.gif -------------------------------------------------------------------------------- /WebRoot/img/kabg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/kabg.gif -------------------------------------------------------------------------------- /WebRoot/img/lbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/lbg.jpg -------------------------------------------------------------------------------- /WebRoot/img/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/left_bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/left_bg_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/left_bg_bottom.jpg -------------------------------------------------------------------------------- /WebRoot/img/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/line.gif -------------------------------------------------------------------------------- /WebRoot/img/liu3718.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/liu3718.jpg -------------------------------------------------------------------------------- /WebRoot/img/liuyan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/liuyan.gif -------------------------------------------------------------------------------- /WebRoot/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/loading.gif -------------------------------------------------------------------------------- /WebRoot/img/loading32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/loading32.gif -------------------------------------------------------------------------------- /WebRoot/img/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login.gif -------------------------------------------------------------------------------- /WebRoot/img/login_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login_03.gif -------------------------------------------------------------------------------- /WebRoot/img/login_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login_06.gif -------------------------------------------------------------------------------- /WebRoot/img/login_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login_07.gif -------------------------------------------------------------------------------- /WebRoot/img/login_08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login_08.gif -------------------------------------------------------------------------------- /WebRoot/img/login_09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login_09.gif -------------------------------------------------------------------------------- /WebRoot/img/login_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login_10.gif -------------------------------------------------------------------------------- /WebRoot/img/login_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/login_11.gif -------------------------------------------------------------------------------- /WebRoot/img/main_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/main_bottom.jpg -------------------------------------------------------------------------------- /WebRoot/img/manage1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/manage1.gif -------------------------------------------------------------------------------- /WebRoot/img/me03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/me03.gif -------------------------------------------------------------------------------- /WebRoot/img/menu-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menu-ex.png -------------------------------------------------------------------------------- /WebRoot/img/menu_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menu_bg.gif -------------------------------------------------------------------------------- /WebRoot/img/menu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menu_bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/menu_bg_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menu_bg_02.gif -------------------------------------------------------------------------------- /WebRoot/img/menu_bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menu_bottom.gif -------------------------------------------------------------------------------- /WebRoot/img/menu_sep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menu_sep.jpg -------------------------------------------------------------------------------- /WebRoot/img/menu_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menu_top.gif -------------------------------------------------------------------------------- /WebRoot/img/menuarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menuarrow.gif -------------------------------------------------------------------------------- /WebRoot/img/menubg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menubg.gif -------------------------------------------------------------------------------- /WebRoot/img/menumember.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menumember.gif -------------------------------------------------------------------------------- /WebRoot/img/menusearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/menusearch.gif -------------------------------------------------------------------------------- /WebRoot/img/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/minus.gif -------------------------------------------------------------------------------- /WebRoot/img/minusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/minusbottom.gif -------------------------------------------------------------------------------- /WebRoot/img/msg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/msg2.jpg -------------------------------------------------------------------------------- /WebRoot/img/msg_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/msg_bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/musicfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/musicfolder.gif -------------------------------------------------------------------------------- /WebRoot/img/next.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/next.jpg -------------------------------------------------------------------------------- /WebRoot/img/nolines_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/nolines_minus.gif -------------------------------------------------------------------------------- /WebRoot/img/nolines_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/nolines_plus.gif -------------------------------------------------------------------------------- /WebRoot/img/orderSub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/orderSub.jpg -------------------------------------------------------------------------------- /WebRoot/img/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/page.gif -------------------------------------------------------------------------------- /WebRoot/img/part-index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/part-index.gif -------------------------------------------------------------------------------- /WebRoot/img/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/plus.gif -------------------------------------------------------------------------------- /WebRoot/img/plusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/plusbottom.gif -------------------------------------------------------------------------------- /WebRoot/img/qingkong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/qingkong.jpg -------------------------------------------------------------------------------- /WebRoot/img/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/question.gif -------------------------------------------------------------------------------- /WebRoot/img/reg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/reg.gif -------------------------------------------------------------------------------- /WebRoot/img/reservation01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/reservation01.jpg -------------------------------------------------------------------------------- /WebRoot/img/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/search.gif -------------------------------------------------------------------------------- /WebRoot/img/sp_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/sp_bg.gif -------------------------------------------------------------------------------- /WebRoot/img/tbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/tbg.jpg -------------------------------------------------------------------------------- /WebRoot/img/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/timg.jpg -------------------------------------------------------------------------------- /WebRoot/img/title-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/title-bg.gif -------------------------------------------------------------------------------- /WebRoot/img/title_bg1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/title_bg1.gif -------------------------------------------------------------------------------- /WebRoot/img/top_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/top_bg.jpg -------------------------------------------------------------------------------- /WebRoot/img/topbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/topbg.gif -------------------------------------------------------------------------------- /WebRoot/img/topitembg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/topitembg.gif -------------------------------------------------------------------------------- /WebRoot/img/topmenu_o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/topmenu_o.gif -------------------------------------------------------------------------------- /WebRoot/img/topsearch_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/topsearch_bg.gif -------------------------------------------------------------------------------- /WebRoot/img/topsearch_submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/topsearch_submit.gif -------------------------------------------------------------------------------- /WebRoot/img/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/trash.gif -------------------------------------------------------------------------------- /WebRoot/img/wbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/wbg.gif -------------------------------------------------------------------------------- /WebRoot/img/yuding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/yuding.jpg -------------------------------------------------------------------------------- /WebRoot/img/zj_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/zj_arrow.gif -------------------------------------------------------------------------------- /WebRoot/img/zj_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/img/zj_menu.gif -------------------------------------------------------------------------------- /WebRoot/js/cbpViewModeSwitch.js: -------------------------------------------------------------------------------- 1 | /** 2 | * cbpViewModeSwitch.js v1.0.0 3 | * http://www.codrops.com 4 | * 5 | * Licensed under the MIT license. 6 | * http://www.opensource.org/licenses/mit-license.php 7 | * 8 | * Copyright 2013, Codrops 9 | * http://www.codrops.com 10 | */ 11 | (function() { 12 | 13 | var container = document.getElementById( 'cbp-vm' ), 14 | optionSwitch = Array.prototype.slice.call( container.querySelectorAll( 'div.cbp-vm-options > a' ) ); 15 | 16 | function init() { 17 | optionSwitch.forEach( function( el, i ) { 18 | el.addEventListener( 'click', function( ev ) { 19 | ev.preventDefault(); 20 | _switch( this ); 21 | }, false ); 22 | } ); 23 | } 24 | 25 | function _switch( opt ) { 26 | // remove other view classes and any any selected option 27 | optionSwitch.forEach(function(el) { 28 | classie.remove( container, el.getAttribute( 'data-view' ) ); 29 | classie.remove( el, 'cbp-vm-selected' ); 30 | }); 31 | // add the view class for this option 32 | classie.add( container, opt.getAttribute( 'data-view' ) ); 33 | // this option stays selected 34 | classie.add( opt, 'cbp-vm-selected' ); 35 | } 36 | 37 | init(); 38 | 39 | })(); -------------------------------------------------------------------------------- /WebRoot/js/classie1.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * classie - class helper functions 3 | * from bonzo https://github.com/ded/bonzo 4 | * 5 | * classie.has( elem, 'my-class' ) -> true/false 6 | * classie.add( elem, 'my-new-class' ) 7 | * classie.remove( elem, 'my-unwanted-class' ) 8 | * classie.toggle( elem, 'my-class' ) 9 | */ 10 | 11 | /*jshint browser: true, strict: true, undef: true */ 12 | /*global define: false */ 13 | 14 | ( function( window ) { 15 | 16 | 'use strict'; 17 | 18 | // class helper functions from bonzo https://github.com/ded/bonzo 19 | 20 | function classReg( className ) { 21 | return new RegExp("(^|\\s+)" + className + "(\\s+|$)"); 22 | } 23 | 24 | // classList support for class management 25 | // altho to be fair, the api sucks because it won't accept multiple classes at once 26 | var hasClass, addClass, removeClass; 27 | 28 | if ( 'classList' in document.documentElement ) { 29 | hasClass = function( elem, c ) { 30 | return elem.classList.contains( c ); 31 | }; 32 | addClass = function( elem, c ) { 33 | elem.classList.add( c ); 34 | }; 35 | removeClass = function( elem, c ) { 36 | elem.classList.remove( c ); 37 | }; 38 | } 39 | else { 40 | hasClass = function( elem, c ) { 41 | return classReg( c ).test( elem.className ); 42 | }; 43 | addClass = function( elem, c ) { 44 | if ( !hasClass( elem, c ) ) { 45 | elem.className = elem.className + ' ' + c; 46 | } 47 | }; 48 | removeClass = function( elem, c ) { 49 | elem.className = elem.className.replace( classReg( c ), ' ' ); 50 | }; 51 | } 52 | 53 | function toggleClass( elem, c ) { 54 | var fn = hasClass( elem, c ) ? removeClass : addClass; 55 | fn( elem, c ); 56 | } 57 | 58 | var classie = { 59 | // full names 60 | hasClass: hasClass, 61 | addClass: addClass, 62 | removeClass: removeClass, 63 | toggleClass: toggleClass, 64 | // short names 65 | has: hasClass, 66 | add: addClass, 67 | remove: removeClass, 68 | toggle: toggleClass 69 | }; 70 | 71 | // transport 72 | if ( typeof define === 'function' && define.amd ) { 73 | // AMD 74 | define( classie ); 75 | } else { 76 | // browser global 77 | window.classie = classie; 78 | } 79 | 80 | })( window ); 81 | -------------------------------------------------------------------------------- /WebRoot/loginSuccess.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 31 |








32 |
页面跳转中
33 | 34 | 35 | -------------------------------------------------------------------------------- /WebRoot/qiantai/catelog/catelogAll.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 26 | 27 |
20 | 21 | "> 22 | 23 | 24 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /WebRoot/qiantai/default.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/qiantai/gonggao/gonggaoDetailQian.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ taglib prefix="s" uri="/struts-tags"%> 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |

公告详情

30 |

标题:

31 |

内容:

32 |

发布时间:

33 |
34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /WebRoot/qiantai/gonggao/gonggaoQian5.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 |
')" title="">
37 | 38 | 39 | -------------------------------------------------------------------------------- /WebRoot/qiantai/inc/incFoot.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | %> 5 | 12 | -------------------------------------------------------------------------------- /WebRoot/qiantai/inc/incLeft.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 |

用户登录

3 | 4 |
5 | 6 |
7 | 8 |

商品类别

9 |
10 | 11 |
12 | -------------------------------------------------------------------------------- /WebRoot/qiantai/liuyan/liuyanAdd.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <%@ page isELIgnored="false" %> 4 | <% 5 | String path = request.getContextPath(); 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 | 34 | 37 | 38 | 39 | 42 | 46 | 47 |
我要留言
32 | 内容: 33 | 35 | 36 |
40 |   41 | 43 |   44 |   45 |
48 |
49 | 50 | 51 | -------------------------------------------------------------------------------- /WebRoot/qiantai/order/kahao.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <%@ page isELIgnored="false" %> 4 | 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 28 | 29 | 30 | 31 |
32 | 33 | 34 | 35 | 36 | 37 | 40 | 43 | 44 | 45 | 48 | 51 | 52 |
卡号信息
38 | 工商银行: 39 | 41 | 62220216100092232223 42 |
46 | 建设银行: 47 | 49 | 62220216100090332223 50 |
53 |
54 | 55 | 56 | -------------------------------------------------------------------------------- /WebRoot/updown/updown.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page import="com.jspsmart.upload.*" %> 3 | <% 4 | String path = request.getContextPath(); 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | <% 19 | String fujianPath=request.getParameter("fujianPath"); 20 | String fujianYuashiMing=request.getParameter("fujianYuashiMing"); 21 | fujianYuashiMing=java.net.URLDecoder.decode(fujianYuashiMing,"UTF-8"); 22 | System.out.println(fujianYuashiMing+fujianPath); 23 | 24 | SmartUpload su = new SmartUpload(); // 新建一个SmartUpload对象 25 | 26 | su.initialize(pageContext); // 初始化 27 | 28 | su.setContentDisposition(null); 29 | // 设定contentDisposition为null以禁止浏览器自动打开文件, 30 | //保证点击链接后是下载文件。若不设定,则下载的文件扩展名为 31 | //doc时,浏览器将自动用word打开它。扩展名为pdf时,将用acrobat打开 32 | 33 | //su.downloadFile("/uploadPath/file/liu.doc"); // 下载英文文件 34 | su.downloadFile(fujianPath, null, new String(fujianYuashiMing.getBytes(), "ISO8859-1")); // 下载中文文件 35 | //downloadFile(String sourceFilePathName, String contentType, String destFileName) 36 | out.clear(); 37 | out=pageContext.pushBody(); 38 | %> 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /WebRoot/upload/1568197409024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1568197409024.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1568197760058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1568197760058.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1568197886501.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1568197886501.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1568198046650.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1568198046650.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1568198169395.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1568198169395.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1568198313346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1568198313346.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1568213267135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1568213267135.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1615713693509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1615713693509.png -------------------------------------------------------------------------------- /WebRoot/upload/1647419344137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1647419344137.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1647422882892.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1647422882892.jpg -------------------------------------------------------------------------------- /WebRoot/upload/1647505619931.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/WebRoot/upload/1647505619931.png -------------------------------------------------------------------------------- /WebRoot/upload/upload.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 27 | 28 | 29 | 30 |
31 | 32 | 33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /WebRoot/upload/upload_re.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <%@ page isELIgnored="false" %> 4 | 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 上传完毕
22 |
23 |
24 | 25 | 26 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/com/action/UserAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/UserAction.java -------------------------------------------------------------------------------- /src/com/action/adminAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/adminAction.java -------------------------------------------------------------------------------- /src/com/action/buyAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/buyAction.java -------------------------------------------------------------------------------- /src/com/action/catelogAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/catelogAction.java -------------------------------------------------------------------------------- /src/com/action/commentAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/commentAction.java -------------------------------------------------------------------------------- /src/com/action/gonggaoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/gonggaoAction.java -------------------------------------------------------------------------------- /src/com/action/goodsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/goodsAction.java -------------------------------------------------------------------------------- /src/com/action/liuyanAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/liuyanAction.java -------------------------------------------------------------------------------- /src/com/action/xiaoshouAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/action/xiaoshouAction.java -------------------------------------------------------------------------------- /src/com/dao/TOrderItemDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/dao/TOrderItemDAO.java -------------------------------------------------------------------------------- /src/com/model/TAdmin.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/com/model/TAdmin.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * TAdmin generated by MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TAdmin implements java.io.Serializable { 8 | 9 | // Fields 10 | 11 | private Integer userId; 12 | 13 | private String userName; 14 | 15 | private String userPw; 16 | 17 | // Constructors 18 | 19 | /** default constructor */ 20 | public TAdmin() { 21 | } 22 | 23 | /** full constructor */ 24 | public TAdmin(String userName, String userPw) { 25 | this.userName = userName; 26 | this.userPw = userPw; 27 | } 28 | 29 | // Property accessors 30 | 31 | 32 | public String getUserName() { 33 | return this.userName; 34 | } 35 | 36 | public void setUserName(String userName) { 37 | this.userName = userName; 38 | } 39 | 40 | public String getUserPw() { 41 | return this.userPw; 42 | } 43 | 44 | public void setUserPw(String userPw) { 45 | this.userPw = userPw; 46 | } 47 | 48 | public Integer getUserId() 49 | { 50 | return userId; 51 | } 52 | 53 | public void setUserId(Integer userId) 54 | { 55 | this.userId = userId; 56 | } 57 | 58 | } -------------------------------------------------------------------------------- /src/com/model/TCatelog.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/com/model/TCatelog.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * TCatelog generated by MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TCatelog implements java.io.Serializable 8 | { 9 | private Integer catelogId; 10 | private String catelogName; 11 | private String catelogDel; 12 | 13 | 14 | public Integer getCatelogId() 15 | { 16 | return catelogId; 17 | } 18 | public void setCatelogId(Integer catelogId) 19 | { 20 | this.catelogId = catelogId; 21 | } 22 | public String getCatelogName() 23 | { 24 | return catelogName; 25 | } 26 | public void setCatelogName(String catelogName) 27 | { 28 | this.catelogName = catelogName; 29 | } 30 | public String getCatelogDel() 31 | { 32 | return catelogDel; 33 | } 34 | public void setCatelogDel(String catelogDel) 35 | { 36 | this.catelogDel = catelogDel; 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /src/com/model/TComment.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/com/model/TComment.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * TLiuyan generated by MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TComment implements java.io.Serializable 8 | { 9 | 10 | // Fields 11 | 12 | private Integer id; 13 | 14 | private String comment; 15 | 16 | private String cstart; 17 | 18 | private String ctime; 19 | 20 | private TGoods goods; 21 | 22 | private TUser user; 23 | private String creply; 24 | 25 | public Integer getId() { 26 | return id; 27 | } 28 | 29 | public void setId(Integer id) { 30 | this.id = id; 31 | } 32 | 33 | public String getComment() { 34 | return comment; 35 | } 36 | 37 | public void setComment(String comment) { 38 | this.comment = comment; 39 | } 40 | 41 | public String getCstart() { 42 | return cstart; 43 | } 44 | 45 | public void setCstart(String cstart) { 46 | this.cstart = cstart; 47 | } 48 | 49 | public String getCtime() { 50 | return ctime; 51 | } 52 | 53 | public void setCtime(String ctime) { 54 | this.ctime = ctime; 55 | } 56 | 57 | public TGoods getGoods() { 58 | return goods; 59 | } 60 | 61 | public void setGoods(TGoods goods) { 62 | this.goods = goods; 63 | } 64 | 65 | public TUser getUser() { 66 | return user; 67 | } 68 | 69 | public void setUser(TUser user) { 70 | this.user = user; 71 | } 72 | 73 | public String getCreply() { 74 | return creply; 75 | } 76 | 77 | public void setCreply(String creply) { 78 | this.creply = creply; 79 | } 80 | 81 | 82 | 83 | } -------------------------------------------------------------------------------- /src/com/model/TGonggao.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/com/model/TGonggao.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * TGonggao generated by MyEclipse Persistence Tools 7 | */ 8 | 9 | public class TGonggao implements java.io.Serializable 10 | { 11 | 12 | // Fields 13 | 14 | private Integer gonggaoId; 15 | 16 | private String gonggaoTitle; 17 | 18 | private String gonggaoContent; 19 | 20 | private String gonggaoData; 21 | 22 | private String gonggaoDel; 23 | 24 | public String getGonggaoContent() 25 | { 26 | return gonggaoContent; 27 | } 28 | 29 | public void setGonggaoContent(String gonggaoContent) 30 | { 31 | this.gonggaoContent = gonggaoContent; 32 | } 33 | 34 | public String getGonggaoData() 35 | { 36 | return gonggaoData; 37 | } 38 | 39 | public void setGonggaoData(String gonggaoData) 40 | { 41 | this.gonggaoData = gonggaoData; 42 | } 43 | 44 | public String getGonggaoDel() 45 | { 46 | return gonggaoDel; 47 | } 48 | 49 | public void setGonggaoDel(String gonggaoDel) 50 | { 51 | this.gonggaoDel = gonggaoDel; 52 | } 53 | 54 | public Integer getGonggaoId() 55 | { 56 | return gonggaoId; 57 | } 58 | 59 | public void setGonggaoId(Integer gonggaoId) 60 | { 61 | this.gonggaoId = gonggaoId; 62 | } 63 | 64 | public String getGonggaoTitle() 65 | { 66 | return gonggaoTitle; 67 | } 68 | 69 | public void setGonggaoTitle(String gonggaoTitle) 70 | { 71 | this.gonggaoTitle = gonggaoTitle; 72 | } 73 | 74 | 75 | } -------------------------------------------------------------------------------- /src/com/model/TGoods.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /src/com/model/TLiuyan.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/com/model/TLiuyan.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * TLiuyan generated by MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TLiuyan implements java.io.Serializable 8 | { 9 | 10 | // Fields 11 | 12 | private Integer liuyanId; 13 | 14 | private String liuyanTitle; 15 | 16 | private String liuyanContent; 17 | 18 | private String liuyanDate; 19 | 20 | private String liuyanUser; 21 | 22 | private String liuyan_huifu; 23 | private String huifu_user; 24 | private String huifu_date; 25 | 26 | 27 | // Constructors 28 | 29 | /** default constructor */ 30 | public TLiuyan() 31 | { 32 | } 33 | 34 | /** full constructor */ 35 | public TLiuyan(String liuyanTitle, String liuyanContent) 36 | { 37 | this.liuyanTitle = liuyanTitle; 38 | this.liuyanContent = liuyanContent; 39 | } 40 | 41 | // Property accessors 42 | 43 | public Integer getLiuyanId() 44 | { 45 | return this.liuyanId; 46 | } 47 | 48 | public void setLiuyanId(Integer liuyanId) 49 | { 50 | this.liuyanId = liuyanId; 51 | } 52 | 53 | public String getLiuyanTitle() 54 | { 55 | return this.liuyanTitle; 56 | } 57 | 58 | public String getLiuyanUser() 59 | { 60 | return liuyanUser; 61 | } 62 | 63 | public void setLiuyanUser(String liuyanUser) 64 | { 65 | this.liuyanUser = liuyanUser; 66 | } 67 | 68 | public String getLiuyanDate() 69 | { 70 | return liuyanDate; 71 | } 72 | 73 | public void setLiuyanDate(String liuyanDate) 74 | { 75 | this.liuyanDate = liuyanDate; 76 | } 77 | 78 | public void setLiuyanTitle(String liuyanTitle) 79 | { 80 | this.liuyanTitle = liuyanTitle; 81 | } 82 | 83 | public String getLiuyanContent() 84 | { 85 | return this.liuyanContent; 86 | } 87 | 88 | public void setLiuyanContent(String liuyanContent) 89 | { 90 | this.liuyanContent = liuyanContent; 91 | } 92 | 93 | public String getLiuyan_huifu() { 94 | return liuyan_huifu; 95 | } 96 | 97 | public void setLiuyan_huifu(String liuyanHuifu) { 98 | liuyan_huifu = liuyanHuifu; 99 | } 100 | 101 | public String getHuifu_user() { 102 | return huifu_user; 103 | } 104 | 105 | public void setHuifu_user(String huifuUser) { 106 | huifu_user = huifuUser; 107 | } 108 | 109 | public String getHuifu_date() { 110 | return huifu_date; 111 | } 112 | 113 | public void setHuifu_date(String huifuDate) { 114 | huifu_date = huifuDate; 115 | } 116 | 117 | } -------------------------------------------------------------------------------- /src/com/model/TOrder.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/com/model/TOrder.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * TOrder generated by MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TOrder implements java.io.Serializable 8 | { 9 | 10 | private Integer orderId; 11 | private String orderBianhao; 12 | private String orderDate; 13 | private String odderSonghuodizhi; 14 | private String fkstatus; 15 | private String odderFukuangfangshi; 16 | private int orderJine=0; 17 | private Integer orderUserId; 18 | 19 | 20 | public Integer getOrderId() 21 | { 22 | return orderId; 23 | } 24 | public void setOrderId(Integer orderId) 25 | { 26 | this.orderId = orderId; 27 | } 28 | public String getOrderBianhao() 29 | { 30 | return orderBianhao; 31 | } 32 | public void setOrderBianhao(String orderBianhao) 33 | { 34 | this.orderBianhao = orderBianhao; 35 | } 36 | public String getOrderDate() 37 | { 38 | return orderDate; 39 | } 40 | public void setOrderDate(String orderDate) 41 | { 42 | this.orderDate = orderDate; 43 | } 44 | public String getOdderSonghuodizhi() 45 | { 46 | return odderSonghuodizhi; 47 | } 48 | public void setOdderSonghuodizhi(String odderSonghuodizhi) 49 | { 50 | this.odderSonghuodizhi = odderSonghuodizhi; 51 | } 52 | public String getOdderFukuangfangshi() 53 | { 54 | return odderFukuangfangshi; 55 | } 56 | public void setOdderFukuangfangshi(String odderFukuangfangshi) 57 | { 58 | this.odderFukuangfangshi = odderFukuangfangshi; 59 | } 60 | public String getfkstatus() { 61 | return this.fkstatus; 62 | } 63 | 64 | public void setfkstatus(String fkstatus) { 65 | this.fkstatus = fkstatus; 66 | } 67 | public int getOrderJine() 68 | { 69 | return orderJine; 70 | } 71 | public void setOrderJine(int orderJine) 72 | { 73 | this.orderJine = orderJine; 74 | } 75 | public Integer getOrderUserId() 76 | { 77 | return orderUserId; 78 | } 79 | public void setOrderUserId(Integer orderUserId) 80 | { 81 | this.orderUserId = orderUserId; 82 | } 83 | 84 | } -------------------------------------------------------------------------------- /src/com/model/TOrderItem.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/com/model/TOrderItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/model/TOrderItem.java -------------------------------------------------------------------------------- /src/com/model/TUser.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/com/model/TUser.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * TUser generated by MyEclipse Persistence Tools 7 | */ 8 | 9 | public class TUser implements java.io.Serializable 10 | { 11 | 12 | private Integer userId; 13 | private String userName; 14 | private String userPw; 15 | private String userRealname; 16 | 17 | private String userAddress; 18 | private String userTel; 19 | private String userEmail; 20 | private String userDel; 21 | 22 | public Integer getUserId() 23 | { 24 | return userId; 25 | } 26 | public void setUserId(Integer userId) 27 | { 28 | this.userId = userId; 29 | } 30 | public String getUserName() 31 | { 32 | return userName; 33 | } 34 | public void setUserName(String userName) 35 | { 36 | this.userName = userName; 37 | } 38 | public String getUserPw() 39 | { 40 | return userPw; 41 | } 42 | public void setUserPw(String userPw) 43 | { 44 | this.userPw = userPw; 45 | } 46 | public String getUserRealname() 47 | { 48 | return userRealname; 49 | } 50 | 51 | public String getUserDel() 52 | { 53 | return userDel; 54 | } 55 | public void setUserDel(String userDel) 56 | { 57 | this.userDel = userDel; 58 | } 59 | public void setUserRealname(String userRealname) 60 | { 61 | this.userRealname = userRealname; 62 | } 63 | public String getUserAddress() 64 | { 65 | return userAddress; 66 | } 67 | public void setUserAddress(String userAddress) 68 | { 69 | this.userAddress = userAddress; 70 | } 71 | public String getUserTel() 72 | { 73 | return userTel; 74 | } 75 | public void setUserTel(String userTel) 76 | { 77 | this.userTel = userTel; 78 | } 79 | public String getUserEmail() 80 | { 81 | return userEmail; 82 | } 83 | public void setUserEmail(String userEmail) 84 | { 85 | this.userEmail = userEmail; 86 | } 87 | 88 | } -------------------------------------------------------------------------------- /src/com/service/cartService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import javax.servlet.http.HttpSession; 4 | 5 | import org.directwebremoting.WebContext; 6 | import org.directwebremoting.WebContextFactory; 7 | 8 | import com.dao.TGoodsDAO; 9 | import com.util.Cart; 10 | 11 | public class cartService 12 | { 13 | private TGoodsDAO goodsDAO; 14 | public String modiNum(int goodsId,int quantity) 15 | { 16 | try 17 | { 18 | Thread.sleep(1000); 19 | } catch (InterruptedException e) 20 | { 21 | // TODO Auto-generated catch block 22 | e.printStackTrace(); 23 | } 24 | 25 | 26 | WebContext ctx = WebContextFactory.get(); 27 | HttpSession session=ctx.getSession(); 28 | Cart cart=(Cart)session.getAttribute("cart"); 29 | cart.updateCart(goodsId, quantity); 30 | session.setAttribute("cart", cart); 31 | return "yes"; 32 | } 33 | 34 | public String delGoodsFromCart(int goodsId) 35 | { 36 | try 37 | { 38 | Thread.sleep(1000); 39 | } catch (InterruptedException e) 40 | { 41 | // TODO Auto-generated catch block 42 | e.printStackTrace(); 43 | } 44 | 45 | WebContext ctx = WebContextFactory.get(); 46 | HttpSession session=ctx.getSession(); 47 | Cart cart=(Cart)session.getAttribute("cart"); 48 | cart.delGoods(goodsId); 49 | session.setAttribute("cart", cart); 50 | return "yes"; 51 | } 52 | 53 | 54 | public String clearCart() 55 | { 56 | try 57 | { 58 | Thread.sleep(1000); 59 | } catch (InterruptedException e) 60 | { 61 | // TODO Auto-generated catch block 62 | e.printStackTrace(); 63 | } 64 | WebContext ctx = WebContextFactory.get(); 65 | HttpSession session=ctx.getSession(); 66 | Cart cart=(Cart)session.getAttribute("cart"); 67 | cart.getItems().clear(); 68 | session.setAttribute("cart", cart); 69 | return "yes"; 70 | } 71 | 72 | public TGoodsDAO getGoodsDAO() 73 | { 74 | return goodsDAO; 75 | } 76 | 77 | public void setGoodsDAO(TGoodsDAO goodsDAO) 78 | { 79 | this.goodsDAO = goodsDAO; 80 | } 81 | 82 | } 83 | -------------------------------------------------------------------------------- /src/com/service/catelogService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | 5 | import com.dao.TCatelogDAO; 6 | 7 | public class catelogService 8 | { 9 | private TCatelogDAO catelogDAO; 10 | 11 | 12 | public List findAllCatelog() 13 | { 14 | 15 | String sql="from TCatelog where catelogDel='no'"; 16 | List cateLogList=catelogDAO.getHibernateTemplate().find(sql); 17 | return cateLogList; 18 | } 19 | 20 | public TCatelogDAO getCatelogDAO() 21 | { 22 | return catelogDAO; 23 | } 24 | 25 | public void setCatelogDAO(TCatelogDAO catelogDAO) 26 | { 27 | this.catelogDAO = catelogDAO; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/com/service/loginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/service/loginService.java -------------------------------------------------------------------------------- /src/com/util/Cart.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import java.util.HashMap; 4 | import java.util.Iterator; 5 | import java.util.Map; 6 | 7 | import com.model.TGoods; 8 | import com.model.TOrderItem; 9 | 10 | public class Cart 11 | { 12 | 13 | protected Map items; 14 | 15 | public Cart() 16 | { 17 | 18 | if (items == null) 19 | { 20 | items = new HashMap(); 21 | } 22 | } 23 | 24 | public void addGoods(Integer goodsId, TOrderItem orderItem) 25 | { 26 | 27 | if (items.containsKey(goodsId)) 28 | { 29 | 30 | TOrderItem _orderitem = items.get(goodsId); 31 | _orderitem.setGoodsQuantity(_orderitem.getGoodsQuantity()+ orderItem.getGoodsQuantity()); 32 | items.put(goodsId, _orderitem); 33 | } else 34 | { 35 | 36 | items.put(goodsId, orderItem); 37 | } 38 | } 39 | 40 | public void delGoods(Integer goodsId) 41 | { 42 | items.remove(goodsId); 43 | } 44 | 45 | 46 | public void updateCart(Integer goodsId, int quantity) 47 | { 48 | 49 | TOrderItem orderItem = items.get(goodsId); 50 | orderItem.setGoodsQuantity(quantity); 51 | items.put(goodsId, orderItem); 52 | } 53 | 54 | public int getTotalPrice() 55 | { 56 | 57 | int totalPrice = 0; 58 | for (Iterator it = items.values().iterator(); it.hasNext();) 59 | { 60 | 61 | TOrderItem orderItem = (TOrderItem) it.next(); 62 | TGoods goods = orderItem.getGoods(); 63 | int quantity = orderItem.getGoodsQuantity(); 64 | totalPrice += goods.getGoodsTejia() * quantity; 65 | } 66 | return totalPrice; 67 | } 68 | 69 | public Map getItems() 70 | { 71 | return items; 72 | } 73 | 74 | } 75 | -------------------------------------------------------------------------------- /src/com/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/util/Util.java -------------------------------------------------------------------------------- /src/com/util/safeFileter.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import java.io.IOException; 4 | 5 | import javax.servlet.Filter; 6 | import javax.servlet.FilterChain; 7 | import javax.servlet.FilterConfig; 8 | import javax.servlet.ServletException; 9 | import javax.servlet.ServletRequest; 10 | import javax.servlet.ServletResponse; 11 | import javax.servlet.http.HttpServletRequest; 12 | import javax.servlet.http.HttpServletResponse; 13 | 14 | public class safeFileter implements Filter { 15 | 16 | public void destroy() 17 | { 18 | 19 | } 20 | 21 | public void doFilter(ServletRequest arg0, ServletResponse arg1,FilterChain arg2) throws IOException, ServletException 22 | { 23 | HttpServletRequest request=(HttpServletRequest)arg0; 24 | HttpServletResponse response=(HttpServletResponse)arg1; 25 | if(request.getSession().getAttribute("admin")==null) 26 | { 27 | String path=request.getContentType(); 28 | response.sendRedirect(path+"/error1.html"); 29 | } 30 | else 31 | { 32 | arg2.doFilter(request,response); 33 | } 34 | } 35 | 36 | /*web.xml 37 | 38 | safeFileter 39 | com.bookstore.util.safeFilter 40 | 41 | 42 | safeFileter 43 | /jsp 44 | */ 45 | 46 | 47 | 48 | public void init(FilterConfig arg0) throws ServletException 49 | { 50 | 51 | 52 | 53 | } 54 | 55 | } 56 | -------------------------------------------------------------------------------- /src/com/util/upload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/BeautyShoppingMallManagementSystem/500bdfcf76cfb4289d5459a10073c3e361b6dff1/src/com/util/upload.java --------------------------------------------------------------------------------