├── src ├── main │ ├── resources │ │ ├── static │ │ │ └── admin │ │ │ │ ├── js │ │ │ │ ├── bootstrap-select │ │ │ │ │ ├── js │ │ │ │ │ │ ├── umd-outro.js │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ │ │ │ ├── defaults-id_ID.js │ │ │ │ │ │ │ ├── defaults-eu.js │ │ │ │ │ │ │ ├── defaults-es_CL.js │ │ │ │ │ │ │ ├── defaults-es_ES.js │ │ │ │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ │ │ │ ├── defaults-et_EE.js │ │ │ │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ │ │ │ ├── defaults-it_IT.js │ │ │ │ │ │ │ ├── defaults-am_ET.js │ │ │ │ │ │ │ ├── defaults-da_DK.js │ │ │ │ │ │ │ ├── defaults-en_US.js │ │ │ │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ │ │ │ └── defaults-nb_NO.js │ │ │ │ │ │ └── umd-intro.js │ │ │ │ │ ├── .eslintignore │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ ├── playground │ │ │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── dist │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ │ │ │ │ ├── defaults-eu.min.js │ │ │ │ │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ │ │ │ │ └── defaults-it_IT.min.js │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ ├── toc.html │ │ │ │ │ │ │ └── ajax │ │ │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ │ └── highlight.js │ │ │ │ │ │ │ │ └── 9.15.6 │ │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ │ └── github.min.css │ │ │ │ │ │ └── mkdocs.yml │ │ │ │ │ ├── less │ │ │ │ │ │ └── variables.less │ │ │ │ │ ├── sass │ │ │ │ │ │ └── variables.scss │ │ │ │ │ ├── .github │ │ │ │ │ │ └── move.yml │ │ │ │ │ └── dist │ │ │ │ │ │ └── js │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ │ │ ├── defaults-eu.min.js │ │ │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ │ │ └── defaults-ro_RO.min.js │ │ │ │ ├── bootstrap-colorpicker │ │ │ │ │ └── img │ │ │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ ├── saturation.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ └── alpha-horizontal.png │ │ │ │ ├── bootstrap-datepicker │ │ │ │ │ └── locales │ │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.zh-TW.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.nb.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ │ └── bootstrap-datepicker.lt.min.js │ │ │ │ └── jquery-tags-input │ │ │ │ │ └── jquery.tagsinput.min.css │ │ │ │ ├── images │ │ │ │ ├── logo.png │ │ │ │ ├── captcha.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── gallery │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 5.jpg │ │ │ │ │ ├── 6.jpg │ │ │ │ │ ├── 7.jpg │ │ │ │ │ ├── 8.jpg │ │ │ │ │ ├── 9.jpg │ │ │ │ │ ├── 10.jpg │ │ │ │ │ ├── 11.jpg │ │ │ │ │ ├── 13.jpg │ │ │ │ │ ├── 14.jpg │ │ │ │ │ ├── 15.jpg │ │ │ │ │ ├── 16.jpg │ │ │ │ │ └── 17.jpg │ │ │ │ ├── logo-ico.png │ │ │ │ ├── img-slide-1.jpg │ │ │ │ ├── img-slide-2.jpg │ │ │ │ ├── img-slide-3.jpg │ │ │ │ ├── img-slide-4.jpg │ │ │ │ ├── img-slide-5.jpg │ │ │ │ ├── default-head.jpg │ │ │ │ ├── logo-sidebar.png │ │ │ │ ├── logo-sidebar1.png │ │ │ │ └── users │ │ │ │ │ └── avatar.jpg │ │ │ │ ├── layui │ │ │ │ ├── font │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ ├── images │ │ │ │ │ └── face │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ ├── 13.gif │ │ │ │ │ │ ├── 14.gif │ │ │ │ │ │ ├── 15.gif │ │ │ │ │ │ ├── 16.gif │ │ │ │ │ │ ├── 17.gif │ │ │ │ │ │ ├── 18.gif │ │ │ │ │ │ ├── 19.gif │ │ │ │ │ │ ├── 2.gif │ │ │ │ │ │ ├── 20.gif │ │ │ │ │ │ ├── 21.gif │ │ │ │ │ │ ├── 22.gif │ │ │ │ │ │ ├── 23.gif │ │ │ │ │ │ ├── 24.gif │ │ │ │ │ │ ├── 25.gif │ │ │ │ │ │ ├── 26.gif │ │ │ │ │ │ ├── 27.gif │ │ │ │ │ │ ├── 28.gif │ │ │ │ │ │ ├── 29.gif │ │ │ │ │ │ ├── 3.gif │ │ │ │ │ │ ├── 30.gif │ │ │ │ │ │ ├── 31.gif │ │ │ │ │ │ ├── 32.gif │ │ │ │ │ │ ├── 33.gif │ │ │ │ │ │ ├── 34.gif │ │ │ │ │ │ ├── 35.gif │ │ │ │ │ │ ├── 36.gif │ │ │ │ │ │ ├── 37.gif │ │ │ │ │ │ ├── 38.gif │ │ │ │ │ │ ├── 39.gif │ │ │ │ │ │ ├── 4.gif │ │ │ │ │ │ ├── 40.gif │ │ │ │ │ │ ├── 41.gif │ │ │ │ │ │ ├── 42.gif │ │ │ │ │ │ ├── 43.gif │ │ │ │ │ │ ├── 44.gif │ │ │ │ │ │ ├── 45.gif │ │ │ │ │ │ ├── 46.gif │ │ │ │ │ │ ├── 47.gif │ │ │ │ │ │ ├── 48.gif │ │ │ │ │ │ ├── 49.gif │ │ │ │ │ │ ├── 5.gif │ │ │ │ │ │ ├── 50.gif │ │ │ │ │ │ ├── 51.gif │ │ │ │ │ │ ├── 52.gif │ │ │ │ │ │ ├── 53.gif │ │ │ │ │ │ ├── 54.gif │ │ │ │ │ │ ├── 55.gif │ │ │ │ │ │ ├── 56.gif │ │ │ │ │ │ ├── 57.gif │ │ │ │ │ │ ├── 58.gif │ │ │ │ │ │ ├── 59.gif │ │ │ │ │ │ ├── 6.gif │ │ │ │ │ │ ├── 60.gif │ │ │ │ │ │ ├── 61.gif │ │ │ │ │ │ ├── 62.gif │ │ │ │ │ │ ├── 63.gif │ │ │ │ │ │ ├── 64.gif │ │ │ │ │ │ ├── 65.gif │ │ │ │ │ │ ├── 66.gif │ │ │ │ │ │ ├── 67.gif │ │ │ │ │ │ ├── 68.gif │ │ │ │ │ │ ├── 69.gif │ │ │ │ │ │ ├── 7.gif │ │ │ │ │ │ ├── 70.gif │ │ │ │ │ │ ├── 71.gif │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ └── 9.gif │ │ │ │ ├── css │ │ │ │ │ └── modules │ │ │ │ │ │ ├── layer │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ │ │ └── loading-2.gif │ │ │ │ │ │ └── laydate │ │ │ │ │ │ └── default │ │ │ │ │ │ └── font.css │ │ │ │ └── lay │ │ │ │ │ ├── all-mobile.js │ │ │ │ │ ├── modules │ │ │ │ │ └── mobile │ │ │ │ │ │ └── layim-mobile-open.js │ │ │ │ │ └── all.js │ │ │ │ └── fonts │ │ │ │ ├── materialdesignicons.eot │ │ │ │ ├── materialdesignicons.ttf │ │ │ │ ├── materialdesignicons.woff │ │ │ │ └── materialdesignicons.woff2 │ │ ├── site.properties │ │ ├── upload │ │ │ ├── 20200318 │ │ │ │ ├── 1584528797707.jpg │ │ │ │ └── 1584530412075.jpg │ │ │ ├── 20200322 │ │ │ │ ├── 1584847723819.jpg │ │ │ │ ├── 1584849717074.jpg │ │ │ │ ├── 1584849735063.jpg │ │ │ │ └── 1584850135123.jpg │ │ │ ├── 20200323 │ │ │ │ ├── 1584956641236.jpg │ │ │ │ └── 1584956702094.png │ │ │ ├── 20210222 │ │ │ │ └── 1613985004454.jpg │ │ │ ├── 20210223 │ │ │ │ ├── 1614049242626.jpg │ │ │ │ ├── 1614049256094.jpg │ │ │ │ └── 1614059828350.jpg │ │ │ ├── 20210224 │ │ │ │ ├── 1614132303026-bf58cfcd-72d2-46a2-82b1-023363c6ba94.jpg │ │ │ │ ├── 1614132351465-70edbc09-a8d0-4c48-8160-011f0fab6a6d.jpg │ │ │ │ ├── 1614132378453-79fba79c-6839-47d6-8f3a-bc5ee8e68fe2.jpg │ │ │ │ ├── 1614132441717-f91cd3e0-4439-4fd7-868b-e31a61acd2fb.jpg │ │ │ │ ├── 1614132462280-82dc5b73-b4d1-4cda-8951-b4f1d6a13863.jpg │ │ │ │ ├── 1614132502201-03cc894d-80ae-4b15-8635-2dd5dc1cedcb.png │ │ │ │ ├── 1614132502201-358eea62-9e64-4bec-82bc-f56fd99fca18.jpg │ │ │ │ ├── 1614133454798-3aa9abfe-56d5-429d-b1bf-6ac1f9093ec9.jpg │ │ │ │ ├── 1614133454798-ff45fd53-c497-47aa-bf41-4787b178e276.jpg │ │ │ │ ├── 1614133491504-5263b579-6e67-46be-83f9-bc1dc3700fb9.png │ │ │ │ ├── 1614133491509-4db1706a-755d-4442-8fed-d8c7b4b51a93.png │ │ │ │ ├── 1614133567772-4aa869fc-74b0-4842-90db-fe117d87ca1d.png │ │ │ │ ├── 1614133567772-bb42f790-5556-435a-827d-b1dc13ee47d2.png │ │ │ │ ├── 1614135050457-ae5e4f3d-7c47-4e59-b45b-5531d01543f5.jpg │ │ │ │ ├── 1614150700004-233ee02a-756a-465a-8731-cfaed2ab50de.jpg │ │ │ │ ├── 1614150700004-b751903c-22bb-4c35-8129-2336619178ce.jpg │ │ │ │ ├── 1614153572695-c5587dbf-aa57-4316-831a-a1596307e5fb.jpg │ │ │ │ ├── 1614153572697-788d03ad-61a4-4756-a6cc-2a8374b2c19f.jpg │ │ │ │ ├── 1614154229468-17cb6ba2-4efa-492f-ae13-2e54b467c060.jpg │ │ │ │ ├── 1614154275994-daf2796e-8cb1-444e-b3c2-556f502d96dd.jpg │ │ │ │ ├── 1614132303026-ce6ae58a-cfaa-471c-a1bf-ed11d7e46c38.jpeg │ │ │ │ ├── 1614132351461-cba5faa6-b5c8-4a3b-a69c-220db6bc9d53.jpeg │ │ │ │ ├── 1614132462280-dce41f1d-6e92-4504-8d47-ac533d524b95.jpeg │ │ │ │ ├── 1614135050457-20358290-379d-4027-89f1-6ac40808c58f.jpeg │ │ │ │ ├── 1614152117724-3d400faa-502a-48ba-8bcf-48eb0811265f.jpeg │ │ │ │ ├── 1614152117724-5609eaa7-48d8-404d-ac75-6fd4b93f4da1.jpeg │ │ │ │ ├── 1614153381419-dbf8e793-a728-471b-9947-97760398f717.jpeg │ │ │ │ ├── 1614153381430-bf8933a2-950f-40d1-a3cd-83da473bb3cb.jpeg │ │ │ │ ├── 1614154229463-d4d3fd69-dff1-4ba7-a247-1b8e63bd617f.jpeg │ │ │ │ ├── 1614154275995-aff3bdd5-f9ce-4d1f-a358-3b5201d7fd7e.jpeg │ │ │ │ ├── 1614154297102-60e1b885-ab84-4460-8163-97ffcd245a93.jpeg │ │ │ │ ├── 1614154297107-7d88ef52-382a-4d56-bbce-8cddc6c1f3dc.jpeg │ │ │ │ ├── 1614155027033-35aaab5e-97a2-470b-9ea8-34f21e05a605.jpeg │ │ │ │ ├── 1614155027033-b569b67e-ec90-4fe1-9bba-9141f7465d70.jpeg │ │ │ │ ├── 1614155105337-0495c3cf-5926-4a5b-8b55-633c95ee5251.jpeg │ │ │ │ ├── 1614155105337-bfa42809-bbbd-4527-a789-603165f07494.jpeg │ │ │ │ ├── 1614155187257-570e0f66-7235-4d33-9a6a-3c9ee377e6ff.jpeg │ │ │ │ ├── 1614155187277-0031fc08-9ca9-48c6-bfd0-0212394b7301.jpeg │ │ │ │ ├── 1614155795576-53fe76fe-816e-4ef8-b56b-cfa321b6c436.jpeg │ │ │ │ └── 1614155795576-5c5ab3a7-0702-4a93-ac68-7086076a3510.jpeg │ │ │ ├── 20210225 │ │ │ │ ├── 1614220722266-1183a3a2-a476-4177-875a-e5ce5a98a5eb.jpg │ │ │ │ ├── 1614221127468-2677c2a5-349a-40cd-a924-3642681a6100.jpg │ │ │ │ ├── 1614221184231-9b302905-8550-43c8-9a71-18e4f25ca53b.jpg │ │ │ │ ├── 1614221427507-221f7e29-c373-4eb9-b13e-e2149f8b9fce.jpg │ │ │ │ ├── 1614243352106-dc216bd4-11b4-4d1a-8bdd-aaafe3bf0088.jpg │ │ │ │ ├── 1614243388837-49096081-18e0-418e-aaa2-dc07b5ac3190.jpg │ │ │ │ ├── 1614243394771-7b56d0e5-4f80-4676-9388-87900644a94b.jpg │ │ │ │ ├── 1614243394773-1019c4c1-a32e-471e-918d-3b40f9b7db32.jpg │ │ │ │ ├── 1614243410020-5aec00a8-54af-47ec-9d9b-740375ccd92f.jpg │ │ │ │ ├── 1614243419087-416642d8-9d8e-47f2-a616-5866ac095a21.jpg │ │ │ │ ├── 1614243419095-6cbd5a40-a724-4c5a-a37f-7f47c0a501ea.jpg │ │ │ │ ├── 1614243532390-fbd26b48-bebe-48c1-85fb-86f9d617854e.jpg │ │ │ │ ├── 1614243532393-f4237f8a-b08e-43df-8886-d4ecaf01273f.jpg │ │ │ │ ├── 1614246178082-a3a59f11-a873-4c82-b459-618aef2f5480.jpg │ │ │ │ ├── 1614246819408-1cca34c6-22a4-44ac-8a26-5858e3cad0a1.jpg │ │ │ │ ├── 1614246819410-072f62b5-62c8-4295-970e-55652475fe5f.jpg │ │ │ │ ├── 1614246877379-1b36b60a-12c3-425e-aed2-eb62fbda359c.jpg │ │ │ │ ├── 1614246877384-f6198d78-c084-4a47-b9a7-e15ea08c1c84.jpg │ │ │ │ ├── 1614243404188-0151d1c9-2333-4c06-a3eb-5ae8b3ad829f.jpeg │ │ │ │ ├── 1614246155178-ca43b7a8-0ff8-43f2-b3cc-cfdb214b7ee1.jpeg │ │ │ │ ├── 1614246318118-8850409b-f0d9-4b25-962c-367d61193898.jpeg │ │ │ │ ├── 1614246339038-5ae80f59-b6bc-4ed5-bc9e-55c5c8c3f1e7.jpeg │ │ │ │ ├── 1614246769743-e56f92a9-4b1e-48f1-b075-059506bcd94a.jpeg │ │ │ │ └── 1614246769760-d69c8f10-6932-4477-8071-f920b2ce7295.jpeg │ │ │ ├── 20210226 │ │ │ │ ├── 1614302176627-48f367d9-ef9b-4096-9761-1e84dad35b5e.jpg │ │ │ │ ├── 1614304075093-e9191318-6f5b-4a1a-9f98-96bbc1e10fc9.jpg │ │ │ │ ├── 1614304144058-92baae43-3707-4ace-8eec-5d2eb72fdf69.jpg │ │ │ │ ├── 1614304192408-5772cd6e-6436-4984-9fb7-d51d4a62dab9.jpg │ │ │ │ ├── 1614304281421-7b941efa-2e54-4705-9ef7-7bacd2a791a0.jpg │ │ │ │ ├── 1614306650969-7ef4d2a0-3298-44b1-a39d-d3f0e38a6249.jpg │ │ │ │ ├── 1614308235820-bb29e9a8-446d-49c8-ae35-bab77b3d08f4.jpg │ │ │ │ ├── 1614319435098-4c992e09-7dc1-4a75-83d8-3da76ec0e79c.jpg │ │ │ │ ├── 1614319530289-0ed2fe89-413d-4abb-bbe5-42734260acbe.png │ │ │ │ ├── 1614323772676-f92234db-547c-47e5-aada-40178cb545a4.jpg │ │ │ │ ├── 1614327142938-56ae923c-cddc-4a4d-a2ec-80c1a7bd9171.jpg │ │ │ │ ├── 1614327176212-dfed7526-2462-43a6-a466-3d721884e800.jpg │ │ │ │ ├── 1614329308822-d78d43eb-1d85-4b83-b4e8-fb409ae3a76b.jpg │ │ │ │ ├── 1614329308827-b53aa72f-a973-48e9-9520-e7555a0d8e1e.jpg │ │ │ │ ├── 1614329369829-0b641170-03fb-4cd3-a303-e522b4bb40b0.jpg │ │ │ │ ├── 1614329369829-67a622f6-2f69-476c-a9fd-3c71664d026b.jpg │ │ │ │ ├── 1614329491739-794d72f7-c8cf-4f1e-99f1-2631e09e9de2.jpg │ │ │ │ ├── 1614329491740-2f2d4796-32c0-4ad7-bd50-d9e3311afbc3.jpg │ │ │ │ ├── 1614329498924-f804ae9d-bb25-45ff-9e63-0de54e52a0a8.jpg │ │ │ │ ├── 1614329498928-e4588aed-b83c-4255-8ff6-735a4c31d792.jpg │ │ │ │ ├── 1614329642311-19afb831-428a-461e-9180-92975920659f.jpg │ │ │ │ ├── 1614302176627-5379ae64-c989-49c3-add5-5ac03652a4bc.jpeg │ │ │ │ ├── 1614304075093-4b982e47-c297-4b93-9316-a963f27a9585.jpeg │ │ │ │ ├── 1614304144053-d4dfb4ce-1dc6-4ad4-9381-ee19dd905152.jpeg │ │ │ │ ├── 1614304192408-8fad3632-c67d-41f2-aaaf-97847130c24f.jpeg │ │ │ │ ├── 1614304281421-1bcd1d38-596a-4bf1-bb26-699f9c662163.jpeg │ │ │ │ ├── 1614306015414-633f5da2-0367-4339-8018-779e88a849c4.jpeg │ │ │ │ ├── 1614307606986-33b6e03a-ad0f-41f8-a3d5-3c8cd13717f8.jpeg │ │ │ │ ├── 1614307606986-af015095-506c-4f5a-a545-1198002e8ecc.jpeg │ │ │ │ ├── 1614307903070-af40bbd5-6596-4df3-9c25-b412a75449ad.jpeg │ │ │ │ ├── 1614308020927-7842e8d0-5a16-4c5e-b62d-018a9c2c6ddc.jpeg │ │ │ │ ├── 1614308214466-84783aee-1d38-41b1-86b8-0e62489269a2.jpeg │ │ │ │ ├── 1614310196406-a1af05f7-516f-4b42-801b-e6fa8665474a.jpeg │ │ │ │ ├── 1614310237043-0f23ac78-b45f-4697-8c6a-4e01be91afc6.jpeg │ │ │ │ ├── 1614310248173-d3bbfee3-bf2c-4af8-b649-19a43e542b15.jpeg │ │ │ │ ├── 1614310587205-44020a23-9d56-438c-85b0-5c6c16543a9f.jpeg │ │ │ │ ├── 1614318898566-309fea90-1f2a-4ba4-93da-be0db8d5cbe8.jpeg │ │ │ │ ├── 1614318962199-91e24a6e-6e0f-4258-8ecb-4d5d2c75c4e8.jpeg │ │ │ │ ├── 1614319234576-6e7e4f82-cbdf-40cb-9d5d-a40dcb491cd8.jpeg │ │ │ │ ├── 1614319394647-24fb2644-a075-4e7e-9092-fd585584f599.jpeg │ │ │ │ ├── 1614322600547-9b5efc8a-9098-4c16-acf3-7bc179f9a2e8.jpeg │ │ │ │ ├── 1614322605720-72b943a5-05c4-4a62-b65d-469f27605cd6.jpeg │ │ │ │ ├── 1614322605723-c9935492-56d6-4463-ac5f-5be3c946618e.jpeg │ │ │ │ ├── 1614323029633-817a5ec2-0ba6-432a-9f40-c6ade32c628f.jpeg │ │ │ │ ├── 1614323600210-4a0ec954-84a7-4a2b-9cbc-619cc26676db.jpeg │ │ │ │ ├── 1614323717150-94b50d39-5414-4b5e-a3c9-2c311f68019e.jpeg │ │ │ │ ├── 1614323734689-1cda9ed2-e894-485b-a6e2-5f6495e8469b.jpeg │ │ │ │ ├── 1614323782022-52d36e41-91fa-486b-967a-fbde5f2f0d9b.jpeg │ │ │ │ ├── 1614323782033-036e5553-d753-4437-bb66-8d5e5c9e9284.jpeg │ │ │ │ └── 1614329175597-d111383c-09a8-48ca-a2e9-98fcd21ce75d.jpeg │ │ │ └── 20210306 │ │ │ │ ├── 1615016773666-be7eacdc-207d-485b-acae-1a7d84f030d1.jpg │ │ │ │ ├── 1615016830359-e35c461b-84d4-4edb-a554-a295139204ea.jpg │ │ │ │ ├── 1615017002534-4cab4313-e188-4597-9981-eb136e079969.jpg │ │ │ │ ├── 1615017363944-7a1f8eae-0205-42a6-a0b8-6bf8d2bbd2f3.jpg │ │ │ │ ├── 1615017375580-9eceacf3-38f9-43b9-8009-a2816778fb04.jpg │ │ │ │ ├── 1615017386016-161f3420-2d97-4e2e-9bc2-53c986962fcc.jpg │ │ │ │ ├── 1615017392608-74e6fdd3-7bf8-4eff-92cb-ef1feb0f58c7.jpg │ │ │ │ ├── 1615017392612-b1304bb8-f158-4bbf-a9e0-ed4182be15c0.jpg │ │ │ │ ├── 1615017431174-473255a5-30cc-484b-a235-6601350da9c7.jpg │ │ │ │ ├── 1615017931626-f7921c9e-50e5-47f4-9116-de1e7e1fed3a.jpg │ │ │ │ ├── 1615017938317-5a8035d3-d71c-4789-86da-5f13ce93124f.jpg │ │ │ │ ├── 1615017938317-6e692fd8-c24e-48a7-9986-ad052c15c61f.jpg │ │ │ │ └── 1615017967014-8328e0e8-b05c-40ac-a658-50b382b383bb.jpg │ │ └── templates │ │ │ └── admin │ │ │ └── common │ │ │ ├── header.ftl │ │ │ ├── third-menu.ftl │ │ │ └── left-menu.ftl │ └── java │ │ └── com │ │ └── yuanlrc │ │ └── base │ │ ├── bean │ │ ├── IsDel.java │ │ ├── UserStatus.java │ │ └── UserType.java │ │ ├── dao │ │ └── admin │ │ │ ├── OrderAuthDao.java │ │ │ ├── MenuDao.java │ │ │ ├── RoleDao.java │ │ │ ├── CommunityDao.java │ │ │ └── DatabaseBakDao.java │ │ ├── constant │ │ └── SessionConstant.java │ │ ├── App.java │ │ ├── listener │ │ └── SessionListener.java │ │ └── config │ │ └── SiteConfig.java └── test │ └── java │ └── com │ └── yuanlrc │ └── base │ └── AppTest.java ├── .DS_Store └── .gitattributes /src/main/resources/static/admin/js/bootstrap-select/js/umd-outro.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | })); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/.eslintignore: -------------------------------------------------------------------------------- 1 | js/umd-intro.js 2 | js/umd-outro.js -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | *.vue linguist-language=java -------------------------------------------------------------------------------- /src/main/resources/site.properties: -------------------------------------------------------------------------------- 1 | #网站基础信息配置 2 | yuanlrc.site.name=\u733f\u6765\u5165\u6b64\u57fa\u7840\u811a\u624b\u67b6\u7cfb\u7edf 3 | yuanlrc.site.url=https://yuanlrc.com -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/captcha.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/8.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/9.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/logo-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/logo-ico.png -------------------------------------------------------------------------------- /src/main/resources/upload/20200318/1584528797707.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200318/1584528797707.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20200318/1584530412075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200318/1584530412075.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20200322/1584847723819.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200322/1584847723819.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20200322/1584849717074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200322/1584849717074.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20200322/1584849735063.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200322/1584849735063.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20200322/1584850135123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200322/1584850135123.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20200323/1584956641236.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200323/1584956641236.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20200323/1584956702094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20200323/1584956702094.png -------------------------------------------------------------------------------- /src/main/resources/upload/20210222/1613985004454.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210222/1613985004454.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210223/1614049242626.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210223/1614049242626.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210223/1614049256094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210223/1614049256094.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210223/1614059828350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210223/1614059828350.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/10.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/11.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/13.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/14.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/15.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/16.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/gallery/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/gallery/17.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/img-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/img-slide-1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/img-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/img-slide-2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/img-slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/img-slide-3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/img-slide-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/img-slide-4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/img-slide-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/img-slide-5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/default-head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/default-head.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/logo-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/logo-sidebar.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/logo-sidebar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/logo-sidebar1.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/images/users/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/images/users/avatar.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/fonts/materialdesignicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/fonts/materialdesignicons.eot -------------------------------------------------------------------------------- /src/main/resources/static/admin/fonts/materialdesignicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/fonts/materialdesignicons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/admin/fonts/materialdesignicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/fonts/materialdesignicons.woff -------------------------------------------------------------------------------- /src/main/resources/static/admin/fonts/materialdesignicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/fonts/materialdesignicons.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/lay/all-mobile.js: -------------------------------------------------------------------------------- 1 | /** 2 | 3 | @Name:用于打包移动完整版 4 | @Author:贤心 5 | @License:LGPL 6 | 7 | */ 8 | 9 | layui.define(function(exports){ 10 | exports('layui.mobile', layui.v); 11 | }); 12 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/lay/modules/mobile/layim-mobile-open.js: -------------------------------------------------------------------------------- 1 | /** 2 | 3 | @Name:layim mobile 开源包 4 | @Author:贤心 5 | @License:MIT 6 | 7 | */ 8 | 9 | layui.define(function(exports){ 10 | exports('layim-mobile', layui.v); 11 | }); -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132303026-bf58cfcd-72d2-46a2-82b1-023363c6ba94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132303026-bf58cfcd-72d2-46a2-82b1-023363c6ba94.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132351465-70edbc09-a8d0-4c48-8160-011f0fab6a6d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132351465-70edbc09-a8d0-4c48-8160-011f0fab6a6d.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132378453-79fba79c-6839-47d6-8f3a-bc5ee8e68fe2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132378453-79fba79c-6839-47d6-8f3a-bc5ee8e68fe2.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132441717-f91cd3e0-4439-4fd7-868b-e31a61acd2fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132441717-f91cd3e0-4439-4fd7-868b-e31a61acd2fb.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132462280-82dc5b73-b4d1-4cda-8951-b4f1d6a13863.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132462280-82dc5b73-b4d1-4cda-8951-b4f1d6a13863.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132502201-03cc894d-80ae-4b15-8635-2dd5dc1cedcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132502201-03cc894d-80ae-4b15-8635-2dd5dc1cedcb.png -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132502201-358eea62-9e64-4bec-82bc-f56fd99fca18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132502201-358eea62-9e64-4bec-82bc-f56fd99fca18.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614133454798-3aa9abfe-56d5-429d-b1bf-6ac1f9093ec9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614133454798-3aa9abfe-56d5-429d-b1bf-6ac1f9093ec9.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614133454798-ff45fd53-c497-47aa-bf41-4787b178e276.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614133454798-ff45fd53-c497-47aa-bf41-4787b178e276.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614133491504-5263b579-6e67-46be-83f9-bc1dc3700fb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614133491504-5263b579-6e67-46be-83f9-bc1dc3700fb9.png -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614133491509-4db1706a-755d-4442-8fed-d8c7b4b51a93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614133491509-4db1706a-755d-4442-8fed-d8c7b4b51a93.png -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614133567772-4aa869fc-74b0-4842-90db-fe117d87ca1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614133567772-4aa869fc-74b0-4842-90db-fe117d87ca1d.png -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614133567772-bb42f790-5556-435a-827d-b1dc13ee47d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614133567772-bb42f790-5556-435a-827d-b1dc13ee47d2.png -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614135050457-ae5e4f3d-7c47-4e59-b45b-5531d01543f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614135050457-ae5e4f3d-7c47-4e59-b45b-5531d01543f5.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614150700004-233ee02a-756a-465a-8731-cfaed2ab50de.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614150700004-233ee02a-756a-465a-8731-cfaed2ab50de.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614150700004-b751903c-22bb-4c35-8129-2336619178ce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614150700004-b751903c-22bb-4c35-8129-2336619178ce.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614153572695-c5587dbf-aa57-4316-831a-a1596307e5fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614153572695-c5587dbf-aa57-4316-831a-a1596307e5fb.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614153572697-788d03ad-61a4-4756-a6cc-2a8374b2c19f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614153572697-788d03ad-61a4-4756-a6cc-2a8374b2c19f.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614154229468-17cb6ba2-4efa-492f-ae13-2e54b467c060.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614154229468-17cb6ba2-4efa-492f-ae13-2e54b467c060.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614154275994-daf2796e-8cb1-444e-b3c2-556f502d96dd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614154275994-daf2796e-8cb1-444e-b3c2-556f502d96dd.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614220722266-1183a3a2-a476-4177-875a-e5ce5a98a5eb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614220722266-1183a3a2-a476-4177-875a-e5ce5a98a5eb.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614221127468-2677c2a5-349a-40cd-a924-3642681a6100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614221127468-2677c2a5-349a-40cd-a924-3642681a6100.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614221184231-9b302905-8550-43c8-9a71-18e4f25ca53b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614221184231-9b302905-8550-43c8-9a71-18e4f25ca53b.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614221427507-221f7e29-c373-4eb9-b13e-e2149f8b9fce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614221427507-221f7e29-c373-4eb9-b13e-e2149f8b9fce.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243352106-dc216bd4-11b4-4d1a-8bdd-aaafe3bf0088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243352106-dc216bd4-11b4-4d1a-8bdd-aaafe3bf0088.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243388837-49096081-18e0-418e-aaa2-dc07b5ac3190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243388837-49096081-18e0-418e-aaa2-dc07b5ac3190.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243394771-7b56d0e5-4f80-4676-9388-87900644a94b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243394771-7b56d0e5-4f80-4676-9388-87900644a94b.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243394773-1019c4c1-a32e-471e-918d-3b40f9b7db32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243394773-1019c4c1-a32e-471e-918d-3b40f9b7db32.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243410020-5aec00a8-54af-47ec-9d9b-740375ccd92f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243410020-5aec00a8-54af-47ec-9d9b-740375ccd92f.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243419087-416642d8-9d8e-47f2-a616-5866ac095a21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243419087-416642d8-9d8e-47f2-a616-5866ac095a21.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243419095-6cbd5a40-a724-4c5a-a37f-7f47c0a501ea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243419095-6cbd5a40-a724-4c5a-a37f-7f47c0a501ea.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243532390-fbd26b48-bebe-48c1-85fb-86f9d617854e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243532390-fbd26b48-bebe-48c1-85fb-86f9d617854e.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243532393-f4237f8a-b08e-43df-8886-d4ecaf01273f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243532393-f4237f8a-b08e-43df-8886-d4ecaf01273f.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246178082-a3a59f11-a873-4c82-b459-618aef2f5480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246178082-a3a59f11-a873-4c82-b459-618aef2f5480.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246819408-1cca34c6-22a4-44ac-8a26-5858e3cad0a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246819408-1cca34c6-22a4-44ac-8a26-5858e3cad0a1.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246819410-072f62b5-62c8-4295-970e-55652475fe5f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246819410-072f62b5-62c8-4295-970e-55652475fe5f.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246877379-1b36b60a-12c3-425e-aed2-eb62fbda359c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246877379-1b36b60a-12c3-425e-aed2-eb62fbda359c.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246877384-f6198d78-c084-4a47-b9a7-e15ea08c1c84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246877384-f6198d78-c084-4a47-b9a7-e15ea08c1c84.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614302176627-48f367d9-ef9b-4096-9761-1e84dad35b5e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614302176627-48f367d9-ef9b-4096-9761-1e84dad35b5e.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304075093-e9191318-6f5b-4a1a-9f98-96bbc1e10fc9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304075093-e9191318-6f5b-4a1a-9f98-96bbc1e10fc9.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304144058-92baae43-3707-4ace-8eec-5d2eb72fdf69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304144058-92baae43-3707-4ace-8eec-5d2eb72fdf69.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304192408-5772cd6e-6436-4984-9fb7-d51d4a62dab9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304192408-5772cd6e-6436-4984-9fb7-d51d4a62dab9.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304281421-7b941efa-2e54-4705-9ef7-7bacd2a791a0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304281421-7b941efa-2e54-4705-9ef7-7bacd2a791a0.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614306650969-7ef4d2a0-3298-44b1-a39d-d3f0e38a6249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614306650969-7ef4d2a0-3298-44b1-a39d-d3f0e38a6249.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614308235820-bb29e9a8-446d-49c8-ae35-bab77b3d08f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614308235820-bb29e9a8-446d-49c8-ae35-bab77b3d08f4.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614319435098-4c992e09-7dc1-4a75-83d8-3da76ec0e79c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614319435098-4c992e09-7dc1-4a75-83d8-3da76ec0e79c.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614319530289-0ed2fe89-413d-4abb-bbe5-42734260acbe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614319530289-0ed2fe89-413d-4abb-bbe5-42734260acbe.png -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614323772676-f92234db-547c-47e5-aada-40178cb545a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614323772676-f92234db-547c-47e5-aada-40178cb545a4.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614327142938-56ae923c-cddc-4a4d-a2ec-80c1a7bd9171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614327142938-56ae923c-cddc-4a4d-a2ec-80c1a7bd9171.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614327176212-dfed7526-2462-43a6-a466-3d721884e800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614327176212-dfed7526-2462-43a6-a466-3d721884e800.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329308822-d78d43eb-1d85-4b83-b4e8-fb409ae3a76b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329308822-d78d43eb-1d85-4b83-b4e8-fb409ae3a76b.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329308827-b53aa72f-a973-48e9-9520-e7555a0d8e1e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329308827-b53aa72f-a973-48e9-9520-e7555a0d8e1e.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329369829-0b641170-03fb-4cd3-a303-e522b4bb40b0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329369829-0b641170-03fb-4cd3-a303-e522b4bb40b0.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329369829-67a622f6-2f69-476c-a9fd-3c71664d026b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329369829-67a622f6-2f69-476c-a9fd-3c71664d026b.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329491739-794d72f7-c8cf-4f1e-99f1-2631e09e9de2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329491739-794d72f7-c8cf-4f1e-99f1-2631e09e9de2.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329491740-2f2d4796-32c0-4ad7-bd50-d9e3311afbc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329491740-2f2d4796-32c0-4ad7-bd50-d9e3311afbc3.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329498924-f804ae9d-bb25-45ff-9e63-0de54e52a0a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329498924-f804ae9d-bb25-45ff-9e63-0de54e52a0a8.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329498928-e4588aed-b83c-4255-8ff6-735a4c31d792.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329498928-e4588aed-b83c-4255-8ff6-735a4c31d792.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329642311-19afb831-428a-461e-9180-92975920659f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329642311-19afb831-428a-461e-9180-92975920659f.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615016773666-be7eacdc-207d-485b-acae-1a7d84f030d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615016773666-be7eacdc-207d-485b-acae-1a7d84f030d1.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615016830359-e35c461b-84d4-4edb-a554-a295139204ea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615016830359-e35c461b-84d4-4edb-a554-a295139204ea.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017002534-4cab4313-e188-4597-9981-eb136e079969.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017002534-4cab4313-e188-4597-9981-eb136e079969.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017363944-7a1f8eae-0205-42a6-a0b8-6bf8d2bbd2f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017363944-7a1f8eae-0205-42a6-a0b8-6bf8d2bbd2f3.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017375580-9eceacf3-38f9-43b9-8009-a2816778fb04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017375580-9eceacf3-38f9-43b9-8009-a2816778fb04.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017386016-161f3420-2d97-4e2e-9bc2-53c986962fcc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017386016-161f3420-2d97-4e2e-9bc2-53c986962fcc.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017392608-74e6fdd3-7bf8-4eff-92cb-ef1feb0f58c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017392608-74e6fdd3-7bf8-4eff-92cb-ef1feb0f58c7.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017392612-b1304bb8-f158-4bbf-a9e0-ed4182be15c0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017392612-b1304bb8-f158-4bbf-a9e0-ed4182be15c0.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017431174-473255a5-30cc-484b-a235-6601350da9c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017431174-473255a5-30cc-484b-a235-6601350da9c7.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017931626-f7921c9e-50e5-47f4-9116-de1e7e1fed3a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017931626-f7921c9e-50e5-47f4-9116-de1e7e1fed3a.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017938317-5a8035d3-d71c-4789-86da-5f13ce93124f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017938317-5a8035d3-d71c-4789-86da-5f13ce93124f.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017938317-6e692fd8-c24e-48a7-9986-ad052c15c61f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017938317-6e692fd8-c24e-48a7-9986-ad052c15c61f.jpg -------------------------------------------------------------------------------- /src/main/resources/upload/20210306/1615017967014-8328e0e8-b05c-40ac-a658-50b382b383bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210306/1615017967014-8328e0e8-b05c-40ac-a658-50b382b383bb.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/.gitignore: -------------------------------------------------------------------------------- 1 | # OS or Editor folders 2 | .DS_Store 3 | .idea 4 | 5 | # Folders to ignore 6 | node_modules 7 | bower_components 8 | .sass-cache 9 | 10 | # Dist zip 11 | bootstrap-select-*.zip 12 | 13 | docs/site 14 | -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132303026-ce6ae58a-cfaa-471c-a1bf-ed11d7e46c38.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132303026-ce6ae58a-cfaa-471c-a1bf-ed11d7e46c38.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132351461-cba5faa6-b5c8-4a3b-a69c-220db6bc9d53.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132351461-cba5faa6-b5c8-4a3b-a69c-220db6bc9d53.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614132462280-dce41f1d-6e92-4504-8d47-ac533d524b95.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614132462280-dce41f1d-6e92-4504-8d47-ac533d524b95.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614135050457-20358290-379d-4027-89f1-6ac40808c58f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614135050457-20358290-379d-4027-89f1-6ac40808c58f.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614152117724-3d400faa-502a-48ba-8bcf-48eb0811265f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614152117724-3d400faa-502a-48ba-8bcf-48eb0811265f.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614152117724-5609eaa7-48d8-404d-ac75-6fd4b93f4da1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614152117724-5609eaa7-48d8-404d-ac75-6fd4b93f4da1.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614153381419-dbf8e793-a728-471b-9947-97760398f717.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614153381419-dbf8e793-a728-471b-9947-97760398f717.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614153381430-bf8933a2-950f-40d1-a3cd-83da473bb3cb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614153381430-bf8933a2-950f-40d1-a3cd-83da473bb3cb.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614154229463-d4d3fd69-dff1-4ba7-a247-1b8e63bd617f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614154229463-d4d3fd69-dff1-4ba7-a247-1b8e63bd617f.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614154275995-aff3bdd5-f9ce-4d1f-a358-3b5201d7fd7e.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614154275995-aff3bdd5-f9ce-4d1f-a358-3b5201d7fd7e.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614154297102-60e1b885-ab84-4460-8163-97ffcd245a93.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614154297102-60e1b885-ab84-4460-8163-97ffcd245a93.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614154297107-7d88ef52-382a-4d56-bbce-8cddc6c1f3dc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614154297107-7d88ef52-382a-4d56-bbce-8cddc6c1f3dc.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155027033-35aaab5e-97a2-470b-9ea8-34f21e05a605.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155027033-35aaab5e-97a2-470b-9ea8-34f21e05a605.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155027033-b569b67e-ec90-4fe1-9bba-9141f7465d70.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155027033-b569b67e-ec90-4fe1-9bba-9141f7465d70.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155105337-0495c3cf-5926-4a5b-8b55-633c95ee5251.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155105337-0495c3cf-5926-4a5b-8b55-633c95ee5251.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155105337-bfa42809-bbbd-4527-a789-603165f07494.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155105337-bfa42809-bbbd-4527-a789-603165f07494.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155187257-570e0f66-7235-4d33-9a6a-3c9ee377e6ff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155187257-570e0f66-7235-4d33-9a6a-3c9ee377e6ff.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155187277-0031fc08-9ca9-48c6-bfd0-0212394b7301.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155187277-0031fc08-9ca9-48c6-bfd0-0212394b7301.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155795576-53fe76fe-816e-4ef8-b56b-cfa321b6c436.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155795576-53fe76fe-816e-4ef8-b56b-cfa321b6c436.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210224/1614155795576-5c5ab3a7-0702-4a93-ac68-7086076a3510.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210224/1614155795576-5c5ab3a7-0702-4a93-ac68-7086076a3510.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614243404188-0151d1c9-2333-4c06-a3eb-5ae8b3ad829f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614243404188-0151d1c9-2333-4c06-a3eb-5ae8b3ad829f.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246155178-ca43b7a8-0ff8-43f2-b3cc-cfdb214b7ee1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246155178-ca43b7a8-0ff8-43f2-b3cc-cfdb214b7ee1.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246318118-8850409b-f0d9-4b25-962c-367d61193898.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246318118-8850409b-f0d9-4b25-962c-367d61193898.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246339038-5ae80f59-b6bc-4ed5-bc9e-55c5c8c3f1e7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246339038-5ae80f59-b6bc-4ed5-bc9e-55c5c8c3f1e7.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246769743-e56f92a9-4b1e-48f1-b075-059506bcd94a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246769743-e56f92a9-4b1e-48f1-b075-059506bcd94a.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210225/1614246769760-d69c8f10-6932-4477-8071-f920b2ce7295.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210225/1614246769760-d69c8f10-6932-4477-8071-f920b2ce7295.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614302176627-5379ae64-c989-49c3-add5-5ac03652a4bc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614302176627-5379ae64-c989-49c3-add5-5ac03652a4bc.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304075093-4b982e47-c297-4b93-9316-a963f27a9585.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304075093-4b982e47-c297-4b93-9316-a963f27a9585.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304144053-d4dfb4ce-1dc6-4ad4-9381-ee19dd905152.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304144053-d4dfb4ce-1dc6-4ad4-9381-ee19dd905152.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304192408-8fad3632-c67d-41f2-aaaf-97847130c24f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304192408-8fad3632-c67d-41f2-aaaf-97847130c24f.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614304281421-1bcd1d38-596a-4bf1-bb26-699f9c662163.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614304281421-1bcd1d38-596a-4bf1-bb26-699f9c662163.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614306015414-633f5da2-0367-4339-8018-779e88a849c4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614306015414-633f5da2-0367-4339-8018-779e88a849c4.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614307606986-33b6e03a-ad0f-41f8-a3d5-3c8cd13717f8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614307606986-33b6e03a-ad0f-41f8-a3d5-3c8cd13717f8.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614307606986-af015095-506c-4f5a-a545-1198002e8ecc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614307606986-af015095-506c-4f5a-a545-1198002e8ecc.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614307903070-af40bbd5-6596-4df3-9c25-b412a75449ad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614307903070-af40bbd5-6596-4df3-9c25-b412a75449ad.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614308020927-7842e8d0-5a16-4c5e-b62d-018a9c2c6ddc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614308020927-7842e8d0-5a16-4c5e-b62d-018a9c2c6ddc.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614308214466-84783aee-1d38-41b1-86b8-0e62489269a2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614308214466-84783aee-1d38-41b1-86b8-0e62489269a2.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614310196406-a1af05f7-516f-4b42-801b-e6fa8665474a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614310196406-a1af05f7-516f-4b42-801b-e6fa8665474a.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614310237043-0f23ac78-b45f-4697-8c6a-4e01be91afc6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614310237043-0f23ac78-b45f-4697-8c6a-4e01be91afc6.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614310248173-d3bbfee3-bf2c-4af8-b649-19a43e542b15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614310248173-d3bbfee3-bf2c-4af8-b649-19a43e542b15.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614310587205-44020a23-9d56-438c-85b0-5c6c16543a9f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614310587205-44020a23-9d56-438c-85b0-5c6c16543a9f.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614318898566-309fea90-1f2a-4ba4-93da-be0db8d5cbe8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614318898566-309fea90-1f2a-4ba4-93da-be0db8d5cbe8.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614318962199-91e24a6e-6e0f-4258-8ecb-4d5d2c75c4e8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614318962199-91e24a6e-6e0f-4258-8ecb-4d5d2c75c4e8.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614319234576-6e7e4f82-cbdf-40cb-9d5d-a40dcb491cd8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614319234576-6e7e4f82-cbdf-40cb-9d5d-a40dcb491cd8.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614319394647-24fb2644-a075-4e7e-9092-fd585584f599.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614319394647-24fb2644-a075-4e7e-9092-fd585584f599.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614322600547-9b5efc8a-9098-4c16-acf3-7bc179f9a2e8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614322600547-9b5efc8a-9098-4c16-acf3-7bc179f9a2e8.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614322605720-72b943a5-05c4-4a62-b65d-469f27605cd6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614322605720-72b943a5-05c4-4a62-b65d-469f27605cd6.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614322605723-c9935492-56d6-4463-ac5f-5be3c946618e.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614322605723-c9935492-56d6-4463-ac5f-5be3c946618e.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614323029633-817a5ec2-0ba6-432a-9f40-c6ade32c628f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614323029633-817a5ec2-0ba6-432a-9f40-c6ade32c628f.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614323600210-4a0ec954-84a7-4a2b-9cbc-619cc26676db.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614323600210-4a0ec954-84a7-4a2b-9cbc-619cc26676db.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614323717150-94b50d39-5414-4b5e-a3c9-2c311f68019e.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614323717150-94b50d39-5414-4b5e-a3c9-2c311f68019e.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614323734689-1cda9ed2-e894-485b-a6e2-5f6495e8469b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614323734689-1cda9ed2-e894-485b-a6e2-5f6495e8469b.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614323782022-52d36e41-91fa-486b-967a-fbde5f2f0d9b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614323782022-52d36e41-91fa-486b-967a-fbde5f2f0d9b.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614323782033-036e5553-d753-4437-bb66-8d5e5c9e9284.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614323782033-036e5553-d753-4437-bb66-8d5e5c9e9284.jpeg -------------------------------------------------------------------------------- /src/main/resources/upload/20210226/1614329175597-d111383c-09a8-48ca-a2e9-98fcd21ce75d.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/upload/20210226/1614329175597-d111383c-09a8-48ca-a2e9-98fcd21ce75d.jpeg -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/NucleicAcidDetectionManagementSystem/HEAD/src/main/resources/static/admin/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/lay/all.js: -------------------------------------------------------------------------------- 1 | /** 2 | 3 | @Name:用于打包PC完整版,即包含layui.js和所有模块的完整合并(该文件不会存在于构建后的目录) 4 | @Author:贤心 5 | @License:LGPL 6 | 7 | */ 8 | 9 | layui.define(function(exports){ 10 | var cache = layui.cache; 11 | layui.config({ 12 | dir: cache.dir.replace(/lay\/dest\/$/, '') 13 | }); 14 | exports('layui.all', layui.v); 15 | }); 16 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/bean/IsDel.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.bean; 2 | 3 | /** 4 | * 是否被删除 5 | */ 6 | public enum IsDel { 7 | DEL(0, "已删除"), 8 | NOT_DEL(1, "未删除"); 9 | 10 | private Integer code; 11 | private String value; 12 | 13 | IsDel(Integer code, String value) { 14 | this.code = code; 15 | this.value = value; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kr={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]}}(jQuery); -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/dao/admin/OrderAuthDao.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.dao.admin; 2 | /** 3 | * 后台操作日志类数据库操作层 4 | */ 5 | import com.yuanlrc.base.entity.admin.OrderAuth; 6 | import org.springframework.data.jpa.repository.JpaRepository; 7 | import org.springframework.stereotype.Repository; 8 | 9 | @Repository 10 | public interface OrderAuthDao extends JpaRepository { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/test/java/com/yuanlrc/base/AppTest.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base; 2 | 3 | import static org.junit.Assert.assertTrue; 4 | 5 | import org.junit.Test; 6 | 7 | /** 8 | * Unit test for simple App. 9 | */ 10 | public class AppTest 11 | { 12 | /** 13 | * Rigorous Test :-) 14 | */ 15 | @Test 16 | public void shouldAnswerWithTrue() 17 | { 18 | assertTrue( true ); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/playground/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/playground/3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/constant/SessionConstant.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.constant; 2 | /** 3 | * 关于session的所有常量统一存放类 4 | * @author Administrator 5 | * 6 | */ 7 | public class SessionConstant { 8 | 9 | public static final String SESSION_USER_LOGIN_KEY = "ylrc_user"; 10 | 11 | public static final String SESSION_SEARCH_IDCARD = "ylrc_idcard"; 12 | 13 | public static final String SESSION_USER_AUTH_KEY = "ylrc_auth"; 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"],daysShort:["日","月","火","水","木","金","土"],daysMin:["日","月","火","水","木","金","土"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",titleFormat:"yyyy年mm月",clear:"クリア"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["週日","週一","週二","週三","週四","週五","週六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1,clear:"清除"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ko={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],today:"오늘",clear:"삭제",format:"yyyy-mm-dd",titleFormat:"yyyy년mm월",weekStart:0}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.he={days:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון"],daysShort:["א","ב","ג","ד","ה","ו","ש","א"],daysMin:["א","ב","ג","ד","ה","ו","ש","א"],months:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthsShort:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],today:"היום",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-CN"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["周日","周一","周二","周三","周四","周五","周六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",clear:"清除",format:"yyyy年mm月dd日",titleFormat:"yyyy年mm月",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bg={days:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],daysShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],daysMin:["Н","П","В","С","Ч","П","С"],months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Ян","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек"],today:"днес"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cy={days:["Sul","Llun","Mawrth","Mercher","Iau","Gwener","Sadwrn"],daysShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad"],daysMin:["Su","Ll","Ma","Me","Ia","Gwe","Sa"],months:["Ionawr","Chewfror","Mawrth","Ebrill","Mai","Mehefin","Gorfennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthsShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tach","Rha"],today:"Heddiw"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.sw.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sw={days:["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi"],daysShort:["J2","J3","J4","J5","Alh","Ij","J1"],daysMin:["2","3","4","5","A","I","1"],months:["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"],monthsShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ago","Sep","Okt","Nov","Des"],today:"Leo"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sl={days:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],daysShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],daysMin:["Ne","Po","To","Sr","Če","Pe","So"],months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danes"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sq={days:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë"],daysShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu"],daysMin:["Di","Hë","Ma","Më","En","Pr","Sht"],months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthsShort:["Jan","Shk","Mar","Pri","Maj","Qer","Korr","Gu","Sht","Tet","Nën","Dhjet"],today:"Sot"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ms={days:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],daysShort:["Aha","Isn","Sel","Rab","Kha","Jum","Sab"],daysMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],months:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],today:"Hari Ini",clear:"Bersihkan"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.da={days:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],daysShort:["søn","man","tir","ons","tor","fre","lør"],daysMin:["sø","ma","ti","on","to","fr","lø"],months:["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"],monthsShort:["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"],today:"I Dag",clear:"Nulstil"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.id={days:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],daysShort:["Mgu","Sen","Sel","Rab","Kam","Jum","Sab"],daysMin:["Mg","Sn","Sl","Ra","Ka","Ju","Sa"],months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],today:"Hari Ini",clear:"Kosongkan"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kk={days:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],daysShort:["Жек","Дүй","Сей","Сәр","Бей","Жұм","Сен"],daysMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],months:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthsShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],today:"Бүгін",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eu={days:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"],daysShort:["Ig","Al","Ar","Az","Og","Ol","Lr"],daysMin:["Ig","Al","Ar","Az","Og","Ol","Lr"],months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],monthsShort:["Urt","Ots","Mar","Api","Mai","Eka","Uzt","Abu","Ira","Urr","Aza","Abe"],today:"Gaur"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hr={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthsShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],today:"Danas"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.nb.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nb={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I Dag",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.az={days:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],daysShort:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],daysMin:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],months:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],today:"Bu gün",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.mk={days:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],daysShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],daysMin:["Не","По","Вт","Ср","Че","Пе","Са"],months:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],today:"Денес",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.mn={days:["Ням","Даваа","Мягмар","Лхагва","Пүрэв","Баасан","Бямба"],daysShort:["Ням","Дав","Мяг","Лха","Пүр","Баа","Бям"],daysMin:["Ня","Да","Мя","Лх","Пү","Ба","Бя"],months:["Хулгана","Үхэр","Бар","Туулай","Луу","Могой","Морь","Хонь","Бич","Тахиа","Нохой","Гахай"],monthsShort:["Хул","Үхэ","Бар","Туу","Луу","Мог","Мор","Хон","Бич","Тах","Нох","Гах"],today:"Өнөөдөр",clear:"Тодорхой",format:"yyyy.mm.dd",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.rs={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sr={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.th={days:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัส","ศุกร์","เสาร์","อาทิตย์"],daysShort:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],daysMin:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],months:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthsShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],today:"วันนี้"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.is={days:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],daysShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],daysMin:["Su","Má","Þr","Mi","Fi","Fö","La"],months:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],today:"Í Dag"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bs={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/templates/admin/common/header.ftl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cs={days:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"],daysShort:["Ned","Pon","Úte","Stř","Čtv","Pát","Sob"],daysMin:["Ne","Po","Út","St","Čt","Pá","So"],months:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],monthsShort:["Led","Úno","Bře","Dub","Kvě","Čer","Čnc","Srp","Zář","Říj","Lis","Pro"],today:"Dnes",clear:"Vymazat",weekStart:1,format:"dd.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fo={days:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leygardagur"],daysShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],daysMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],months:["Januar","Februar","Marts","Apríl","Mei","Juni","Juli","August","Septembur","Oktobur","Novembur","Desembur"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"Í Dag",clear:"Reinsa"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lv={days:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena"],daysShort:["Sv","P","O","T","C","Pk","S"],daysMin:["Sv","Pr","Ot","Tr","Ce","Pk","Se"],months:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],today:"Šodien",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ro={days:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],daysShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],daysMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],months:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthsShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],today:"Astăzi",clear:"Șterge",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.tr={days:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],daysShort:["Pz","Pzt","Sal","Çrş","Prş","Cu","Cts"],daysMin:["Pz","Pzt","Sa","Çr","Pr","Cu","Ct"],months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthsShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],today:"Bugün",clear:"Temizle",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fa={days:["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه","یک‌شنبه"],daysShort:["یک","دو","سه","چهار","پنج","جمعه","شنبه","یک"],daysMin:["ی","د","س","چ","پ","ج","ش","ی"],months:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthsShort:["ژان","فور","مار","آور","مه","ژون","ژوی","اوت","سپت","اکت","نوا","دسا"],today:"امروز",clear:"پاک کن",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.gl={days:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],daysShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],daysMin:["Do","Lu","Ma","Me","Xo","Ve","Sa"],months:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthsShort:["Xan","Feb","Mar","Abr","Mai","Xun","Xul","Ago","Sep","Out","Nov","Dec"],today:"Hoxe",clear:"Limpar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["rs-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sk={days:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],daysShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],daysMin:["Ne","Po","Ut","St","Št","Pia","So"],months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],today:"Dnes",clear:"Vymazať",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["sr-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sv={days:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],daysShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],daysMin:["Sö","Må","Ti","On","To","Fr","Lö"],months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-zh_CN.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ZH (Chinese) 4 | * Region: CN (China) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '没有选中任何项', 9 | noneResultsText: '没有找到匹配项', 10 | countSelectedText: '选中{1}中的{0}项', 11 | maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'], 12 | multipleSeparator: ', ', 13 | selectAllText: '全选', 14 | deselectAllText: '取消全选' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ar={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.me={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,clear:"Izbriši",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.no={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I dag",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-zh_TW.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ZH (Chinese) 4 | * Region: TW (Taiwan) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '沒有選取任何項目', 9 | noneResultsText: '沒有找到符合的結果', 10 | countSelectedText: '已經選取{0}個項目', 11 | maxOptionsText: ['超過限制 (最多選擇{n}項)', '超過限制(最多選擇{n}組)'], 12 | selectAllText: '選取全部', 13 | deselectAllText: '全部取消', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pt={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ru={days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],daysShort:["Вск","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Сегодня",clear:"Очистить",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.vi={days:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy"],daysShort:["CN","Thứ 2","Thứ 3","Thứ 4","Thứ 5","Thứ 6","Thứ 7"],daysMin:["CN","T2","T3","T4","T5","T6","T7"],months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],monthsShort:["Th1","Th2","Th3","Th4","Th5","Th6","Th7","Th8","Th9","Th10","Th11","Th12"],today:"Hôm nay",clear:"Xóa",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eo={days:["dimanĉo","lundo","mardo","merkredo","ĵaŭdo","vendredo","sabato"],daysShort:["dim.","lun.","mar.","mer.","ĵaŭ.","ven.","sam."],daysMin:["d","l","ma","me","ĵ","v","s"],months:["januaro","februaro","marto","aprilo","majo","junio","julio","aŭgusto","septembro","oktobro","novembro","decembro"],monthsShort:["jan.","feb.","mar.","apr.","majo","jun.","jul.","aŭg.","sep.","okt.","nov.","dec."],today:"Hodiaŭ",clear:"Nuligi",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",monthsTitle:"Meses",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.uk={days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"],daysShort:["Нед","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Cічень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthsShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],today:"Сьогодні",clear:"Очистити",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ca={days:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],daysShort:["Diu","Dil","Dmt","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dt","dc","dj","dv","ds"],months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],today:"Avui",monthsTitle:"Mesos",clear:"Esborrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",monthsTitle:"Monate",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],daysShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],daysMin:["D","L","Ma","Me","J","V","S"],months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthsShort:["Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aou","Sep","Oct","Nov","Déc"],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hy={days:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],daysShort:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],daysMin:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthsShort:["Հուն","Փետ","Մար","Ապր","Մայ","Հնս","Հլս","Օգս","Սեպ","Հոկ","Նմբ","Դեկ"],today:"Այսօր",clear:"Ջնջել",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ka={days:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],daysShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],daysMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომები","ნოემბერი","დეკემბერი"],monthsShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],today:"დღეს",clear:"გასუფთავება",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kh={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍","អាទិត្យ"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nl={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Wissen",weekStart:1,format:"dd-mm-yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hu={days:["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"],daysShort:["vas","hét","ked","sze","csü","pén","szo"],daysMin:["V","H","K","Sze","Cs","P","Szo"],months:["január","február","március","április","május","június","július","augusztus","szeptember","október","november","december"],monthsShort:["jan","feb","már","ápr","máj","jún","júl","aug","sze","okt","nov","dec"],today:"ma",weekStart:1,clear:"töröl",titleFormat:"yyyy. MM",format:"yyyy.mm.dd"}}(jQuery); -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/dao/admin/MenuDao.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.dao.admin; 2 | /** 3 | * 后台菜单数据库操作层 4 | */ 5 | import org.springframework.data.jpa.repository.JpaRepository; 6 | import org.springframework.data.jpa.repository.Query; 7 | import org.springframework.data.repository.query.Param; 8 | import org.springframework.stereotype.Repository; 9 | 10 | import com.yuanlrc.base.entity.admin.Menu; 11 | 12 | @Repository 13 | public interface MenuDao extends JpaRepository { 14 | @Query("select m from Menu m where m.id = :id") 15 | Menu find(@Param("id")Long id); 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/dao/admin/RoleDao.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.dao.admin; 2 | /** 3 | * 后台角色数据库操作层 4 | */ 5 | import org.springframework.data.jpa.repository.JpaRepository; 6 | import org.springframework.data.jpa.repository.Query; 7 | import org.springframework.data.repository.query.Param; 8 | import org.springframework.stereotype.Repository; 9 | 10 | import com.yuanlrc.base.entity.admin.Role; 11 | 12 | @Repository 13 | public interface RoleDao extends JpaRepository { 14 | @Query("select r from Role r where r.id = :id") 15 | Role find(@Param("id")Long id); 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.el={days:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],daysShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],daysMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],months:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthsShort:["Ιαν","Φεβ","Μαρ","Απρ","Μάι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],today:"Σήμερα",clear:"Καθαρισμός",weekStart:1,format:"d/m/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-AU"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"d/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-GB"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fi={days:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"],daysShort:["sun","maa","tii","kes","tor","per","lau"],daysMin:["su","ma","ti","ke","to","pe","la"],months:["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"],monthsShort:["tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mar","jou"],today:"tänään",clear:"Tyhjennä",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",monthsTitle:"Mesi",clear:"Cancella",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.et={days:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],daysShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],daysMin:["P","E","T","K","N","R","L"],months:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthsShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],today:"Täna",clear:"Tühjenda",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["nl-BE"]={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Leegmaken",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/templates/admin/common/third-menu.ftl: -------------------------------------------------------------------------------- 1 |
2 | <#if userThirdMenus??> 3 | <#list userThirdMenus as userThirdMenu> 4 | <#if userThirdMenu.show == true> 5 | <#if userThirdMenu.button == true> 6 | ${userThirdMenu.name} 7 | <#else> 8 | ${userThirdMenu.name} 9 | 10 | 11 | 12 | 13 |
-------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],daysShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],daysMin:["d","l","ma","me","j","v","s"],months:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthsShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/less/variables.less: -------------------------------------------------------------------------------- 1 | @color-red-error: rgb(185, 74, 72); 2 | @color-green-success: #28a745; 3 | @color-grey-arrow: rgba(204, 204, 204, 0.2); 4 | 5 | @width-default: 220px; // 3 960px-grid columns 6 | 7 | @zindex-select-dropdown: 1060; // must be higher than a modal background (1050) 8 | 9 | //** Placeholder text color 10 | @input-color-placeholder: #999; 11 | @input-alt-color-placeholder: rgba(255, 255, 255, 0.5); 12 | 13 | @input-padding-y-sm: .25rem; 14 | @input-padding-x-sm: .5rem; 15 | 16 | @input-padding-y-lg: 0.5rem; 17 | @input-padding-x-lg: 1rem; -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pl={days:["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"],daysShort:["niedz.","pon.","wt.","śr.","czw.","piąt.","sob."],daysMin:["ndz.","pn.","wt.","śr.","czw.","pt.","sob."],months:["styczeń","luty","marzec","kwiecień","maj","czerwiec","lipiec","sierpień","wrzesień","październik","listopad","grudzień"],monthsShort:["sty.","lut.","mar.","kwi.","maj","cze.","lip.","sie.","wrz.","paź.","lis.","gru."],today:"dzisiaj",weekStart:1,clear:"wyczyść",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/App.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.boot.web.servlet.ServletComponentScan; 6 | import org.springframework.data.jpa.repository.config.EnableJpaAuditing; 7 | 8 | /** 9 | * 项目入口启动文件 10 | * 11 | */ 12 | @SpringBootApplication 13 | @EnableJpaAuditing 14 | @ServletComponentScan 15 | public class App 16 | { 17 | public static void main( String[] args ) 18 | { 19 | SpringApplication.run(App.class, args); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lt={days:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis"],daysShort:["S","Pr","A","T","K","Pn","Š"],daysMin:["Sk","Pr","An","Tr","Ke","Pn","Št"],months:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthsShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],today:"Šiandien",monthsTitle:"Mėnesiai",clear:"Išvalyti",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /src/main/resources/static/admin/layui/css/modules/laydate/default/font.css: -------------------------------------------------------------------------------- 1 | /** 图标字体 **/ 2 | @font-face {font-family: 'laydate-icon'; 3 | src: url('./font/iconfont.eot'); 4 | src: url('./font/iconfont.eot#iefix') format('embedded-opentype'), 5 | url('./font/iconfont.svg#iconfont') format('svg'), 6 | url('./font/iconfont.woff') format('woff'), 7 | url('./font/iconfont.ttf') format('truetype'); 8 | } 9 | 10 | .laydate-icon{ 11 | font-family:"laydate-icon" !important; 12 | font-size: 16px; 13 | font-style: normal; 14 | -webkit-font-smoothing: antialiased; 15 | -moz-osx-font-smoothing: grayscale; 16 | } -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-ja_JP.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: JA (Japanese; 日本語) 4 | * Region: JP (Japan) 5 | * Author: Richard Snijders (Flaxis) 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: '何もが選択した', 10 | noneResultsText: '\'{0}\'が結果を返さない', 11 | countSelectedText: '{0}/{1}が選択した', 12 | maxOptionsText: ['限界は達した({n}{var}最大)', '限界をグループは達した({n}{var}最大)', ['アイテム', 'アイテム']], 13 | selectAllText: '全部を選択する', 14 | deselectAllText: '何も選択しない', 15 | multipleSeparator: ', ' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-fa_IR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: FA (Farsi) 4 | * Region: IR (Iran) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'چیزی انتخاب نشده است', 9 | noneResultsText: 'هیج مشابهی برای {0} پیدا نشد', 10 | countSelectedText: '{0} از {1} مورد انتخاب شده', 11 | maxOptionsText: ['بیشتر ممکن نیست {حداکثر {n} عدد}', 'بیشتر ممکن نیست {حداکثر {n} عدد}'], 12 | selectAllText: 'انتخاب همه', 13 | deselectAllText: 'انتخاب هیچ کدام', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-cs_CZ.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: CS 4 | * Region: CZ (Czech Republic) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nic není vybráno', 9 | noneResultsText: 'Žádné výsledky {0}', 10 | countSelectedText: 'Označeno {0} z {1}', 11 | maxOptionsText: ['Limit překročen ({n} {var} max)', 'Limit skupiny překročen ({n} {var} max)', ['položek', 'položka']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Vybrat Vše', 14 | deselectAllText: 'Odznačit Vše' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-id_ID.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ID (Indonesian; Bahasa Indonesia) 4 | * Region: ID (Indonesia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Tidak ada yang dipilih', 9 | noneResultsText: 'Tidak ada yang cocok {0}', 10 | countSelectedText: '{0} terpilih', 11 | maxOptionsText: ['Mencapai batas (maksimum {n})', 'Mencapai batas grup (maksimum {n})'], 12 | selectAllText: 'Pilih Semua', 13 | deselectAllText: 'Hapus Semua', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: EU (Basque) 4 | * Region: 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Hautapenik ez', 9 | noneResultsText: 'Emaitzarik ez {0}', 10 | countSelectedText: '{1}(e)tik {0} hautatuta', 11 | maxOptionsText: ['Mugara iritsita ({n} {var} gehienez)', 'Taldearen mugara iritsita ({n} {var} gehienez)', ['elementu', 'elementu']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Hautatu Guztiak', 14 | deselectAllText: 'Desautatu Guztiak' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-es_CL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ES (Spanish) 4 | * Region: CL (Chile) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'No hay selección', 9 | noneResultsText: 'No hay resultados {0}', 10 | countSelectedText: 'Seleccionados {0} de {1}', 11 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Seleccionar Todos', 14 | deselectAllText: 'Desmarcar Todos' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-es_ES.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ES (Spanish) 4 | * Region: ES (Spain) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'No hay selección', 9 | noneResultsText: 'No hay resultados {0}', 10 | countSelectedText: 'Seleccionados {0} de {1}', 11 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Seleccionar Todos', 14 | deselectAllText: 'Desmarcar Todos' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-pl_PL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: PL (Polish) 4 | * Region: EU (Europe) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nic nie zaznaczono', 9 | noneResultsText: 'Brak wyników wyszukiwania {0}', 10 | countSelectedText: 'Zaznaczono {0} z {1}', 11 | maxOptionsText: ['Osiągnięto limit ({n} {var} max)', 'Limit grupy osiągnięty ({n} {var} max)', ['elementy', 'element']], 12 | selectAllText: 'Zaznacz wszystkie', 13 | deselectAllText: 'Odznacz wszystkie', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-sk_SK.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: SK 4 | * Region: SK (Slovak Republic) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Vyberte zo zoznamu', 9 | noneResultsText: 'Pre výraz {0} neboli nájdené žiadne výsledky', 10 | countSelectedText: 'Vybrané {0} z {1}', 11 | maxOptionsText: ['Limit prekročený ({n} {var} max)', 'Limit skupiny prekročený ({n} {var} max)', ['položiek', 'položka']], 12 | selectAllText: 'Vybrať všetky', 13 | deselectAllText: 'Zrušiť výber', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-ua_UA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: UA (Ukrainian; Українська) 4 | * Region: UA (Ukraine) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Нічого не вибрано', 9 | noneResultsText: 'Збігів не знайдено {0}', 10 | countSelectedText: 'Вибрано {0} із {1}', 11 | maxOptionsText: ['Досягнута межа ({n} {var} максимум)', 'Досягнута межа в групі ({n} {var} максимум)', ['items', 'item']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Вибрати все', 14 | deselectAllText: 'Скасувати вибір усі' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/sass/variables.scss: -------------------------------------------------------------------------------- 1 | $color-red-error: rgb(185, 74, 72) !default; 2 | $color-green-success: #28a745; 3 | $color-grey-arrow: rgba(204, 204, 204, 0.2) !default; 4 | 5 | $width-default: 220px !default; // 3 960px-grid columns 6 | 7 | $zindex-select-dropdown: 1060 !default; // must be higher than a modal background (1050) 8 | 9 | //** Placeholder text color 10 | $input-color-placeholder: #999 !default; 11 | $input-alt-color-placeholder: rgba(255, 255, 255, 0.5) !default; 12 | 13 | $input-padding-y-sm: .25rem !default; 14 | $input-padding-x-sm: .5rem !default; 15 | 16 | $input-padding-y-lg: 0.5rem !default; 17 | $input-padding-x-lg: 1rem !default; -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/.github/move.yml: -------------------------------------------------------------------------------- 1 | # Configuration for move-issues - https://github.com/dessant/move-issues 2 | 3 | # Delete the command comment when it contains no other content 4 | deleteCommand: true 5 | 6 | # Close the source issue after moving 7 | closeSourceIssue: true 8 | 9 | # Lock the source issue after moving 10 | lockSourceIssue: false 11 | 12 | # Mention issue and comment authors 13 | mentionAuthors: true 14 | 15 | # Preserve mentions in the issue content 16 | keepContentMentions: true 17 | 18 | # Set custom aliases for targets 19 | # aliases: 20 | # r: repo 21 | # or: owner/repo 22 | 23 | # Repository to extend settings from 24 | # _extends: repo -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/custom_theme/toc.html: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-ru_RU.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: RU (Russian; Русский) 4 | * Region: RU (Russian Federation) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Ничего не выбрано', 9 | noneResultsText: 'Совпадений не найдено {0}', 10 | countSelectedText: 'Выбрано {0} из {1}', 11 | maxOptionsText: ['Достигнут предел ({n} {var} максимум)', 'Достигнут предел в группе ({n} {var} максимум)', ['шт.', 'шт.']], 12 | doneButtonText: 'Закрыть', 13 | selectAllText: 'Выбрать все', 14 | deselectAllText: 'Отменить все', 15 | multipleSeparator: ', ' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-nl_NL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: NL (Dutch; Nederlands) 4 | * Region: NL (Europe) 5 | * Author: Daan Rosbergen (Badmuts) 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Niets geselecteerd', 10 | noneResultsText: 'Geen resultaten gevonden voor {0}', 11 | countSelectedText: '{0} van {1} geselecteerd', 12 | maxOptionsText: ['Limiet bereikt ({n} {var} max)', 'Groep limiet bereikt ({n} {var} max)', ['items', 'item']], 13 | selectAllText: 'Alles selecteren', 14 | deselectAllText: 'Alles deselecteren', 15 | multipleSeparator: ', ' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/bean/UserStatus.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.bean; 2 | 3 | public enum UserStatus { 4 | NOT_PASS(0, "未通过"), 5 | PASS(1, "通过"), 6 | AUDIT(2, "审核中"); 7 | 8 | private Integer code; 9 | 10 | private String value; 11 | 12 | public Integer getCode() { 13 | return code; 14 | } 15 | 16 | public void setCode(Integer code) { 17 | this.code = code; 18 | } 19 | 20 | public String getValue() { 21 | return value; 22 | } 23 | 24 | public void setValue(String value) { 25 | this.value = value; 26 | } 27 | 28 | UserStatus(Integer code, String value) { 29 | this.code = code; 30 | this.value = value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/bean/UserType.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.bean; 2 | 3 | /** 4 | * 户口类型 5 | */ 6 | public enum UserType { 7 | 8 | SUPER_ADMIN(1l, "超级管理员"), 9 | ADMIN(2l, "普通管理员"); 10 | 11 | public Long code; 12 | 13 | public String value; 14 | 15 | public Long getCode() { 16 | return code; 17 | } 18 | 19 | public void setCode(Long code) { 20 | this.code = code; 21 | } 22 | 23 | public String getValue() { 24 | return value; 25 | } 26 | 27 | public void setValue(String value) { 28 | this.value = value; 29 | } 30 | 31 | UserType(Long code, String value) { 32 | this.code = code; 33 | this.value = value; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/dao/admin/CommunityDao.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.dao.admin; 2 | 3 | import com.yuanlrc.base.entity.admin.Community; 4 | import org.springframework.data.jpa.repository.JpaRepository; 5 | import org.springframework.data.jpa.repository.Query; 6 | import org.springframework.data.repository.query.Param; 7 | import org.springframework.stereotype.Repository; 8 | 9 | /** 10 | * 社区dao 11 | */ 12 | @Repository 13 | public interface CommunityDao extends JpaRepository { 14 | 15 | @Query("select c from Community c where c.id = :id") 16 | Community find(@Param("id")Long id); 17 | 18 | Community findByCityAndAreaAndStreetAndName(String city,String area,String street,String name); 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-ko_KR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: KO (Korean) 4 | * Region: KR (South Korea) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '항목을 선택해주세요', 9 | noneResultsText: '{0} 검색 결과가 없습니다', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return '{0}개를 선택하였습니다'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | '{n}개까지 선택 가능합니다', 16 | '해당 그룹은 {n}개까지 선택 가능합니다' 17 | ]; 18 | }, 19 | selectAllText: '전체선택', 20 | deselectAllText: '전체해제', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/umd-intro.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) { 2 | if (root === undefined && window !== undefined) root = window; 3 | if (typeof define === 'function' && define.amd) { 4 | // AMD. Register as an anonymous module unless amdModuleId is set 5 | define(["jquery"], function (a0) { 6 | return (factory(a0)); 7 | }); 8 | } else if (typeof module === 'object' && module.exports) { 9 | // Node. Does not work with strict CommonJS, but 10 | // only CommonJS-like environments that support module.exports, 11 | // like Node. 12 | module.exports = factory(require("jquery")); 13 | } else { 14 | factory(root["jQuery"]); 15 | } 16 | }(this, function (jQuery) { 17 | 18 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-sl_SI.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: SL (Slovenian) 4 | * Region: SI (Slovenia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nič izbranega', 9 | noneResultsText: 'Ni zadetkov za {0}', 10 | countSelectedText: '{0} od {1} izbranih', 11 | maxOptionsText: function (numAll, numGroup) { 12 | return [ 13 | 'Omejitev dosežena (max. izbranih: {n})', 14 | 'Omejitev skupine dosežena (max. izbranih: {n})' 15 | ]; 16 | }, 17 | selectAllText: 'Izberi vse', 18 | deselectAllText: 'Počisti izbor', 19 | multipleSeparator: ', ' 20 | }; 21 | })(jQuery); 22 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-pt_BR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: PT (Portuguese; português) 4 | * Region: BR (Brazil; Brasil) 5 | * Author: Rodrigo de Avila 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nada selecionado', 10 | noneResultsText: 'Nada encontrado contendo {0}', 11 | countSelectedText: 'Selecionado {0} de {1}', 12 | maxOptionsText: ['Limite excedido (máx. {n} {var})', 'Limite do grupo excedido (máx. {n} {var})', ['itens', 'item']], 13 | multipleSeparator: ', ', 14 | selectAllText: 'Selecionar Todos', 15 | deselectAllText: 'Desmarcar Todos' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-pt_PT.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: PT (Portuguese; português) 4 | * Region: PT (Portugal; Portugal) 5 | * Author: Burnspirit 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nenhum seleccionado', 10 | noneResultsText: 'Sem resultados contendo {0}', 11 | countSelectedText: 'Selecionado {0} de {1}', 12 | maxOptionsText: ['Limite ultrapassado (máx. {n} {var})', 'Limite de seleções ultrapassado (máx. {n} {var})', ['itens', 'item']], 13 | multipleSeparator: ', ', 14 | selectAllText: 'Selecionar Tudo', 15 | deselectAllText: 'Desmarcar Todos' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/dao/admin/DatabaseBakDao.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.dao.admin; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | import org.springframework.data.jpa.repository.Query; 5 | import org.springframework.data.repository.query.Param; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import com.yuanlrc.base.entity.admin.DatabaseBak; 9 | 10 | /** 11 | * 数据库备份处理层 12 | * @author Administrator 13 | * 14 | */ 15 | @Repository 16 | public interface DatabaseBakDao extends JpaRepository{ 17 | 18 | /** 19 | * 根据id来查询 20 | * @param id 21 | * @return 22 | */ 23 | @Query("select db from DatabaseBak db where id = :id") 24 | DatabaseBak find(@Param("id")Long id); 25 | 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-ro_RO.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: RO (Romanian) 4 | * Region: RO (Romania) 5 | * Alex Florea 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | doneButtonText: 'Închide', 10 | noneSelectedText: 'Nu a fost selectat nimic', 11 | noneResultsText: 'Nu există niciun rezultat {0}', 12 | countSelectedText: '{0} din {1} selectat(e)', 13 | maxOptionsText: ['Limita a fost atinsă ({n} {var} max)', 'Limita de grup a fost atinsă ({n} {var} max)', ['iteme', 'item']], 14 | selectAllText: 'Selectează toate', 15 | deselectAllText: 'Deselectează toate', 16 | multipleSeparator: ', ' 17 | }; 18 | })(jQuery); 19 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: bootstrap-select 2 | site_description: The jQuery plugin that brings select elements into the 21st century with intuitive multiselection, searching, and much more. Now with Bootstrap 4 support. 3 | site_url: https://developer.snapappointments.com/bootstrap-select 4 | repo_url: https://github.com/snapappointments/bootstrap-select 5 | plugins: 6 | - search 7 | theme: 8 | name: bootstrap 9 | custom_dir: custom_theme 10 | extra_css: 11 | - css/custom.css 12 | - dist/css/bootstrap-select.min.css 13 | extra_javascript: 14 | - dist/js/bootstrap-select.min.js 15 | nav: 16 | - Getting Started: index.md 17 | - Examples: examples.md 18 | - Options: options.md 19 | - Methods: methods.md 20 | extra: 21 | version: 1.13.9 22 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-hu_HU.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: HU (Hungarian) 4 | * Region: HU (Hungary) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Válasszon!', 9 | noneResultsText: 'Nincs találat {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return '{0} elem kiválasztva'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Legfeljebb {n} elem választható', 16 | 'A csoportban legfeljebb {n} elem választható' 17 | ]; 18 | }, 19 | selectAllText: 'Mind', 20 | deselectAllText: 'Egyik sem', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-vi_VN.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Dịch các văn bản mặc định cho bootstrap-select. 3 | * Locale: VI (Vietnamese) 4 | * Region: VN (Việt Nam) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Chưa chọn', 9 | noneResultsText: 'Không có kết quả cho {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return '{0} mục đã chọn'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Không thể chọn (giới hạn {n} mục)', 16 | 'Không thể chọn (giới hạn {n} mục)' 17 | ]; 18 | }, 19 | selectAllText: 'Chọn tất cả', 20 | deselectAllText: 'Bỏ chọn', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-et_EE.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ET (Eesti keel) 4 | * Region: EE (Estonia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Valikut pole tehtud', 9 | noneResultsText: 'Otsingule {0} ei ole vasteid', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? '{0} item selected' : '{0} items selected'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Limiit on {n} max', 16 | 'Globaalne limiit on {n} max' 17 | ]; 18 | }, 19 | selectAllText: 'Vali kõik', 20 | deselectAllText: 'Tühista kõik', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-sv_SE.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: SV (Swedish) 4 | * Region: SE (Sweden) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Inget valt', 9 | noneResultsText: 'Inget sökresultat matchar {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected === 1) ? '{0} alternativ valt' : '{0} alternativ valda'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Gräns uppnåd (max {n} alternativ)', 16 | 'Gräns uppnåd (max {n} gruppalternativ)' 17 | ]; 18 | }, 19 | selectAllText: 'Markera alla', 20 | deselectAllText: 'Avmarkera alla', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-it_IT.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: IT (Italian; italiano) 4 | * Region: IT (Italy; Italia) 5 | * Author: Michele Beltrame 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nessuna selezione', 10 | noneResultsText: 'Nessun risultato per {0}', 11 | countSelectedText: function (numSelected, numTotal) { 12 | return (numSelected == 1) ? 'Selezionato {0} di {1}' : 'Selezionati {0} di {1}'; 13 | }, 14 | maxOptionsText: ['Limite raggiunto ({n} {var} max)', 'Limite del gruppo raggiunto ({n} {var} max)', ['elementi', 'elemento']], 15 | multipleSeparator: ', ', 16 | selectAllText: 'Seleziona Tutto', 17 | deselectAllText: 'Deseleziona Tutto' 18 | }; 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/listener/SessionListener.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.listener; 2 | import javax.servlet.annotation.WebListener; 3 | import javax.servlet.http.HttpSessionEvent; 4 | /** 5 | * session监听类,用于监听session的创建,销毁 6 | */ 7 | import javax.servlet.http.HttpSessionListener; 8 | 9 | import org.slf4j.Logger; 10 | import org.slf4j.LoggerFactory; 11 | @WebListener 12 | public class SessionListener implements HttpSessionListener { 13 | 14 | private Logger log = LoggerFactory.getLogger(SessionListener.class); 15 | 16 | public static long onlineUserCount = 0; 17 | 18 | @Override 19 | public void sessionCreated(HttpSessionEvent se){ 20 | log.info("进入session创建事件!当前在线用户数:" + (++onlineUserCount)); 21 | } 22 | 23 | @Override 24 | public void sessionDestroyed(HttpSessionEvent se){ 25 | log.info("进入session销毁事件!当前在线用户数:" + (--onlineUserCount)); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-id_ID.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Tidak ada yang dipilih",noneResultsText:"Tidak ada yang cocok {0}",countSelectedText:"{0} terpilih",maxOptionsText:["Mencapai batas (maksimum {n})","Mencapai batas grup (maksimum {n})"],selectAllText:"Pilih Semua",deselectAllText:"Hapus Semua",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-id_ID.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Tidak ada yang dipilih",noneResultsText:"Tidak ada yang cocok {0}",countSelectedText:"{0} terpilih",maxOptionsText:["Mencapai batas (maksimum {n})","Mencapai batas grup (maksimum {n})"],selectAllText:"Pilih Semua",deselectAllText:"Hapus Semua",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/java/com/yuanlrc/base/config/SiteConfig.java: -------------------------------------------------------------------------------- 1 | package com.yuanlrc.base.config; 2 | 3 | import org.springframework.beans.factory.annotation.Value; 4 | import org.springframework.context.annotation.PropertySource; 5 | import org.springframework.stereotype.Component; 6 | 7 | /** 8 | * 网站基础信息配置类 9 | * @author Administrator 10 | * 11 | */ 12 | @Component 13 | @PropertySource(value="classpath:site.properties") 14 | public class SiteConfig { 15 | 16 | @Value("${yuanlrc.site.name}") 17 | private String siteName; 18 | @Value("${yuanlrc.site.url}") 19 | private String siteUrl; 20 | public String getSiteName() { 21 | return siteName; 22 | } 23 | public void setSiteName(String siteName) { 24 | this.siteName = siteName; 25 | } 26 | public String getSiteUrl() { 27 | return siteUrl; 28 | } 29 | public void setSiteUrl(String siteUrl) { 30 | this.siteUrl = siteUrl; 31 | } 32 | 33 | 34 | } 35 | -------------------------------------------------------------------------------- /src/main/resources/templates/admin/common/left-menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-am_ET.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: AM (Amharic) 4 | * Region: ET (Ethiopia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'ምንም አልተመረጠም', 9 | noneResultsText: 'ከ{0} ጋር ተመሳሳይ ውጤት የለም', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? '{0} ምርጫ ተመርጧል' : '{0} ምርጫዎች ተመርጠዋል'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'ገደብ ላይ ተደርሷል (ቢበዛ {n} ምርጫ)' : 'ገደብ ላይ ተደርሷል (ቢበዛ {n} ምርጫዎች)', 16 | (numGroup == 1) ? 'የቡድን ገደብ ላይ ተደርሷል (ቢበዛ {n} ምርጫ)' : 'የቡድን ገደብ ላይ ተደርሷል (ቢበዛ {n} ምርጫዎች)' 17 | ]; 18 | }, 19 | selectAllText: 'ሁሉም ይመረጥ', 20 | deselectAllText: 'ሁሉም አይመረጥ', 21 | multipleSeparator: ' ፣ ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-eu.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", ",selectAllText:"Hautatu Guztiak",deselectAllText:"Desautatu Guztiak"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-nl_NL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],selectAllText:"Alles selecteren",deselectAllText:"Alles deselecteren",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-pt_BR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,o){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return o(e)}):"object"==typeof module&&module.exports?module.exports=o(require("jquery")):o(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (m\xe1x. {n} {var})","Limite do grupo excedido (m\xe1x. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Todos",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-hu_HU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"V\xe1lasszon!",noneResultsText:"Nincs tal\xe1lat {0}",countSelectedText:function(e,t){return"{0} elem kiv\xe1lasztva"},maxOptionsText:function(e,t){return["Legfeljebb {n} elem v\xe1laszthat\xf3","A csoportban legfeljebb {n} elem v\xe1laszthat\xf3"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-sl_SI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Ni\u010d izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:"{0} od {1} izbranih",maxOptionsText:function(e,t){return["Omejitev dose\u017eena (max. izbranih: {n})","Omejitev skupine dose\u017eena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"Po\u010disti izbor",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-eu.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", ",selectAllText:"Hautatu Guztiak",deselectAllText:"Desautatu Guztiak"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,o){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return o(e)}):"object"==typeof module&&module.exports?module.exports=o(require("jquery")):o(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"No hay selecci\xf3n",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["L\xedmite alcanzado ({n} {var} max)","L\xedmite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-es_ES.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,o){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return o(e)}):"object"==typeof module&&module.exports?module.exports=o(require("jquery")):o(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"No hay selecci\xf3n",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["L\xedmite alcanzado ({n} {var} max)","L\xedmite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-nl_NL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],selectAllText:"Alles selecteren",deselectAllText:"Alles deselecteren",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-pt_BR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,o){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return o(e)}):"object"==typeof module&&module.exports?module.exports=o(require("jquery")):o(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (m\xe1x. {n} {var})","Limite do grupo excedido (m\xe1x. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Todos",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-da_DK.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: DA (Danish) 4 | * Region: DK (Denmark) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Intet valgt', 9 | noneResultsText: 'Ingen resultater fundet {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? '{0} valgt' : '{0} valgt'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Begrænsning nået (max {n} valgt)' : 'Begrænsning nået (max {n} valgte)', 16 | (numGroup == 1) ? 'Gruppe-begrænsning nået (max {n} valgt)' : 'Gruppe-begrænsning nået (max {n} valgte)' 17 | ]; 18 | }, 19 | selectAllText: 'Markér alle', 20 | deselectAllText: 'Afmarkér alle', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-et_EE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Valikut pole tehtud",noneResultsText:"Otsingule {0} ei ole vasteid",countSelectedText:function(e,t){return 1==e?"{0} item selected":"{0} items selected"},maxOptionsText:function(e,t){return["Limiit on {n} max","Globaalne limiit on {n} max"]},selectAllText:"Vali k\xf5ik",deselectAllText:"T\xfchista k\xf5ik",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-hu_HU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"V\xe1lasszon!",noneResultsText:"Nincs tal\xe1lat {0}",countSelectedText:function(e,t){return"{0} elem kiv\xe1lasztva"},maxOptionsText:function(e,t){return["Legfeljebb {n} elem v\xe1laszthat\xf3","A csoportban legfeljebb {n} elem v\xe1laszthat\xf3"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-sl_SI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Ni\u010d izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:"{0} od {1} izbranih",maxOptionsText:function(e,t){return["Omejitev dose\u017eena (max. izbranih: {n})","Omejitev skupine dose\u017eena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"Po\u010disti izbor",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-en_US.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: EN (English) 4 | * Region: US (United States) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nothing selected', 9 | noneResultsText: 'No results match {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? '{0} item selected' : '{0} items selected'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Limit reached ({n} item max)' : 'Limit reached ({n} items max)', 16 | (numGroup == 1) ? 'Group limit reached ({n} item max)' : 'Group limit reached ({n} items max)' 17 | ]; 18 | }, 19 | selectAllText: 'Select All', 20 | deselectAllText: 'Deselect All', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-pt_PT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (m\xe1x. {n} {var})","Limite de sele\xe7\xf5es ultrapassado (m\xe1x. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Tudo",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,o){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return o(e)}):"object"==typeof module&&module.exports?module.exports=o(require("jquery")):o(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"No hay selecci\xf3n",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["L\xedmite alcanzado ({n} {var} max)","L\xedmite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-es_ES.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,o){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return o(e)}):"object"==typeof module&&module.exports?module.exports=o(require("jquery")):o(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"No hay selecci\xf3n",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["L\xedmite alcanzado ({n} {var} max)","L\xedmite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-fi_FI.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: FI (Finnish) 4 | * Region: FI (Finland) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Ei valintoja', 9 | noneResultsText: 'Ei hakutuloksia {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? '{0} valittu' : '{0} valitut'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Valintojen maksimimäärä ({n} saavutettu)' : 'Valintojen maksimimäärä ({n} saavutettu)', 16 | (numGroup == 1) ? 'Ryhmän maksimimäärä ({n} saavutettu)' : 'Ryhmän maksimimäärä ({n} saavutettu)' 17 | ]; 18 | }, 19 | selectAllText: 'Valitse kaikki', 20 | deselectAllText: 'Poista kaikki', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/jquery-tags-input/jquery.tagsinput.min.css: -------------------------------------------------------------------------------- 1 | div.tagsinput{border:1px solid #ebebeb;background:#FFF;padding:6px 12px 1px 6px;width:300px;height:100px;overflow-y:auto;}div.tagsinput span.tag{border:none;-moz-border-radius:2px;-webkit-border-radius:2px;display:block;float:left;padding:2px 5px;text-decoration:none;background:#33cabb;color:#fff;margin-right:5px;margin-bottom:5px;font-family:'Microsoft yahei',Roboto,sans-serif;font-size:13px;line-height:18px}div.tagsinput span.tag a{font-weight:bold;color:rgba(255,255,255,0.5);text-decoration:none;font-size:12px;}div.tagsinput input{width:80px;margin:0px;font-family:'Microsoft yahei',Roboto,sans-serif;font-size:13px;border:1px solid transparent;padding:0;background:transparent;color:#000;outline:0px;margin-right:5px;margin-bottom:5px;}div.tagsinput div{display:block;float:left;}.tags_clear{clear:both;width:100%;height:0px;}.not_valid{background:#FBD8DB !important;color:#90111A !important;} -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-pl_PL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,n){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&module.exports?module.exports=n(require("jquery")):n(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wynik\xf3w wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["Osi\u0105gni\u0119to limit ({n} {var} max)","Limit grupy osi\u0105gni\u0119ty ({n} {var} max)",["elementy","element"]],selectAllText:"Zaznacz wszystkie",deselectAllText:"Odznacz wszystkie",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-et_EE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Valikut pole tehtud",noneResultsText:"Otsingule {0} ei ole vasteid",countSelectedText:function(e,t){return 1==e?"{0} item selected":"{0} items selected"},maxOptionsText:function(e,t){return["Limiit on {n} max","Globaalne limiit on {n} max"]},selectAllText:"Vali k\xf5ik",deselectAllText:"T\xfchista k\xf5ik",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/custom_theme/ajax/libs/highlight.js/9.15.6/css/github.min.css: -------------------------------------------------------------------------------- 1 | .hljs{display:block;overflow-x:auto;padding:.5em;color:#333;background:#f8f8f8}.hljs-comment,.hljs-quote{color:#998;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-subst{color:#333;font-weight:bold}.hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr{color:#008080}.hljs-string,.hljs-doctag{color:#d14}.hljs-title,.hljs-section,.hljs-selector-id{color:#900;font-weight:bold}.hljs-subst{font-weight:normal}.hljs-type,.hljs-class .hljs-title{color:#458;font-weight:bold}.hljs-tag,.hljs-name,.hljs-attribute{color:#000080;font-weight:normal}.hljs-regexp,.hljs-link{color:#009926}.hljs-symbol,.hljs-bullet{color:#990073}.hljs-built_in,.hljs-builtin-name{color:#0086b3}.hljs-meta{color:#999;font-weight:bold}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold} -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-pt_PT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (m\xe1x. {n} {var})","Limite de sele\xe7\xf5es ultrapassado (m\xe1x. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Tudo",deselectAllText:"Desmarcar Todos"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-fi_FI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Ei valintoja",noneResultsText:"Ei hakutuloksia {0}",countSelectedText:function(e,t){return 1==e?"{0} valittu":"{0} valitut"},maxOptionsText:function(e,t){return["Valintojen maksimim\xe4\xe4r\xe4 ({n} saavutettu)","Ryhm\xe4n maksimim\xe4\xe4r\xe4 ({n} saavutettu)"]},selectAllText:"Valitse kaikki",deselectAllText:"Poista kaikki",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-nb_NO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Ingen valgt",noneResultsText:"S\xf8ket gir ingen treff {0}",countSelectedText:function(e,t){return 1==e?"{0} alternativ valgt":"{0} alternativer valgt"},maxOptionsText:function(e,t){return["Grense n\xe5dd (maks {n} valg)","Grense for grupper n\xe5dd (maks {n} grupper)"]},selectAllText:"Merk alle",deselectAllText:"Fjern alle",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-pl_PL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,n){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&module.exports?module.exports=n(require("jquery")):n(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wynik\xf3w wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["Osi\u0105gni\u0119to limit ({n} {var} max)","Limit grupy osi\u0105gni\u0119ty ({n} {var} max)",["elementy","element"]],selectAllText:"Zaznacz wszystkie",deselectAllText:"Odznacz wszystkie",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-kh_KM.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: KH (Khmer) 4 | * Region: kM (Khmer) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'មិនមានអ្វីបានជ្រើសរើស', 9 | noneResultsText: 'មិនមានលទ្ធផល {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? '{0} ធាតុដែលបានជ្រើស' : '{0} ធាតុដែលបានជ្រើស'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'ឈានដល់ដែនកំណត់ ( {n} ធាតុអតិបរមា)' : 'អតិបរមាឈានដល់ដែនកំណត់ ( {n} ធាតុ)', 16 | (numGroup == 1) ? 'ដែនកំណត់ក្រុមឈានដល់ ( {n} អតិបរមាធាតុ)' : 'អតិបរមាក្រុមឈានដល់ដែនកំណត់ ( {n} ធាតុ)' 17 | ]; 18 | }, 19 | selectAllText: 'ជ្រើស​យក​ទាំងអស់', 20 | deselectAllText: 'មិនជ្រើស​យក​ទាំងអស', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/js/i18n/defaults-nb_NO.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: NB (Norwegian; Bokmål) 4 | * Region: NO (Norway) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Ingen valgt', 9 | noneResultsText: 'Søket gir ingen treff {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? '{0} alternativ valgt' : '{0} alternativer valgt'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Grense nådd (maks {n} valg)' : 'Grense nådd (maks {n} valg)', 16 | (numGroup == 1) ? 'Grense for grupper nådd (maks {n} grupper)' : 'Grense for grupper nådd (maks {n} grupper)' 17 | ]; 18 | }, 19 | selectAllText: 'Merk alle', 20 | deselectAllText: 'Fjern alle', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-cs_CZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,n){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&module.exports?module.exports=n(require("jquery")):n(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nic nen\xed vybr\xe1no",noneResultsText:"\u017d\xe1dn\xe9 v\xfdsledky {0}",countSelectedText:"Ozna\u010deno {0} z {1}",maxOptionsText:["Limit p\u0159ekro\u010den ({n} {var} max)","Limit skupiny p\u0159ekro\u010den ({n} {var} max)",["polo\u017eek","polo\u017eka"]],multipleSeparator:", ",selectAllText:"Vybrat V\u0161e",deselectAllText:"Odzna\u010dit V\u0161e"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-fi_FI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Ei valintoja",noneResultsText:"Ei hakutuloksia {0}",countSelectedText:function(e,t){return 1==e?"{0} valittu":"{0} valitut"},maxOptionsText:function(e,t){return["Valintojen maksimim\xe4\xe4r\xe4 ({n} saavutettu)","Ryhm\xe4n maksimim\xe4\xe4r\xe4 ({n} saavutettu)"]},selectAllText:"Valitse kaikki",deselectAllText:"Poista kaikki",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-nb_NO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Ingen valgt",noneResultsText:"S\xf8ket gir ingen treff {0}",countSelectedText:function(e,t){return 1==e?"{0} alternativ valgt":"{0} alternativer valgt"},maxOptionsText:function(e,t){return["Grense n\xe5dd (maks {n} valg)","Grense for grupper n\xe5dd (maks {n} grupper)"]},selectAllText:"Merk alle",deselectAllText:"Fjern alle",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-sv_SE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Inget valt",noneResultsText:"Inget s\xf6kresultat matchar {0}",countSelectedText:function(e,t){return 1===e?"{0} alternativ valt":"{0} alternativ valda"},maxOptionsText:function(e,t){return["Gr\xe4ns uppn\xe5d (max {n} alternativ)","Gr\xe4ns uppn\xe5d (max {n} gruppalternativ)"]},selectAllText:"Markera alla",deselectAllText:"Avmarkera alla",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-it_IT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nessuna selezione",noneResultsText:"Nessun risultato per {0}",countSelectedText:function(e,t){return 1==e?"Selezionato {0} di {1}":"Selezionati {0} di {1}"},maxOptionsText:["Limite raggiunto ({n} {var} max)","Limite del gruppo raggiunto ({n} {var} max)",["elementi","elemento"]],multipleSeparator:", ",selectAllText:"Seleziona Tutto",deselectAllText:"Deseleziona Tutto"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-cs_CZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,n){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&module.exports?module.exports=n(require("jquery")):n(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nic nen\xed vybr\xe1no",noneResultsText:"\u017d\xe1dn\xe9 v\xfdsledky {0}",countSelectedText:"Ozna\u010deno {0} z {1}",maxOptionsText:["Limit p\u0159ekro\u010den ({n} {var} max)","Limit skupiny p\u0159ekro\u010den ({n} {var} max)",["polo\u017eek","polo\u017eka"]],multipleSeparator:", ",selectAllText:"Vybrat V\u0161e",deselectAllText:"Odzna\u010dit V\u0161e"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-sv_SE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Inget valt",noneResultsText:"Inget s\xf6kresultat matchar {0}",countSelectedText:function(e,t){return 1===e?"{0} alternativ valt":"{0} alternativ valda"},maxOptionsText:function(e,t){return["Gr\xe4ns uppn\xe5d (max {n} alternativ)","Gr\xe4ns uppn\xe5d (max {n} gruppalternativ)"]},selectAllText:"Markera alla",deselectAllText:"Avmarkera alla",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/docs/docs/dist/js/i18n/defaults-it_IT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nessuna selezione",noneResultsText:"Nessun risultato per {0}",countSelectedText:function(e,t){return 1==e?"Selezionato {0} di {1}":"Selezionati {0} di {1}"},maxOptionsText:["Limite raggiunto ({n} {var} max)","Limite del gruppo raggiunto ({n} {var} max)",["elementi","elemento"]],multipleSeparator:", ",selectAllText:"Seleziona Tutto",deselectAllText:"Deseleziona Tutto"}}); -------------------------------------------------------------------------------- /src/main/resources/static/admin/js/bootstrap-select/dist/js/i18n/defaults-ro_RO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2019 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={doneButtonText:"\xcenchide",noneSelectedText:"Nu a fost selectat nimic",noneResultsText:"Nu exist\u0103 niciun rezultat {0}",countSelectedText:"{0} din {1} selectat(e)",maxOptionsText:["Limita a fost atins\u0103 ({n} {var} max)","Limita de grup a fost atins\u0103 ({n} {var} max)",["iteme","item"]],selectAllText:"Selecteaz\u0103 toate",deselectAllText:"Deselecteaz\u0103 toate",multipleSeparator:", "}}); --------------------------------------------------------------------------------