2 Star 13 Fork 6

zjutsxj / yimaoadmin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

Yimao Admin v3.0.5

源码地址:https://gitee.com/zjutsxj/yimaoadmin

演示地址:http://demo.91site.net/

后台地址:http://demo.91site.net/admin

演示帐号:yimao

演示密码:123456

文档地址:https://www.kancloud.cn/zjutsxj/yimaoadmin

介绍

Yimao Admin v3.0.5 企业建站系统,使用 thinkphp5.1.27 + mysql 开发。

  1. php 要求 5.6 以上版本,推荐使用 5.6, 7.0, 7.1,扩展(curl,json,pdo,gd,filter,rewrite)
  2. 数据库:mysql 推荐使用5.5/5.6
  3. 服务器软件apache或者nginx

系统特点:

  1. 功能模块丰富,功能模块支持无限级分类、支持参数自定义;
  2. 添加无限多个语言版本,各个版本之间单独设置互不影响;

使用说明

如果你有 thinkphp5.1.* 的开发经验那你可以轻而易举的使用本系统来制作建企业网站,如果你对 thinkphp 不了解也没关系,只要你会制作 html 页面也可以很方便创建企业网站。

  • 将数据库文件 tp51_site.sql 导入到mysql数据库;在 .env 文件中修改数据库连接信息。
  • 主题位置:/public/themes
  • 域名解析:/public 目录 (不是解析到根目录,需要解析到 public 目录)
站点全局变量(站点内任意位置都可以直接调用)
首页标题:{$site_home}
网站名称:{$site_title}
关键词:{$site_keywords}
网站描述:{$site_description}
JS代码:{$site_jscode}

以上代码如果需要转义可以这样使用:

{$site_jscode|raw}

如果定义站点时添加了自定义参数:(查看网站设置页面“其它设置”)

例如:{$site_param_1}、{$site_param_2}、{$site_param_3}
sp_page($id) 单页内容
案例 1:{assign name="field" value=":sp_page(10)"}
案例 2:<?php $field = sp_page(10); ?>
sp_column($id) 栏目内容
案例 1:{assign name="field" value=":sp_column(10)"}
案例 2:<?php $field = sp_column(10); ?>
sp_desc($id) 内容简介
案例 1:{:sp_desc(10)}  
案例 2:{:sp_desc(10)|raw}  
案例 3:<?php echo sp_desc(10); ?>

sp_details($id, $param, $cate) 文章详情

案例 1:不带参数,系统自动获取参数变量
{assign name="field" value=":sp_details()"}
<?php $field = sp_details(); ?>

案例 2:指定文章 id
{assign name="field" value=":sp_details(100)"}
<?php $field = sp_details(100); ?>

案例 3:指定文章 id 显示自定义字段
{assign name="field" value=":sp_details(100, true)"}
<?php $field = sp_details(100, true); ?>

案例 4:未指定文章 id 显示自定义字段,显示分类信息
{assign name="field" value=":sp_details(0, true, true)"}
<?php $field = sp_details(0, true, true); ?>

调用自定义字段:{$field['param_36']}  36 为自定义字段的 id 号

调用分类信息
名称:{$field['wscate]['wscate_name']}
标题:{$field['wscate]['wscate_title']}
内容:{$field['wscate]['wscate_details']}
图片:{$field['wscate]['wscate_image']}
sp_column_cate($cateid) 栏目分类

作用环境,例如:企业动态 =》 企业新闻,行业新闻
点击 “企业新闻” ,“行业新闻” 页面时使用该函数。

变量:$cateid(选填) 未填写时系统将自动获取该 cateid 号   
案例 1:{assign name="field" value=":sp_column_cate(10)"}  
案例 2:{assign name="field" value=":sp_column_cate()"}  
案例 3:<?php $field = sp_column_cate(10); ?>  
案例 4:<?php $field = sp_column_cate(); ?>
sp_cate($columnid, $parentid, $number, $options) 分类列表

参数说明:

$columnid 栏目 id ==(必填)==    
$parentid 父 id ==(选填)==   
$number 获取数量 ==(选填)==  
$options 其它参数 array ==(选填)== ['where'=>'', 'order'=>'']

使用方法:

案例 1:{assign name="list" value=":sp_cate(10)"}   
说明:获取 columnid=10 所有分类

案例 2:{assign name="list" value=":sp_cate(10, 4)"}
<?php $list = sp_cate(10, 4); ?>  
说明:获取 columnid=10 and parentid=4 所有分类

案例 3:{assign name="list" value=":sp_cate(10, '', 8)"}  
说明:获取 columnid=10 前 8 条分类

案例 4:{assign name="list" value=":sp_cate(10, 0, 6)"}  
说明:获取 columnid=10 and parentid=0 前 6 条分类

使用 php 直接调用:

案例 1:<?php $list = sp_cate(10); ?>  
案例 2:<?php $list = sp_cate(10, 4); ?>  
案例 3:<?php $list = sp_cate(10, '', 8); ?>   
案例 4:<?php $list = sp_cate(10, 0, 6); ?> 

自定义参数 调用

<?php   
    $options = [
        // 定义 where 参数后,$columnid, $parentid 这二个参数将会自动失效
        'where' => 'wscate_columnid = 10 and wscate_pid = 5',
        'order' => 'wscate_sort asc' // 排序方式,不填写按默认方式排序
    ];
    $list = sp_cate(0, 0, 10, $options); // 获取 10 条分类
    $list = sp_cate(0, 0, 0, $options); // 获取全部分类
?>
sp_article($columnid, $cateid, $number, $options) 文章列表

说明:sp_article 函数是 sp_list 的优化版,更多功能请查看 sp_list 函数。
备注:系统支持分类多选。自定义where语句时,数据分类筛选用 ==find_in_set== 来查询数据。

$columnid 栏目 id (必填)  
$cateid 分类 id (选填)
$number 获取数量 (选填)
$options 其它参数 array (选填) where, order, pageurl, cate, param  

使用方法:

方法 1:{assign name="list" value=":sp_article(13)"}  
说明:获取 columnid=13 所有文章

方法 2:{assign name="list" value=":sp_article(13, 8)"}  
说明:获取 columnid=13 and cateid=8 所有文章

方法 3:{assign name="list" value=":sp_article(13, 8, 10)"}  
说明:获取 columnid=13 and cateid=8 前 10 条文章

方法 4:{assign name="list" value=":sp_article(13, 0, 10)"}  
说明:获取 columnid=13 前 10 条文章

使用 php 直接调用:

方法 1:<?php $list = sp_article(13); ?>  
方法 2:<?php $list = sp_article(13, 8); ?>  
方法 3:<?php $list = sp_article(13, 8, 10); ?>  
方法 4:<?php $list = sp_article(13, 0, 10); ?>  

调用自定义参数:

案例 1:
<?php
    // $options 数组的内容都是选填。
    $options = [
        // 定义 where 参数后,$columnid, $cateid 这二个参数将会自动失效
        'where' =>  'wsarticle_columnid = 10 and find_in_set(5, wsarticle_cateid)',
        // 排序方式 不填写按默认方式排序
        'order' => 'wscate_sort asc',
        // 不设置该参数将不分页
        'pageurl' => '/news-p[page]',
        // 分类信息,true 时可以在列表中调用分类信息
        'cate' => false,
        // 自定义信息,true 时可以在列表中调用自定义字段
        'param' => false,
    ];
    // 获取 columnid = 10 and cateid = 5 的数据,每页 10 条数据。
    // 生成的 url 为 /news-p1.html,/news-p2.html,/news-p3.html
    $list = sp_article(0, 0, 10, $options);
?>
案例 2:演示使用 where 参数 不分页
<?php
    $options = [
        'where' =>  'wsarticle_columnid = 10 and find_in_set(5, wsarticle_cateid)',
        'order' => 'wscate_sort asc',
    ];
    // 获取 columnid = 10 and cateid = 5 的所有数据。
    $list = sp_article(0, 0, 0, $options);
?>
案例 3:演示栏目分页
<?php
    $options = [
        'pageurl' => '/news-p[page]', // 分页 url 地址 [page] 为必须
    ];
    $list = sp_article(10, 0, 12, $options);
    
    // 或者简化成以下方式调用
    $list = sp_article(10, 0, 12, ['pageurl'=>'/news-p[page]']);
?>
案例 4:演示栏目分类分页
<?php
    $options = [
        'pageurl' => '/news/industry-news-5-p[page]', // 分页 url 地址 [page] 为必须
    ];
    // 获取 columnid = 10 and cateid = 5 的数据,每页 10 条数据。
    // 生成的 url 为 /news/industry-news-5-p1.html,/news/industry-news-5-p2.html
    $list = sp_article(10, 5, 10, $options);
?>
案例 5:搜索分页功能
<?php
    $keywords = '关键词';
    $options = [
        'where' => "wsarticle_columnid = 10 and wsarticle_title like '%".$keywords."%'",
        'pageurl' => '/news/industry-news-5-p[page]', // 分页 url 地址 [page] 为必须
    ];
    // 获取 columnid = 10 and cateid = 5 的数据,每页 10 条数据。
    // 生成的 url 为 /news/industry-news-5-p1.html,/news/industry-news-5-p2.html
    $list = sp_article(10, 5, 10, $options);
?>
sp_list($where, $order, $pagesize, $pageurl, $options) 文章列表

参数说明:

$where 查询条件 (必填)
$order 排序方式 (选填)
$pagesize 获取数量 / 分页数量 (选填)
$pageurl 分页地址 (选填)
$options 自定义参数 (选填)
案例 1:最简单的使用方法
<?php 
    // 获取 columnid = 21 的全部文章
    $list = sp_list("wsarticle_columnid = 21");
?>

案例 2:分页数据
<?php 
    $where = "wsarticle_columnid = 21";
    $order = "wsarticle_create_time desc";
    $pagesize = 10;
    $pageurl = "/news-p[page]";
    $options = ['cate'=>true, 'param'=>true];
    $list = sp_list($where, $order, $pagesize, $pageurl, $options);
?>

案例 3:分类分页数据
<?php 
    $where = "wsarticle_columnid = 21 and find_in_set(5, wsarticle_cateid)";
    $order = "wsarticle_create_time desc";
    $pagesize = 10;
    $pageurl = "/news/industry-5-p[page]";
    $options = ['cate'=>true, 'param'=>true];
    $list = sp_list($where, $order, $pagesize, $pageurl, $options);
?>

案例 4:文章搜索
<?php 
    $keywords = "搜索关键词";
    $where = "wsarticle_columnid = 21 and wsarticle_title like '%".$keywords."%'";
    $order = "wsarticle_create_time desc";
    $pagesize = 10;
    $pageurl = "/news-p[page].html?keywords=".$keywords;
    $options = ['cate'=>true, 'param'=>true];
    $list = sp_list($where, $order, $pagesize, $pageurl, $options);
?>

参考(thinkphp5.1):

主页:https://www.kancloud.cn/manual/thinkphp5_1
模板:https://www.kancloud.cn/manual/thinkphp5_1/354069
数据库:https://www.kancloud.cn/manual/thinkphp5_1/353997

常用标签

assign 定义标签 https://www.kancloud.cn/manual/thinkphp5_1/354090
volist 循环标签 https://www.kancloud.cn/manual/thinkphp5_1/354084
其它内置标签 https://www.kancloud.cn/manual/thinkphp5_1/354083

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

简介

YimaoAdmin 企业建站系统。 QQ:425225349;微信:zjutsxj 展开 收起
Apache-2.0
取消

贡献者

全部

近期动态

加载更多
不能加载更多了
PHP
1
https://gitee.com/zjutsxj/yimaoadmin.git
git@gitee.com:zjutsxj/yimaoadmin.git
zjutsxj
yimaoadmin
yimaoadmin
master

搜索帮助