在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 在线考试系统源码

在线考试系统源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:10.63M
  • 下载次数:11
  • 浏览次数:215
  • 发布时间:2021-10-31
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
在线考试系统源码
【实例截图】
【核心代码】
4744300845373361884.rar
├── help
│   ├── 4.0暂不支持UC整合敬请见谅.txt
│   ├── PHPEMS安装使用操作文档.docx
│   └── ReadMe.txt
└── phpems
├── api
│   ├── alinotify.php
│   ├── alireturn.php
│   └── wxnotify.php
├── app
│   ├── bank
│   │   ├── cls
│   │   │   ├── coupon.cls.php
│   │   │   └── orders.cls.php
│   │   ├── controller
│   │   │   ├── coupon.master.php
│   │   │   ├── index.master.php
│   │   │   └── orders.master.php
│   │   ├── master.php
│   │   ├── styles
│   │   │   ├── css
│   │   │   ├── images
│   │   │   └── js
│   │   └── tpls
│   │   └── master
│   │   ├── addcoupon.tpl
│   │   ├── coupon.tpl
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── nav.tpl
│   │   ├── orders.tpl
│   │   └── outcoupon.tpl
│   ├── content
│   │   ├── app.php
│   │   ├── cls
│   │   │   ├── ad.cls.php
│   │   │   ├── api.cls.php
│   │   │   ├── block.cls.php
│   │   │   ├── config.cls.php
│   │   │   ├── content.cls.php
│   │   │   ├── position.cls.php
│   │   │   └── work.cls.php
│   │   ├── controller
│   │   │   ├── ad.master.php
│   │   │   ├── blocks.master.php
│   │   │   ├── category.app.php
│   │   │   ├── category.master.php
│   │   │   ├── category.phone.php
│   │   │   ├── content.app.php
│   │   │   ├── content.phone.php
│   │   │   ├── contents.master.php
│   │   │   ├── index.app.php
│   │   │   ├── index.master.php
│   │   │   ├── index.phone.php
│   │   │   ├── module.master.php
│   │   │   ├── positions.master.php
│   │   │   └── search.app.php
│   │   ├── lang
│   │   ├── master.php
│   │   ├── phone.php
│   │   ├── styles
│   │   └── tpls
│   │   ├── app
│   │   │   ├── category_default.tpl
│   │   │   ├── content_default.tpl
│   │   │   ├── footer.tpl
│   │   │   ├── header.tpl
│   │   │   ├── index.tpl
│   │   │   ├── nav.tpl
│   │   │   └── search_default.tpl
│   │   ├── master
│   │   │   ├── addfield.tpl
│   │   │   ├── addmodule.tpl
│   │   │   ├── blocks_add.tpl
│   │   │   ├── blocks_modify.tpl
│   │   │   ├── blocks.tpl
│   │   │   ├── category_add.tpl
│   │   │   ├── category_ajax_data.tpl
│   │   │   ├── category_edit.tpl
│   │   │   ├── category.tpl
│   │   │   ├── content_add.tpl
│   │   │   ├── content_copy.tpl
│   │   │   ├── content_edit.tpl
│   │   │   ├── content_move.tpl
│   │   │   ├── content_position.tpl
│   │   │   ├── content.tpl
│   │   │   ├── fields.tpl
│   │   │   ├── footer.tpl
│   │   │   ├── header.tpl
│   │   │   ├── index.tpl
│   │   │   ├── menu.tpl
│   │   │   ├── modifyfield.tpl
│   │   │   ├── modifymodule.tpl
│   │   │   ├── module.tpl
│   │   │   ├── nav.tpl
│   │   │   ├── preview_ajax.tpl
│   │   │   └── preview.tpl
│   │   └── phone
│   │   ├── category_default.tpl
│   │   ├── content_default.tpl
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   └── index.tpl
│   ├── core
│   │   ├── api.php
│   │   ├── cls
│   │   │   └── apps.cls.php
│   │   ├── controller
│   │   │   ├── apps.master.php
│   │   │   ├── index.api.php
│   │   │   ├── index.app.php
│   │   │   ├── index.master.php
│   │   │   ├── login.master.php
│   │   │   ├── logout.master.php
│   │   │   └── randcode.api.php
│   │   ├── master.php
│   │   ├── styles
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap-theme.css
│   │   │   │   ├── datetimepicker.css
│   │   │   │   ├── jquery-ui.css
│   │   │   │   ├── jquery-ui.min.css
│   │   │   │   ├── mskin.css
│   │   │   │   ├── peskin.css
│   │   │   │   └── swiper.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── images
│   │   │   │   ├── favicon.png
│   │   │   │   ├── loader.gif
│   │   │   │   ├── noimage.gif
│   │   │   │   └── uploadico.png
│   │   │   ├── img
│   │   │   │   ├── banner2.jpg
│   │   │   │   ├── banner.jpg
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── finish.png
│   │   │   │   ├── free.png
│   │   │   │   ├── item2.jpg
│   │   │   │   ├── item3.jpg
│   │   │   │   ├── item.jpg
│   │   │   │   ├── item.png
│   │   │   │   ├── login.jpg
│   │   │   │   ├── logo2.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── lvs.jpg
│   │   │   │   ├── noimage.gif
│   │   │   │   ├── opened.png
│   │   │   │   ├── right.png
│   │   │   │   ├── t1.png
│   │   │   │   ├── t2.png
│   │   │   │   ├── t3.png
│   │   │   │   ├── t4.png
│   │   │   │   ├── t5.png
│   │   │   │   ├── t6.png
│   │   │   │   ├── t7.png
│   │   │   │   ├── t8.png
│   │   │   │   └── wrong.png
│   │   │   └── js
│   │   │   ├── all.fine-uploader.min.js
│   │   │   ├── bootstrap-datetimepicker.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── ckeditor
│   │   │   │   ├── adapters
│   │   │   │   │   └── jquery.js
│   │   │   │   ├── build-config.js
│   │   │   │   ├── CHANGES.md
│   │   │   │   ├── ckeditor.js
│   │   │   │   ├── config.js
│   │   │   │   ├── contents.css
│   │   │   │   ├── lang
│   │   │   │   │   ├── af.js
│   │   │   │   │   ├── ar.js
│   │   │   │   │   ├── bg.js
│   │   │   │   │   ├── bn.js
│   │   │   │   │   ├── bs.js
│   │   │   │   │   ├── ca.js
│   │   │   │   │   ├── cs.js
│   │   │   │   │   ├── cy.js
│   │   │   │   │   ├── da.js
│   │   │   │   │   ├── de.js
│   │   │   │   │   ├── el.js
│   │   │   │   │   ├── en-au.js
│   │   │   │   │   ├── en-ca.js
│   │   │   │   │   ├── en-gb.js
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── eo.js
│   │   │   │   │   ├── es.js
│   │   │   │   │   ├── et.js
│   │   │   │   │   ├── eu.js
│   │   │   │   │   ├── fa.js
│   │   │   │   │   ├── fi.js
│   │   │   │   │   ├── fo.js
│   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   ├── fr.js
│   │   │   │   │   ├── gl.js
│   │   │   │   │   ├── gu.js
│   │   │   │   │   ├── he.js
│   │   │   │   │   ├── hi.js
│   │   │   │   │   ├── hr.js
│   │   │   │   │   ├── hu.js
│   │   │   │   │   ├── id.js
│   │   │   │   │   ├── is.js
│   │   │   │   │   ├── it.js
│   │   │   │   │   ├── ja.js
│   │   │   │   │   ├── ka.js
│   │   │   │   │   ├── km.js
│   │   │   │   │   ├── ko.js
│   │   │   │   │   ├── ku.js
│   │   │   │   │   ├── lt.js
│   │   │   │   │   ├── lv.js
│   │   │   │   │   ├── mk.js
│   │   │   │   │   ├── mn.js
│   │   │   │   │   ├── ms.js
│   │   │   │   │   ├── nb.js
│   │   │   │   │   ├── nl.js
│   │   │   │   │   ├── no.js
│   │   │   │   │   ├── pl.js
│   │   │   │   │   ├── pt-br.js
│   │   │   │   │   ├── pt.js
│   │   │   │   │   ├── ro.js
│   │   │   │   │   ├── ru.js
│   │   │   │   │   ├── si.js
│   │   │   │   │   ├── sk.js
│   │   │   │   │   ├── sl.js
│   │   │   │   │   ├── sq.js
│   │   │   │   │   ├── sr.js
│   │   │   │   │   ├── sr-latn.js
│   │   │   │   │   ├── sv.js
│   │   │   │   │   ├── th.js
│   │   │   │   │   ├── tr.js
│   │   │   │   │   ├── tt.js
│   │   │   │   │   ├── ug.js
│   │   │   │   │   ├── uk.js
│   │   │   │   │   ├── vi.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh.js
│   │   │   │   ├── LICENSE.md
│   │   │   │   ├── plugins
│   │   │   │   │   ├── a11yhelp
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   ├── a11yhelp.js
│   │   │   │   │   │   └── lang
│   │   │   │   │   │   ├── af.js
│   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   ├── en-gb.js
│   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   ├── gl.js
│   │   │   │   │   │   ├── gu.js
│   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   ├── hi.js
│   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   ├── id.js
│   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   ├── km.js
│   │   │   │   │   │   ├── ko.js
│   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   ├── mk.js
│   │   │   │   │   │   ├── mn.js
│   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   ├── ro.js
│   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   ├── si.js
│   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   ├── sq.js
│   │   │   │   │   │   ├── sr.js
│   │   │   │   │   │   ├── sr-latn.js
│   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   ├── th.js
│   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   ├── tt.js
│   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   │   └── zh.js
│   │   │   │   │   ├── about
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   ├── about.js
│   │   │   │   │   │   ├── hidpi
│   │   │   │   │   │   │   └── logo_ckeditor.png
│   │   │   │   │   │   └── logo_ckeditor.png
│   │   │   │   │   ├── allmedias
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── allMedias.js
│   │   │   │   │   │   ├── icons
│   │   │   │   │   │   │   ├── allMedias.PNG
│   │   │   │   │   │   │   └── Thumbs.db
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── media.gif
│   │   │   │   │   │   │   ├── placeholder.png
│   │   │   │   │   │   │   └── Thumbs.db
│   │   │   │   │   │   ├── jwplayer.swf
│   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   │   │   └── zh.js
│   │   │   │   │   │   ├── plugin.js
│   │   │   │   │   │   └── readme.txt
│   │   │   │   │   ├── clipboard
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── paste.js
│   │   │   │   │   ├── colordialog
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── colordialog.js
│   │   │   │   │   ├── dialog
│   │   │   │   │   │   └── dialogDefinition.js
│   │   │   │   │   ├── div
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── div.js
│   │   │   │   │   ├── fakeobjects
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   ├── find
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── find.js
│   │   │   │   │   ├── flash
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── flash.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── placeholder.png
│   │   │   │   │   ├── forms
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── button.js
│   │   │   │   │   │   │   ├── checkbox.js
│   │   │   │   │   │   │   ├── form.js
│   │   │   │   │   │   │   ├── hiddenfield.js
│   │   │   │   │   │   │   ├── radio.js
│   │   │   │   │   │   │   ├── select.js
│   │   │   │   │   │   │   ├── textarea.js
│   │   │   │   │   │   │   └── textfield.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── hiddenfield.gif
│   │   │   │   │   ├── icons_hidpi.png
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── iframe
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── iframe.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── placeholder.png
│   │   │   │   │   ├── image
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── image.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── noimage.png
│   │   │   │   │   ├── link
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   └── link.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── anchor.png
│   │   │   │   │   │   └── hidpi
│   │   │   │   │   │   └── anchor.png
│   │   │   │   │   ├── liststyle
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── liststyle.js
│   │   │   │   │   ├── magicline
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── hidpi
│   │   │   │   │   │   │   ├── icon.png
│   │   │   │   │   │   │   └── icon-rtl.png
│   │   │   │   │   │   ├── icon.png
│   │   │   │   │   │   └── icon-rtl.png
│   │   │   │   │   ├── music
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── music.js
│   │   │   │   │   │   ├── music.gif
│   │   │   │   │   │   └── plugin.js
│   │   │   │   │   ├── pagebreak
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── pagebreak.gif
│   │   │   │   │   ├── pastefromword
│   │   │   │   │   │   └── filter
│   │   │   │   │   │   └── default.js
│   │   │   │   │   ├── preview
│   │   │   │   │   │   └── preview.html
│   │   │   │   │   ├── scayt
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── options.js
│   │   │   │   │   │   │   └── toolbar.css
│   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   └── README.md
│   │   │   │   │   ├── showblocks
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── block_address.png
│   │   │   │   │   │   ├── block_blockquote.png
│   │   │   │   │   │   ├── block_div.png
│   │   │   │   │   │   ├── block_h1.png
│   │   │   │   │   │   ├── block_h2.png
│   │   │   │   │   │   ├── block_h3.png
│   │   │   │   │   │   ├── block_h4.png
│   │   │   │   │   │   ├── block_h5.png
│   │   │   │   │   │   ├── block_h6.png
│   │   │   │   │   │   ├── block_p.png
│   │   │   │   │   │   └── block_pre.png
│   │   │   │   │   ├── smiley
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── smiley.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── angel_smile.gif
│   │   │   │   │   │   ├── angel_smile.png
│   │   │   │   │   │   ├── angry_smile.gif
│   │   │   │   │   │   ├── angry_smile.png
│   │   │   │   │   │   ├── broken_heart.gif
│   │   │   │   │   │   ├── broken_heart.png
│   │   │   │   │   │   ├── confused_smile.gif
│   │   │   │   │   │   ├── confused_smile.png
│   │   │   │   │   │   ├── cry_smile.gif
│   │   │   │   │   │   ├── cry_smile.png
│   │   │   │   │   │   ├── devil_smile.gif
│   │   │   │   │   │   ├── devil_smile.png
│   │   │   │   │   │   ├── embaressed_smile.gif
│   │   │   │   │   │   ├── embarrassed_smile.gif
│   │   │   │   │   │   ├── embarrassed_smile.png
│   │   │   │   │   │   ├── envelope.gif
│   │   │   │   │   │   ├── envelope.png
│   │   │   │   │   │   ├── heart.gif
│   │   │   │   │   │   ├── heart.png
│   │   │   │   │   │   ├── kiss.gif
│   │   │   │   │   │   ├── kiss.png
│   │   │   │   │   │   ├── lightbulb.gif
│   │   │   │   │   │   ├── lightbulb.png
│   │   │   │   │   │   ├── omg_smile.gif
│   │   │   │   │   │   ├── omg_smile.png
│   │   │   │   │   │   ├── regular_smile.gif
│   │   │   │   │   │   ├── regular_smile.png
│   │   │   │   │   │   ├── sad_smile.gif
│   │   │   │   │   │   ├── sad_smile.png
│   │   │   │   │   │   ├── shades_smile.gif
│   │   │   │   │   │   ├── shades_smile.png
│   │   │   │   │   │   ├── teeth_smile.gif
│   │   │   │   │   │   ├── teeth_smile.png
│   │   │   │   │   │   ├── thumbs_down.gif
│   │   │   │   │   │   ├── thumbs_down.png
│   │   │   │   │   │   ├── thumbs_up.gif
│   │   │   │   │   │   ├── thumbs_up.png
│   │   │   │   │   │   ├── tongue_smile.gif
│   │   │   │   │   │   ├── tongue_smile.png
│   │   │   │   │   │   ├── tounge_smile.gif
│   │   │   │   │   │   ├── whatchutalkingabout_smile.gif
│   │   │   │   │   │   ├── whatchutalkingabout_smile.png
│   │   │   │   │   │   ├── wink_smile.gif
│   │   │   │   │   │   └── wink_smile.png
│   │   │   │   │   ├── specialchar
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   ├── af.js
│   │   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   ├── en-gb.js
│   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   ├── gl.js
│   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   │   ├── id.js
│   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   │   ├── km.js
│   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   │   ├── si.js
│   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   │   ├── sq.js
│   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   ├── th.js
│   │   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   ├── tt.js
│   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   │   │   └── zh.js
│   │   │   │   │   │   └── specialchar.js
│   │   │   │   │   ├── table
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── table.js
│   │   │   │   │   ├── tabletools
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── tableCell.js
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── templates.css
│   │   │   │   │   │   │   └── templates.js
│   │   │   │   │   │   └── templates
│   │   │   │   │   │   ├── default.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── template1.gif
│   │   │   │   │   │   ├── template2.gif
│   │   │   │   │   │   └── template3.gif
│   │   │   │   │   ├── video
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── video.js
│   │   │   │   │   │   ├── docs
│   │   │   │   │   │   │   ├── install.html
│   │   │   │   │   │   │   └── styles.css
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── icon.png
│   │   │   │   │   │   │   └── placeholder.png
│   │   │   │   │   │   └── plugin.js
│   │   │   │   │   ├── wikititle
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── wikititle.js
│   │   │   │   │   │   ├── music.gif
│   │   │   │   │   │   └── plugin.js
│   │   │   │   │   └── wsc
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   ├── ciframe.html
│   │   │   │   │   │   ├── tmpFrameset.html
│   │   │   │   │   │   ├── wsc.css
│   │   │   │   │   │   ├── wsc_ie.js
│   │   │   │   │   │   └── wsc.js
│   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   └── README.md
│   │   │   │   ├── README.md
│   │   │   │   ├── skins
│   │   │   │   │   └── moono
│   │   │   │   │   ├── dialog.css
│   │   │   │   │   ├── dialog_ie7.css
│   │   │   │   │   ├── dialog_ie8.css
│   │   │   │   │   ├── dialog_ie.css
│   │   │   │   │   ├── dialog_iequirks.css
│   │   │   │   │   ├── dialog_opera.css
│   │   │   │   │   ├── editor.css
│   │   │   │   │   ├── editor_gecko.css
│   │   │   │   │   ├── editor_ie7.css
│   │   │   │   │   ├── editor_ie8.css
│   │   │   │   │   ├── editor_ie.css
│   │   │   │   │   ├── editor_iequirks.css
│   │   │   │   │   ├── icons_hidpi.png
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── arrow.png
│   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   ├── hidpi
│   │   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   │   ├── lock-open.png
│   │   │   │   │   │   │   ├── lock.png
│   │   │   │   │   │   │   └── refresh.png
│   │   │   │   │   │   ├── lock-open.png
│   │   │   │   │   │   ├── lock.png
│   │   │   │   │   │   ├── mini.png
│   │   │   │   │   │   └── refresh.png
│   │   │   │   │   └── readme.md
│   │   │   │   └── styles.js
│   │   │   ├── fastclick.js
│   │   │   ├── html5shiv.min.js
│   │   │   ├── jquery.json.js
│   │   │   ├── jquery.min.js
│   │   │   ├── jquery.mobile.custom.min.js
│   │   │   ├── jquery.tmpl.js
│   │   │   ├── jquery-ui.min.js
│   │   │   ├── mathquill.min.js
│   │   │   ├── mplugin.js
│   │   │   ├── plugin.js
│   │   │   ├── p-pull-refresh.js
│   │   │   ├── respond.min.js
│   │   │   ├── swiper.jquery.js
│   │   │   ├── swiper.jquery.min.js
│   │   │   └── touche.js
│   │   └── tpls
│   │   └── master
│   │   ├── apps.tpl
│   │   ├── config.tpl
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── login.tpl
│   │   ├── menu.tpl
│   │   └── nav.tpl
│   ├── course
│   │   ├── app.php
│   │   ├── cls
│   │   │   ├── config.cls.php
│   │   │   ├── content.cls.php
│   │   │   ├── course.cls.php
│   │   │   └── log.cls.php
│   │   ├── controller
│   │   │   ├── category.app.php
│   │   │   ├── category.master.php
│   │   │   ├── contents.master.php
│   │   │   ├── coupon.master.php
│   │   │   ├── course.app.php
│   │   │   ├── course.master.php
│   │   │   ├── index.app.php
│   │   │   ├── index.master.php
│   │   │   ├── module.master.php
│   │   │   └── search.app.php
│   │   ├── master.php
│   │   └── tpls
│   │   ├── app
│   │   │   ├── category_default.tpl
│   │   │   ├── content_default.tpl
│   │   │   ├── course_default.tpl
│   │   │   ├── footer.tpl
│   │   │   ├── header.tpl
│   │   │   ├── index.tpl
│   │   │   ├── nav.tpl
│   │   │   ├── opencourse.tpl
│   │   │   └── search_default.tpl
│   │   └── master
│   │   ├── addfield.tpl
│   │   ├── addmodule.tpl
│   │   ├── category_add.tpl
│   │   ├── category_ajax_data.tpl
│   │   ├── category_edit.tpl
│   │   ├── category.tpl
│   │   ├── content_add.tpl
│   │   ├── content_edit.tpl
│   │   ├── content.tpl
│   │   ├── course_addmember.tpl
│   │   ├── course_add.tpl
│   │   ├── course_copy.tpl
│   │   ├── course_edit.tpl
│   │   ├── course_members.tpl
│   │   ├── course_move.tpl
│   │   ├── course.tpl
│   │   ├── fields.tpl
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── modifyfield.tpl
│   │   ├── modifymodule.tpl
│   │   ├── module.tpl
│   │   ├── nav.tpl
│   │   ├── preview_ajax.tpl
│   │   └── preview.tpl
│   ├── docs
│   ├── document
│   │   ├── api.php
│   │   ├── cls
│   │   │   └── attach.cls.php
│   │   ├── controller
│   │   │   ├── attachtype.master.php
│   │   │   ├── files.master.php
│   │   │   ├── fineuploader.api.php
│   │   │   ├── index.api.php
│   │   │   ├── index.master.php
│   │   │   ├── swfupload.api.php
│   │   │   ├── swfuploadvideo.api.php
│   │   │   ├── upload.api.php
│   │   │   └── uploadfile.api.php
│   │   ├── lang
│   │   ├── master.php
│   │   ├── styles
│   │   └── tpls
│   │   └── master
│   │   ├── attachs.tpl
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── nav.tpl
│   │   ├── types_add.tpl
│   │   ├── types_modify.tpl
│   │   └── types.tpl
│   ├── exam
│   │   ├── api.php
│   │   ├── app.php
│   │   ├── cls
│   │   │   ├── answer.cls.php
│   │   │   ├── area.cls.php
│   │   │   ├── basic.cls.php
│   │   │   ├── exam.cls.php
│   │   │   ├── exercise.cls.php
│   │   │   ├── favor.cls.php
│   │   │   ├── info.cls.php
│   │   │   ├── question.cls.php
│   │   │   ├── question.cls.php3
│   │   │   └── section.cls.php
│   │   ├── controller
│   │   │   ├── answer.app.php
│   │   │   ├── asks.master.php
│   │   │   ├── basic.master.php
│   │   │   ├── basics.app.php
│   │   │   ├── basics.phone.php
│   │   │   ├── basic.teach.php
│   │   │   ├── exam.app.php
│   │   │   ├── exampaper.app.php
│   │   │   ├── exampaper.phone.php
│   │   │   ├── exam.phone.php
│   │   │   ├── exams.master.php
│   │   │   ├── exams.teach.php
│   │   │   ├── exercise.app.php
│   │   │   ├── exercise.phone.php
│   │   │   ├── favor.app.php
│   │   │   ├── favor.phone.php
│   │   │   ├── history.app.php
│   │   │   ├── history.phone.php
│   │   │   ├── index.app.php
│   │   │   ├── index.master.php
│   │   │   ├── index.phone.php
│   │   │   ├── index.teach.php
│   │   │   ├── lesson.app.php
│   │   │   ├── lesson.phone.php
│   │   │   ├── questions.master.php
│   │   │   ├── questions.teach.php
│   │   │   ├── record.app.php
│   │   │   ├── record.phone.php
│   │   │   ├── recover.app.php
│   │   │   ├── recover.phone.php
│   │   │   ├── recyle.master.php
│   │   │   ├── recyle.teach.php
│   │   │   ├── rowsquestions.master.php
│   │   │   ├── rowsquestions.teach.php
│   │   │   ├── score.app.php
│   │   │   ├── score.phone.php
│   │   │   ├── tools.master.php
│   │   │   ├── tools.teach.php
│   │   │   ├── users.master.php
│   │   │   └── users.teach.php
│   │   ├── lang
│   │   │   └── exam.lang.php
│   │   ├── master.php
│   │   ├── phone.php
│   │   ├── styles
│   │   │   ├── css
│   │   │   │   ├── font
│   │   │   │   │   ├── Symbola.eot
│   │   │   │   │   ├── Symbola.otf
│   │   │   │   │   ├── Symbola.svg
│   │   │   │   │   ├── Symbola.ttf
│   │   │   │   │   └── Symbola.woff
│   │   │   │   └── mathquill.css
│   │   │   ├── image
│   │   │   │   ├── demo2.png
│   │   │   │   └── demo.png
│   │   │   └── js
│   │   │   ├── mplugin.js
│   │   │   └── plugin.js
│   │   ├── teach.php
│   │   └── tpls
│   │   ├── api
│   │   ├── app
│   │   │   ├── basics_detail.tpl
│   │   │   ├── basics_open.tpl
│   │   │   ├── basics.tpl
│   │   │   ├── exam_mkscore.tpl
│   │   │   ├── exam_paper_1.tpl
│   │   │   ├── exam_paper_2.tpl
│   │   │   ├── exam_paper_3.tpl
│   │   │   ├── exampaper_mkscore.tpl
│   │   │   ├── exampaper_paper_1.tpl
│   │   │   ├── exampaper_paper_2.tpl
│   │   │   ├── exampaper_paper_3.tpl
│   │   │   ├── exampaper_paper.tpl
│   │   │   ├── exampaper_score.tpl
│   │   │   ├── exampaper_sign.tpl
│   │   │   ├── exam_paper.tpl
│   │   │   ├── exampaper.tpl
│   │   │   ├── exampaper_view.tpl
│   │   │   ├── exam_score.tpl
│   │   │   ├── exam_selectsubject.tpl
│   │   │   ├── exam.tpl
│   │   │   ├── exam_view.tpl
│   │   │   ├── exercise_mkscore.tpl
│   │   │   ├── exercise_number.tpl
│   │   │   ├── exercise_paper_question.tpl
│   │   │   ├── exercise_paper.tpl
│   │   │   ├── exercise_score.tpl
│   │   │   ├── exercise.tpl
│   │   │   ├── exercise_view.tpl
│   │   │   ├── favor.tpl
│   │   │   ├── footer.tpl
│   │   │   ├── header.tpl
│   │   │   ├── history_exampaperwrongs.tpl
│   │   │   ├── history_examview.tpl
│   │   │   ├── history_examwrongs.tpl
│   │   │   ├── history_exerciseview.tpl
│   │   │   ├── history_exercisewrongs.tpl
│   │   │   ├── history.tpl
│   │   │   ├── index.tpl
│   │   │   ├── left.tpl
│   │   │   ├── lesson_ajaxquestion.tpl
│   │   │   ├── lesson_number.tpl
│   │   │   ├── lesson_paper.tpl
│   │   │   ├── lesson.tpl
│   │   │   ├── nav.tpl
│   │   │   ├── plugin_editor.tpl
│   │   │   ├── record.tpl
│   │   │   └── scores.tpl
│   │   ├── master
│   │   │   ├── basic_addarea.tpl
│   │   │   ├── basic_addpoint.tpl
│   │   │   ├── basic_addquestype.tpl
│   │   │   ├── basic_addsection.tpl
│   │   │   ├── basic_addsubject.tpl
│   │   │   ├── basic_add.tpl
│   │   │   ├── basic_area.tpl
│   │   │   ├── basic_examrange.tpl
│   │   │   ├── basic_modifyarea.tpl
│   │   │   ├── basic_modifypoint.tpl
│   │   │   ├── basic_modifyquest.tpl
│   │   │   ├── basic_modifysection.tpl
│   │   │   ├── basic_modifysubject.tpl
│   │   │   ├── basic_modify.tpl
│   │   │   ├── basic_offpaper.tpl
│   │   │   ├── basic_point.tpl
│   │   │   ├── basic_questype.tpl
│   │   │   ├── basic_section.tpl
│   │   │   ├── basic_subject.tpl
│   │   │   ├── basic.tpl
│   │   │   ├── exams_ajaxsetting.tpl
│   │   │   ├── exams_ajax.tpl
│   │   │   ├── exams_auto.tpl
│   │   │   ├── exams_modifyauto.tpl
│   │   │   ├── exams_modifypaper.tpl
│   │   │   ├── exams_modifyself.tpl
│   │   │   ├── exams_modifytemp.tpl
│   │   │   ├── exams_paper.tpl
│   │   │   ├── exams_selected.tpl
│   │   │   ├── exams_self.tpl
│   │   │   ├── exams_temp.tpl
│   │   │   ├── exams.tpl
│   │   │   ├── footer.tpl
│   │   │   ├── header.tpl
│   │   │   ├── index.tpl
│   │   │   ├── menu.tpl
│   │   │   ├── nav.tpl
│   │   │   ├── question_add.tpl
│   │   │   ├── question_batadd.tpl
│   │   │   ├── questionchildrows_modify.tpl
│   │   │   ├── question_detail.tpl
│   │   │   ├── question_filebatadd.tpl
│   │   │   ├── questionrows_addchild.tpl
│   │   │   ├── questionrows_add.tpl
│   │   │   ├── questionrows_bataddchild.tpl
│   │   │   ├── questionrows_batadd.tpl
│   │   │   ├── questionrows_detail.tpl
│   │   │   ├── questionrows_list.tpl
│   │   │   ├── questionrows_modify.tpl
│   │   │   ├── questionrows.tpl
│   │   │   ├── questions_modify.tpl
│   │   │   ├── questions.tpl
│   │   │   ├── recyle_knows.tpl
│   │   │   ├── recyle_questions.tpl
│   │   │   ├── recyle_rowsquestions.tpl
│   │   │   ├── selectquestions.tpl
│   │   │   ├── tools_history.tpl
│   │   │   ├── tools_session.tpl
│   │   │   ├── tools.tpl
│   │   │   ├── user_batopen.tpl
│   │   │   ├── users_basic.tpl
│   │   │   └── user.tpl
│   │   ├── phone
│   │   │   ├── basics_detail.tpl
│   │   │   ├── basics_open.tpl
│   │   │   ├── basics.tpl
│   │   │   ├── exam_mkscore.tpl
│   │   │   ├── exampaper_mkscore.tpl
│   │   │   ├── exampaper_paper.tpl
│   │   │   ├── exampaper_score.tpl
│   │   │   ├── exam_paper.tpl
│   │   │   ├── exampaper.tpl
│   │   │   ├── exam_score.tpl
│   │   │   ├── exam.tpl
│   │   │   ├── exercise_mkscore.tpl
│   │   │   ├── exercise_number.tpl
│   │   │   ├── exercise_paper.tpl
│   │   │   ├── exercise_score.tpl
│   │   │   ├── exercise.tpl
│   │   │   ├── exercise_view.tpl
│   │   │   ├── favor.tpl
│   │   │   ├── footer.tpl
│   │   │   ├── header.tpl
│   │   │   ├── history_examview.tpl
│   │   │   ├── history_exerciseview.tpl
│   │   │   ├── history.tpl
│   │   │   ├── index.tpl
│   │   │   ├── lesson_ajaxquestion.tpl
│   │   │   ├── lesson_number.tpl
│   │   │   ├── lesson_paper.tpl
│   │   │   ├── lesson.tpl
│   │   │   ├── login.tpl
│   │   │   ├── nav.tpl
│   │   │   ├── plugin_editor.tpl
│   │   │   └── scores.tpl
│   │   └── teach
│   │   ├── basic_add.tpl
│   │   ├── basic_examrange.tpl
│   │   ├── basic_modify.tpl
│   │   ├── basic_offpaper.tpl
│   │   ├── basic.tpl
│   │   ├── exams_ajaxsetting.tpl
│   │   ├── exams_ajax.tpl
│   │   ├── exams_auto.tpl
│   │   ├── exams_modifyauto.tpl
│   │   ├── exams_modifypaper.tpl
│   │   ├── exams_modifyself.tpl
│   │   ├── exams_modifytemp.tpl
│   │   ├── exams_paper.tpl
│   │   ├── exams_selected.tpl
│   │   ├── exams_self.tpl
│   │   ├── exams_temp.tpl
│   │   ├── exams.tpl
│   │   ├── exam_view.tpl
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── nav.tpl
│   │   ├── question_add.tpl
│   │   ├── question_batadd.tpl
│   │   ├── questionchildrows_modify.tpl
│   │   ├── question_detail.tpl
│   │   ├── questionrows_addchild.tpl
│   │   ├── questionrows_add.tpl
│   │   ├── questionrows_bataddchild.tpl
│   │   ├── questionrows_batadd.tpl
│   │   ├── questionrows_detail.tpl
│   │   ├── questionrows_list.tpl
│   │   ├── questionrows_modify.tpl
│   │   ├── questionrows.tpl
│   │   ├── questions_modify.tpl
│   │   ├── questions.tpl
│   │   ├── recyle_knows.tpl
│   │   ├── recyle_questions.tpl
│   │   ├── recyle_rowsquestions.tpl
│   │   ├── selectquestions.tpl
│   │   ├── users_basic.tpl
│   │   ├── users_decide.tpl
│   │   ├── users_history.tpl
│   │   ├── users_knowsstats.tpl
│   │   ├── users_scorelist.tpl
│   │   └── users_stats.tpl
│   └── user
│   ├── api.php
│   ├── app.php
│   ├── app.uc.php
│   ├── center.php
│   ├── cls
│   │   ├── config.cls.php
│   │   ├── msg.cls.php
│   │   └── user.cls.php
│   ├── controller
│   │   ├── actor.master.php
│   │   ├── ajax.master.php
│   │   ├── config.master.php
│   │   ├── index.api.php
│   │   ├── index.app.php
│   │   ├── index.center.php
│   │   ├── index.master.php
│   │   ├── index.phone.php
│   │   ├── login.app.php
│   │   ├── login.phone.php
│   │   ├── logout.app.php
│   │   ├── logout.phone.php
│   │   ├── module.master.php
│   │   ├── payfor.center.php
│   │   ├── privatement.center.php
│   │   ├── privatement.phone.php
│   │   ├── register.app.php
│   │   ├── register.phone.php
│   │   └── user.master.php
│   ├── lang
│   ├── master.php
│   ├── phone.php
│   └── tpls
│   ├── api
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── nav.tpl
│   │   └── payfor_status.tpl
│   ├── app
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── login.tpl
│   │   ├── nav.tpl
│   │   └── register.tpl
│   ├── center
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── modifyuser.tpl
│   │   ├── nav.tpl
│   │   ├── payfor_detail.tpl
│   │   ├── payfor.tpl
│   │   └── payfor_wxpay.tpl
│   ├── master
│   │   ├── actor.tpl
│   │   ├── addactor.tpl
│   │   ├── addfield.tpl
│   │   ├── addmodule.tpl
│   │   ├── adduser.tpl
│   │   ├── batadduser.tpl
│   │   ├── config.tpl
│   │   ├── fields.tpl
│   │   ├── footer.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── modifyactor.tpl
│   │   ├── modifyfield.tpl
│   │   ├── modifymodule.tpl
│   │   ├── modifyuser.tpl
│   │   ├── module.tpl
│   │   ├── nav.tpl
│   │   ├── preview.tpl
│   │   └── user.tpl
│   └── phone
│   ├── index.tpl
│   ├── login.tpl
│   ├── modifypass.tpl
│   └── register.tpl
├── data
├── files
│   ├── attach
│   │   ├── files
│   │   │   └── content
│   │   │   └── 20170109
│   │   │   └── 14839750112280.jpg
│   │   └── images
│   │   └── content
│   │   ├── 20161231
│   │   │   ├── 14831523418562.jpg
│   │   │   ├── 14831523605452.jpg
│   │   │   └── 14831526066272.jpg
│   │   └── 20170228
│   │   ├── 14882458042882.jpg
│   │   ├── 14882463441403.jpg
│   │   └── 14882515371902.jpg
│   └── public
│   └── font
│   ├── FZZYJW.TTF
│   ├── Symbola.ttf
│   ├── VERDANAB.TTF
│   ├── VERDANAI.TTF
│   ├── VERDANA.TTF
│   └── VERDANAZ.TTF
├── index.php
├── lib
│   ├── alipay.cls.php
│   ├── api.cls.php
│   ├── ca.cls.php
│   ├── category.cls.php
│   ├── cnf.cls.php
│   ├── config.inc.php
│   ├── db.cls.php
│   ├── editor.cls.php
│   ├── ev.cls.php
│   ├── files.cls.php
│   ├── ftp.cls.php
│   ├── gd.cls.php
│   ├── gms.cls.php
│   ├── html.cls.php
│   ├── http.cls.php
│   ├── include
│   │   ├── alipay.func.php
│   │   ├── alipay_notify.class.php
│   │   ├── alipay_submit.class.php
│   │   ├── cert
│   │   │   ├── apiclient_cert.pem
│   │   │   └── apiclient_key.pem
│   │   ├── phpqrcode.php
│   │   ├── php_serial.class.php
│   │   ├── sphinxapi.php
│   │   ├── WxPay.Api.php
│   │   ├── WxPay.Config.php
│   │   ├── WxPay.Data.php
│   │   ├── WxPay.Exception.php
│   │   └── WxPay.Notify.php
│   ├── init.cls.php
│   ├── module.cls.php
│   ├── pdosql.cls.php
│   ├── pepdo.cls.php
│   ├── pg.cls.php
│   ├── session.cls.php
│   ├── smtp.cls.php
│   ├── sphinx.cls.php
│   ├── sql.cls.php
│   ├── strings.cls.php
│   ├── tpl.cls.php
│   ├── wechat.cls.php
│   └── wxpay.cls.php
└── pe4.sql

171 directories, 961 files

标签:

实例下载地址

在线考试系统源码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警