Initial project files: BESCMS full source
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* 移动端域名api
|
||||
*/
|
||||
|
||||
header('Content-Type: text/html; charset=utf-8');
|
||||
|
||||
if (!is_file('../index.php')) {
|
||||
echo '当前服务器无法访问跨目录文件:';
|
||||
echo 'http://help.xunruicms.com/655.html';
|
||||
exit();
|
||||
}
|
||||
|
||||
echo 'phpcmf ok';exit;
|
||||
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Cms 移动端入口程序
|
||||
*/
|
||||
|
||||
define('IS_MOBILE', 1);
|
||||
|
||||
// 执行主程序
|
||||
require '../index.php';
|
||||
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 577 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 986 B |
|
After Width: | Height: | Size: 444 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 983 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 423 B |
|
After Width: | Height: | Size: 950 B |
|
After Width: | Height: | Size: 634 B |
|
After Width: | Height: | Size: 893 B |
|
After Width: | Height: | Size: 822 B |
|
After Width: | Height: | Size: 411 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 435 B |
|
After Width: | Height: | Size: 393 B |
|
After Width: | Height: | Size: 1014 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 991 B |
|
After Width: | Height: | Size: 540 B |
|
After Width: | Height: | Size: 767 B |
|
After Width: | Height: | Size: 932 B |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 499 B |
|
After Width: | Height: | Size: 449 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 769 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 709 B |
|
After Width: | Height: | Size: 608 B |
|
After Width: | Height: | Size: 1007 B |
|
After Width: | Height: | Size: 771 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 831 B |
|
After Width: | Height: | Size: 917 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 665 B |
|
After Width: | Height: | Size: 798 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 452 B |
|
After Width: | Height: | Size: 342 B |
|
After Width: | Height: | Size: 931 B |
|
After Width: | Height: | Size: 570 B |
|
After Width: | Height: | Size: 693 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 457 B |
|
After Width: | Height: | Size: 702 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 954 B |
|
After Width: | Height: | Size: 725 B |
|
After Width: | Height: | Size: 303 B |
|
After Width: | Height: | Size: 833 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 562 B |
|
After Width: | Height: | Size: 1009 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 665 B |
|
After Width: | Height: | Size: 887 B |
|
After Width: | Height: | Size: 658 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 402 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 608 B |
|
After Width: | Height: | Size: 534 B |
|
After Width: | Height: | Size: 619 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 738 B |
|
After Width: | Height: | Size: 848 B |
|
After Width: | Height: | Size: 1022 B |
|
After Width: | Height: | Size: 654 B |
|
After Width: | Height: | Size: 853 B |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 169 B |
|
After Width: | Height: | Size: 170 B |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
hui 折叠面板组件
|
||||
作者 : 深海
|
||||
官网 : http://hui.hcoder.net/
|
||||
*/
|
||||
hui.accordion = function(closeAll, firstShow){
|
||||
if(typeof(closeAll) == 'undefined'){closeAll = false;}
|
||||
if(typeof(firstShow) == 'undefined'){firstShow = false;}
|
||||
hui('.hui-accordion').each(function(cDom){
|
||||
var accordionTitle = hui(cDom).find('.hui-accordion-title');
|
||||
accordionTitle.click(function(){
|
||||
var accordionContent = hui(this).parent().find('.hui-accordion-content');
|
||||
var accordionTitleHtml = accordionTitle.html();
|
||||
if(accordionContent.isShow()){
|
||||
accordionContent.hide();
|
||||
accordionTitle.removeClass('hui-accordion-title-up');
|
||||
}else{
|
||||
if(closeAll){hui('.hui-accordion-content').hide(); hui('.hui-accordion-title').removeClass('hui-accordion-title-up');}
|
||||
accordionContent.show();
|
||||
accordionTitle.addClass('hui-accordion-title-up');
|
||||
}
|
||||
hui.scrollTop(0);
|
||||
});
|
||||
});
|
||||
if(firstShow){hui('.hui-accordion').eq(0).find('.hui-accordion-title').click();}
|
||||
};
|
||||