mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
commit
25d62a355d
17
README.md
17
README.md
@ -1,14 +1,21 @@
|
||||
ThinkAdmin for PHP
|
||||
--
|
||||
## 大道至简 · 悟在天成
|
||||
|
||||
* ThinkAdmin 是一个基于 Thinkphp 5.1.x 开发的后台管理系统,集成后台系统常用功能。
|
||||
* 项目安装及二次开发请参考 ThinkPHP 官方文档及下面的服务环境说明,数据库 sql 文件存放于项目根目录下。
|
||||
>* 注意:项目测试请另行搭建环境并创建数据库(数据库配置 config/database.php), 切勿直接使用测试环境数据!
|
||||
>* 如果系统提示“测试系统禁止操作等字样”,可以修改项目路由配置(route/route.php),清空里面的路由记录。
|
||||
>* 当前版本使用ThinkPHP5.1.x版本,对PHP版本要求不低于php5.6,具体请查阅ThinkPHP官方文档。
|
||||
>* 如果系统提示“测试系统禁止操作等字样”,可以修改项目路由配置(route/route.php), 清空里面的路由记录。
|
||||
>* 当前版本使用 ThinkPHP 5.1.x 版本,对PHP版本要求不低于php5.6,具体请查阅ThinkPHP官方文档。
|
||||
|
||||
|
||||
Documentation
|
||||
--
|
||||
认真看看文档可能会对你的开发有所帮助哦!
|
||||
|
||||
文档地址:[ThinkAdmin 开发文档](https://www.kancloud.cn/zoujingli/thinkadmin/content)
|
||||
|
||||
|
||||
PHP开发技术交流(QQ群 513350915)
|
||||
|
||||
[](http://shang.qq.com/wpa/qunwpa?idkey=ae25cf789dafbef62e50a980ffc31242f150bc61a61164458216dd98c411832a)
|
||||
@ -17,11 +24,12 @@ PHP开发技术交流(QQ群 513350915)
|
||||
Repositorie
|
||||
--
|
||||
ThinkAdmin 为开源项目,允许把它用于任何地方,不受任何约束,欢迎 fork 项目。
|
||||
>* GitHub 托管地址:https://github.com/zoujingli/ThinkAdmin
|
||||
>* OSChina 托管地址:http://git.oschina.net/zoujingli/Think.Admin
|
||||
* GitHub 托管地址:https://github.com/zoujingli/ThinkAdmin
|
||||
* Gitee 托管地址:https://gitee.com/zoujingli/Think.Admin
|
||||
|
||||
对于新版本的微信模块使用的是授权模式,需要用到 ThinkService 项目。
|
||||
* GitHub 托管地址:https://github.com/zoujingli/ThinkService
|
||||
* Gitee 托管地址:https://gitee.com/zoujingli/ThinkService
|
||||
|
||||
其安装与 ThinkAdmin 相似,这里就不多说了。具体可以参见微信开放平台官网
|
||||
https://open.weixin.qq.com ,ThinkService 后台具体可以配置对应参数。
|
||||
@ -37,7 +45,6 @@ Module
|
||||
* `Http`服务组件(原生`CURL`封装,兼容PHP多版本)
|
||||
* 微信公众号服务组件(基于[WeChatDeveloper](https://github.com/zoujingli/WeChatDeveloper),微信网页授权获取用户信息、已关注粉丝管理、自定义菜单管理等等)
|
||||
* 微信商户支付服务组件(基于[WeChatDeveloper](https://github.com/zoujingli/WeChatDeveloper),支持JSAPI支付、扫码模式一支付、扫码模式二支付)
|
||||
* 测试公众号名称:思过崖思过 (大家可以关注它来进行简单的测试)
|
||||
* 更多组件开发中...
|
||||
|
||||
|
||||
|
144
admin_v3.sql
144
admin_v3.sql
@ -10,11 +10,131 @@ Target Server Type : MYSQL
|
||||
Target Server Version : 50559
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 2018-03-13 15:44:55
|
||||
Date: 2018-03-23 17:07:39
|
||||
*/
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for goods
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `goods`;
|
||||
CREATE TABLE `goods` (
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`brand_id` bigint(20) unsigned DEFAULT '0' COMMENT '品牌ID',
|
||||
`cate_id` bigint(20) unsigned DEFAULT '0' COMMENT '商品分类id',
|
||||
`unit_id` bigint(20) DEFAULT NULL COMMENT '商品单位ID',
|
||||
`spec_id` bigint(20) unsigned DEFAULT '0' COMMENT '规格ID',
|
||||
`tags_id` varchar(255) DEFAULT '' COMMENT '商品标签ID',
|
||||
`is_code` bigint(1) DEFAULT '1' COMMENT '是否有码商品',
|
||||
`goods_title` varchar(255) DEFAULT '' COMMENT '商品标签',
|
||||
`goods_content` text COMMENT '商品内容',
|
||||
`goods_logo` varchar(255) DEFAULT '' COMMENT '商品LOGO',
|
||||
`goods_image` text COMMENT '商品图片地址',
|
||||
`goods_video` varchar(500) DEFAULT '' COMMENT '商品视频URL',
|
||||
`goods_desc` varchar(500) DEFAULT '' COMMENT '商品描述',
|
||||
`package_stock` bigint(20) unsigned DEFAULT '0' COMMENT '总库存数量',
|
||||
`package_sale` bigint(20) unsigned DEFAULT '0' COMMENT '已销售数量',
|
||||
`favorite_num` bigint(20) unsigned DEFAULT '0' COMMENT '收藏次数',
|
||||
`sort` bigint(20) unsigned DEFAULT '0' COMMENT '数据排序',
|
||||
`status` bigint(1) unsigned DEFAULT '1' COMMENT '商品状态(1有效,0无效)',
|
||||
`is_deleted` bigint(1) unsigned DEFAULT '0' COMMENT '删除状态(1删除,0未删除)',
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商城商品主表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of goods
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for goods_brand
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `goods_brand`;
|
||||
CREATE TABLE `goods_brand` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`brand_logo` varchar(1024) DEFAULT '' COMMENT '品牌logo',
|
||||
`brand_cover` varchar(1024) DEFAULT '' COMMENT '品牌封面',
|
||||
`brand_title` varchar(255) DEFAULT '' COMMENT '商品品牌名称',
|
||||
`brand_desc` text COMMENT '商品品牌描述',
|
||||
`brand_detail` text COMMENT '品牌图文信息',
|
||||
`sort` int(11) unsigned DEFAULT '0' COMMENT '商品分类排序',
|
||||
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '商品状态(1有效,0无效)',
|
||||
`is_deleted` tinyint(1) unsigned DEFAULT '0' COMMENT '删除状态(1删除,0未删除)',
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品产品品牌';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of goods_brand
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for goods_cate
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `goods_cate`;
|
||||
CREATE TABLE `goods_cate` (
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`pid` bigint(20) unsigned DEFAULT '0' COMMENT '上级分类编号',
|
||||
`brand_id` bigint(20) DEFAULT '0' COMMENT '品牌ID',
|
||||
`cate_title` varchar(255) DEFAULT '' COMMENT '商品分类名称',
|
||||
`cate_desc` text COMMENT '商品分类',
|
||||
`sort` bigint(20) unsigned DEFAULT '0' COMMENT '商品分类排序',
|
||||
`status` bigint(1) unsigned DEFAULT '1' COMMENT '商品状态(1有效,0无效)',
|
||||
`is_deleted` bigint(1) unsigned DEFAULT '0' COMMENT '删除状态(1删除,0未删除)',
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商城商品分类';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of goods_cate
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for goods_list
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `goods_list`;
|
||||
CREATE TABLE `goods_list` (
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`goods_id` bigint(20) unsigned DEFAULT '0' COMMENT '商品ID',
|
||||
`goods_spec` varchar(255) DEFAULT '' COMMENT '商品规格名称',
|
||||
`goods_number` bigint(20) unsigned DEFAULT '0' COMMENT '商品礼品-商品数量',
|
||||
`market_price` decimal(20,2) unsigned DEFAULT '0.00' COMMENT '销售价格',
|
||||
`selling_price` decimal(20,2) unsigned DEFAULT '0.00' COMMENT '商品价格',
|
||||
`goods_stock` bigint(20) unsigned DEFAULT '0' COMMENT '商品库存统计',
|
||||
`goods_sale` bigint(20) unsigned DEFAULT '0' COMMENT '已销售数量',
|
||||
`status` bigint(1) unsigned DEFAULT '1' COMMENT '商品状态(1有效,0无效)',
|
||||
`is_deleted` bigint(1) unsigned DEFAULT '0' COMMENT '删除状态(1删除,0未删除)',
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商城商品列表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of goods_list
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for goods_spec
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `goods_spec`;
|
||||
CREATE TABLE `goods_spec` (
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`mch_id` bigint(20) unsigned DEFAULT '0' COMMENT '商户ID',
|
||||
`spec_title` varchar(255) DEFAULT '' COMMENT '商品规格名称',
|
||||
`spec_param` varchar(255) DEFAULT '' COMMENT '商品规格参数',
|
||||
`spec_desc` varchar(255) DEFAULT '' COMMENT '商品规格描述',
|
||||
`sort` bigint(20) unsigned DEFAULT '0' COMMENT '商品规格排序',
|
||||
`status` bigint(1) unsigned DEFAULT '1' COMMENT '商品状态(1有效,0无效)',
|
||||
`is_deleted` bigint(1) unsigned DEFAULT '0' COMMENT '删除状态(1删除,0未删除)',
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `index_store_goods_spec_mch_id` (`mch_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商城商品规格';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of goods_spec
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for system_auth
|
||||
-- ----------------------------
|
||||
@ -63,7 +183,7 @@ CREATE TABLE `system_config` (
|
||||
`value` varchar(500) DEFAULT NULL COMMENT '配置值',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `index_system_config_name` (`name`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统参数配置';
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统参数配置';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of system_config
|
||||
@ -86,6 +206,15 @@ INSERT INTO `system_config` VALUES ('15', 'storage_oss_endpoint', 'oss-cn-beijin
|
||||
INSERT INTO `system_config` VALUES ('16', 'storage_oss_domain', 'cuci.oss-cn-beijing.aliyuncs.com');
|
||||
INSERT INTO `system_config` VALUES ('17', 'storage_oss_keyid', '用你自己的吧');
|
||||
INSERT INTO `system_config` VALUES ('18', 'storage_oss_secret', '用你自己的吧');
|
||||
INSERT INTO `system_config` VALUES ('34', 'wechat_appid', 'wx60a43dd8161666d4');
|
||||
INSERT INTO `system_config` VALUES ('35', 'wechat_appkey', '9890a0d7c91801a609d151099e95b61a');
|
||||
INSERT INTO `system_config` VALUES ('36', 'storage_oss_is_https', 'http');
|
||||
INSERT INTO `system_config` VALUES ('37', 'wechat_type', 'api');
|
||||
INSERT INTO `system_config` VALUES ('38', 'wechat_token', 'test');
|
||||
INSERT INTO `system_config` VALUES ('39', 'wechat_appsecret', 'a041bec98ed015d52b99acea5c6a16ef');
|
||||
INSERT INTO `system_config` VALUES ('40', 'wechat_encodingaeskey', 'BJIUzE0gqlWy0GxfPp4J1oPTBmOrNDIGPNav1YFH5Z5');
|
||||
INSERT INTO `system_config` VALUES ('41', 'wechat_thr_appid', 'wx60a43dd8161666d4');
|
||||
INSERT INTO `system_config` VALUES ('42', 'wechat_thr_appkey', '05db2aa335382c66ab56d69b1a9ad0ee');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for system_log
|
||||
@ -100,13 +229,11 @@ CREATE TABLE `system_log` (
|
||||
`content` text NOT NULL COMMENT '操作内容描述',
|
||||
`create_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='系统操作日志表';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统操作日志表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of system_log
|
||||
-- ----------------------------
|
||||
INSERT INTO `system_log` VALUES ('1', '113.106.73.138', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-13 15:42:15');
|
||||
INSERT INTO `system_log` VALUES ('2', '115.229.46.40', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-13 15:43:48');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for system_menu
|
||||
@ -127,7 +254,7 @@ CREATE TABLE `system_menu` (
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `index_system_menu_node` (`node`) USING BTREE
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COMMENT='系统菜单表';
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COMMENT='系统菜单表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of system_menu
|
||||
@ -172,7 +299,7 @@ CREATE TABLE `system_node` (
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `index_system_node_node` (`node`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=322 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统节点表';
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=230 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统节点表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of system_node
|
||||
@ -188,7 +315,6 @@ INSERT INTO `system_node` VALUES ('8', 'admin/auth/resume', '启用权限', '0',
|
||||
INSERT INTO `system_node` VALUES ('9', 'admin/auth/del', '删除权限', '0', '1', '1', '2018-01-23 12:39:25');
|
||||
INSERT INTO `system_node` VALUES ('10', 'admin/config/index', '系统参数', '1', '1', '1', '2018-01-23 12:39:25');
|
||||
INSERT INTO `system_node` VALUES ('11', 'admin/config/file', '文件存储', '0', '1', '1', '2018-01-23 12:39:26');
|
||||
INSERT INTO `system_node` VALUES ('12', 'admin/config/sms', '短信接口', '0', '1', '1', '2018-01-23 12:39:28');
|
||||
INSERT INTO `system_node` VALUES ('13', 'admin/log/index', '日志记录', '1', '1', '1', '2018-01-23 12:39:28');
|
||||
INSERT INTO `system_node` VALUES ('14', 'admin/log/sms', '短信记录', '0', '1', '1', '2018-01-23 12:39:29');
|
||||
INSERT INTO `system_node` VALUES ('15', 'admin/log/del', '日志删除', '0', '1', '1', '2018-01-23 12:39:29');
|
||||
@ -300,7 +426,7 @@ CREATE TABLE `system_user` (
|
||||
-- ----------------------------
|
||||
-- Records of system_user
|
||||
-- ----------------------------
|
||||
INSERT INTO `system_user` VALUES ('10000', 'admin', '21232f297a57a5a743894a0e4a801fc3', '', '', '', '', '22409', '2018-03-13 15:43:48', '1', '1', '0', null, '2015-11-13 15:14:22');
|
||||
INSERT INTO `system_user` VALUES ('10000', 'admin', '21232f297a57a5a743894a0e4a801fc3', '22222222', '', '18993368867', '', '23296', '2018-03-23 17:05:40', '1', '2,4', '0', null, '2015-11-13 15:14:22');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for wechat_fans
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-box modal-form-box" action="{:request()->url()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">权限名称</label>
|
||||
|
@ -2,41 +2,6 @@
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<ul class="block-list">
|
||||
<li style="background-color:#009688;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1','is_black'=>'0'])->count()}</p>
|
||||
</li>
|
||||
<li style="background-color:#5FB878;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1'])->count()}</p>
|
||||
</li>
|
||||
<li style="background-color:#393D49;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1'])->count()}</p>
|
||||
</li>
|
||||
<li style="background-color:#1E9FFF;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1'])->count()}</p>
|
||||
</li>
|
||||
<li style="background-color:#FFB800;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1'])->count()}</p>
|
||||
</li>
|
||||
<li style="background-color:#FF5722;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1'])->count()}</p>
|
||||
</li>
|
||||
<li style="background-color:#01AAED;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1'])->count()}</p>
|
||||
</li>
|
||||
<li style="background-color:#2F4056;">
|
||||
<p class="title">微信粉丝统计</p>
|
||||
<p class="font-s18">{:db('WechatFans')->cache(true,60)->where(['subscribe'=>'1'])->count()}</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<table class="layui-table" lay-even lay-skin="line">
|
||||
<colgroup>
|
||||
<col width="20%">
|
||||
@ -68,7 +33,7 @@
|
||||
<td class="nowrap">{:php_uname('s')}</td>
|
||||
<td class="nowrap">产品DEMO体验</td>
|
||||
<td class="nowrap">
|
||||
<a target="_blank" href="http://service.thinkadmin.top">http://service.thinkadmin.top</a>
|
||||
<a target="_blank" href="http://demo.thinkadmin.top">http://demo.thinkadmin.top</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -115,31 +80,4 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{/block}
|
||||
|
||||
{block name='style'}
|
||||
<style>
|
||||
.block-list {
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
.block-list li {
|
||||
color: #fff;
|
||||
width: 180px;
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
margin-right: 20px;
|
||||
padding: 20px 10px;
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
margin-bottom: 20px;
|
||||
letter-spacing: 1px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.block-list .title {
|
||||
font-weight: 700;
|
||||
}
|
||||
</style>
|
||||
{/block}
|
@ -60,6 +60,9 @@
|
||||
<!-- 表单搜索 结束 -->
|
||||
|
||||
<form onsubmit="return false;" data-auto="true" method="post">
|
||||
<!--{empty name='list'}-->
|
||||
<p class="help-block text-center well">没 有 记 录 哦!</p>
|
||||
<!--{else}-->
|
||||
<input type="hidden" value="resort" name="action">
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<thead>
|
||||
@ -92,5 +95,6 @@
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page|raw}</p>{/if}
|
||||
<!--{/empty}-->
|
||||
</form>
|
||||
{/block}
|
@ -38,16 +38,14 @@
|
||||
<ul>
|
||||
<li class="username">
|
||||
<i></i>
|
||||
<input required pattern="^\S{4,}$" name="username" type="text" autofocus="autofocus" autocomplete="off" title="请输入4位及以上的字符" placeholder="请输入用户名/手机号码">
|
||||
<input required pattern="^\S{4,}$" name="username" value="admin" type="text" autofocus="autofocus" autocomplete="off" title="请输入4位及以上的字符" placeholder="请输入用户名/手机号码">
|
||||
</li>
|
||||
<li class="password">
|
||||
<i></i>
|
||||
<input required pattern="^\S{4,}$" name="password" type="password" autocomplete="off" title="请输入4位及以上的字符" placeholder="请输入密码">
|
||||
<input required pattern="^\S{4,}$" name="password" value="admin" type="password" autocomplete="off" title="请输入4位及以上的字符" placeholder="请输入密码">
|
||||
</li>
|
||||
<li class="text-center">
|
||||
<button type="submit" class="layui-btn layui-disabled" data-form-loaded="立 即 登 入">正 在 载 入</button>
|
||||
<!--<a href="{:url('@admin/register')}">注册账号</a>-->
|
||||
<!--<a class="forget" href="{:url('@admin/login/forget')}">忘记密码?</a>-->
|
||||
</li>
|
||||
</ul>
|
||||
</form>
|
||||
@ -55,15 +53,12 @@
|
||||
<!-- 页面表单主体 结束 -->
|
||||
|
||||
<!-- 底部版权信息 开始 -->
|
||||
{if sysconf('site_copy')}
|
||||
<!--{if sysconf('site_copy')}-->
|
||||
<div class="footer notselect">
|
||||
{:sysconf('site_copy')}
|
||||
{if sysconf('miitbeian')}
|
||||
<span>|</span>
|
||||
<a target="_blank" href="http://www.miitbeian.gov.cn">{:sysconf('miitbeian')}</a>
|
||||
{/if}
|
||||
{if sysconf('miitbeian')} <span>|</span> <a target="_blank" href="http://www.miitbeian.gov.cn">{:sysconf('miitbeian')}</a>{/if}
|
||||
</div>
|
||||
{/if}
|
||||
<!--{/if}-->
|
||||
<!-- 底部版本信息 结束 -->
|
||||
|
||||
</div>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-box modal-form-box" action="{:request()->url()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">上级菜单</label>
|
||||
|
@ -43,7 +43,7 @@
|
||||
<td class='text-center'>
|
||||
<i class="{$vo.icon} font-s18"></i>
|
||||
</td>
|
||||
<td class="nowrap"><span style="color:#ccc">{$vo.spl|raw}</span>{$vo.title}</td>
|
||||
<td class="nowrap"><span class="color-desc">{$vo.spl|raw}</span>{$vo.title}</td>
|
||||
<td class='visible-lg'>{$vo.url}</td>
|
||||
<td class='text-center nowrap'>
|
||||
{if $vo.status eq 0}<span>已禁用</span>{elseif $vo.status eq 1}<span class="color-green">使用中</span>{/if}
|
||||
@ -53,7 +53,7 @@
|
||||
{if auth("$classuri/add")}
|
||||
<span class="text-explode">|</span>
|
||||
<!--{if $vo.spt<2}-->
|
||||
<a data-modal='{:url("$classuri/add")}?pid={$vo.id}'>添加下级</a>
|
||||
<a data-title="添加菜单" data-modal='{:url("$classuri/add")}?pid={$vo.id}'>添加下级</a>
|
||||
<!--{else}-->
|
||||
<a class="color-desc">添加下级</a>
|
||||
<!--{/if}-->
|
||||
@ -61,7 +61,7 @@
|
||||
|
||||
{if auth("$classuri/edit")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-modal='{:url("$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
<a data-title="编辑菜单" data-modal='{:url("$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
{/if}
|
||||
|
||||
{if $vo.status eq 1 and auth("$classuri/forbid")}
|
||||
|
@ -28,7 +28,7 @@
|
||||
<!--{foreach $nodes as $key=>$vo}-->
|
||||
<tr>
|
||||
<td class='text-left nowrap'>
|
||||
<span style="color:#ccc">{$vo.spl|raw}</span> {$vo.node}
|
||||
<span class="color-desc">{$vo.spl|raw}</span> {$vo.node}
|
||||
{if auth("$classuri/save")} <input class='layui-input layui-input-inline title-input' name='title' data-node="{$vo.node}" value="{$vo.title}">{/if}
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
@ -46,36 +46,36 @@
|
||||
</label>
|
||||
{/if}
|
||||
{if auth("$classuri/save") and $vo.spt eq 2}
|
||||
<span style="color:#ccc"> ├─ </span>
|
||||
<span class="color-desc"> ├─ </span>
|
||||
<label class="notselect margin-right-15">
|
||||
{notempty name='vo.is_login'}
|
||||
<!--{notempty name='vo.is_login'}-->
|
||||
<input data-login-filter="{$vo.pnode}" checked='checked' class="check-box login_{$key}" type='checkbox' value='1' name='is_login' data-node="{$vo.node}" onclick="!this.checked && ($('.auth_{$key}')[0].checked = !!this.checked)">
|
||||
{else}
|
||||
<!--{else}-->
|
||||
<input data-login-filter="{$vo.pnode}" class="check-box login_{$key}" type='checkbox' value='1' name='is_login' data-node="{$vo.node}" onclick="!this.checked && ($('.auth_{$key}')[0].checked = !!this.checked)">
|
||||
{/notempty}
|
||||
<!--{/notempty}-->
|
||||
加入登录控制
|
||||
</label>
|
||||
<span style="color:#ccc"> ├─ </span>
|
||||
<span class="color-desc"> ├─ </span>
|
||||
<label class="notselect margin-right-15">
|
||||
{notempty name='vo.is_auth'}
|
||||
<!--{notempty name='vo.is_auth'}-->
|
||||
<input data-auth-filter="{$vo.pnode}" name='is_auth' data-node="{$vo.node}" checked='checked' class="check-box auth_{$key}" type='checkbox' onclick="this.checked && ($('.login_{$key}')[0].checked = !!this.checked)" value='1'>
|
||||
{else}
|
||||
<!--{else}-->
|
||||
<input data-auth-filter="{$vo.pnode}" name='is_auth' data-node="{$vo.node}" class="check-box auth_{$key}" type='checkbox' value='1' onclick="this.checked && ($('.login_{$key}')[0].checked = !!this.checked)">
|
||||
{/notempty}
|
||||
<!--{/notempty}-->
|
||||
加入权限控制
|
||||
</label>
|
||||
<span style="color:#ccc"> ├─ </span>
|
||||
<span class="color-desc"> ├─ </span>
|
||||
<label class="notselect">
|
||||
{notempty name='vo.is_menu'}
|
||||
<!--{notempty name='vo.is_menu'}-->
|
||||
<input data-menu-filter="{$vo.pnode}" name='is_menu' data-node="{$vo.node}" checked='checked' class='check-box menu_{$key}' type='checkbox' value='1'>
|
||||
{else}
|
||||
<!--{else}-->
|
||||
<input data-menu-filter="{$vo.pnode}" name='is_menu' data-node="{$vo.node}" class='check-box menu_{$key}' type='checkbox' value='1'>
|
||||
{/notempty}
|
||||
<!--{/notempty}-->
|
||||
加入菜单节点选择器
|
||||
</label>
|
||||
{/if}
|
||||
</td>
|
||||
<td style="width:100%" data-tips-filter="{$vo.pnode}" class="loading-tips nowrap"></td>
|
||||
<td data-tips-filter="{$vo.pnode}" class="loading-tips nowrap full-width"></td>
|
||||
</tr>
|
||||
<!--{/foreach}-->
|
||||
<!--{/empty}-->
|
||||
|
@ -47,35 +47,34 @@
|
||||
top.$('[name="{$field}"]').map(function () {
|
||||
top.$(this).attr('data-srcs', ret.url).attr('data-md5', file.md5).val(url).trigger('change');
|
||||
});
|
||||
var index = top.layer.getFrameIndex(window.name);
|
||||
top.layer.close(index);
|
||||
/*{/if} {$mode}*/
|
||||
top.layer.close(top.layer.getFrameIndex(window.name));
|
||||
/*{/if}*/
|
||||
}
|
||||
|
||||
function confirmSelected() {
|
||||
var srcs = new Array(), md5s = new Array();
|
||||
$('[data-md5] .success').map(function () {
|
||||
var $li = $(this).parents('[data-md5]');
|
||||
md5s.push($li.attr('data-md5'));
|
||||
srcs.push($li.attr('data-src'));
|
||||
});
|
||||
if (srcs.length < 1) {
|
||||
return top.$.msg.tips('还没有选择文件,请勾选需要使用的文件!');
|
||||
}
|
||||
top.$('[name="{$field}"]').map(function () {
|
||||
top.$(this).attr('data-srcs', srcs.join('|')).attr('data-md5', md5s.join('|')).val(srcs.join('|')).trigger('change');
|
||||
});
|
||||
var index = top.layer.getFrameIndex(window.name);
|
||||
top.layer.close(index);
|
||||
}
|
||||
var isSuccessState = false;
|
||||
|
||||
function completed() {
|
||||
var btnHTML = '完成上传';
|
||||
$('.uploadBtn').on('click', function () {
|
||||
if (this.innerHTML === btnHTML) {
|
||||
confirmSelected.call(this);
|
||||
$('.uploadBtn').html(btnHTML).on('click', successSelected);
|
||||
|
||||
function successSelected() {
|
||||
if (!isSuccessState && this.innerHTML === btnHTML) {
|
||||
isSuccessState = true;
|
||||
var srcs = [], md5s = [];
|
||||
$('[data-md5] .success').map(function () {
|
||||
var $li = $(this).parents('[data-md5]');
|
||||
md5s.push($li.attr('data-md5'));
|
||||
srcs.push($li.attr('data-src'));
|
||||
});
|
||||
if (srcs.length < 1) {
|
||||
return top.$.msg.tips('还没有选择文件,请勾选需要使用的文件!');
|
||||
}
|
||||
top.$('[name="{$field}"]').map(function () {
|
||||
top.$(this).attr('data-srcs', srcs.join('|')).attr('data-md5', md5s.join('|')).val(srcs.join('|')).trigger('change');
|
||||
});
|
||||
top.layer.close(top.layer.getFrameIndex(window.name));
|
||||
}
|
||||
}).html(btnHTML);
|
||||
}
|
||||
}
|
||||
|
||||
// 当domReady的时候开始初始化
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-box modal-form-box" action="{:request()->url()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">用户账号</label>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-box modal-form-box" action="{:request()->url()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">用户账号</label>
|
||||
|
@ -45,7 +45,7 @@
|
||||
<div class="layui-form-item layui-inline">
|
||||
<button class="layui-btn layui-btn-primary"><i class="layui-icon"></i> 搜 索</button>
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
<script>
|
||||
window.laydate.render({range: true, elem: '#range-date'});
|
||||
@ -100,17 +100,17 @@
|
||||
|
||||
{if auth("$classuri/edit")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-modal='{:url("$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
<a data-title="编辑用户" data-modal='{:url("$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
{/if}
|
||||
|
||||
{if auth("$classuri/auth")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-modal='{:url("$classuri/auth")}?id={$vo.id}'>授权</a>
|
||||
<a data-title="用户授权" data-modal='{:url("$classuri/auth")}?id={$vo.id}'>授权</a>
|
||||
{/if}
|
||||
|
||||
{if auth("$classuri/pass")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-modal='{:url("$classuri/pass")}?id={$vo.id}'>密码</a>
|
||||
<a data-title="设置密码" data-modal='{:url("$classuri/pass")}?id={$vo.id}'>密码</a>
|
||||
{/if}
|
||||
|
||||
{if $vo.status eq 1 and auth("$classuri/forbid")}
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-box modal-form-box" action="{:request()->url()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">用户账号</label>
|
||||
|
151
application/goods/controller/Brand.php
Normal file
151
application/goods/controller/Brand.php
Normal file
@ -0,0 +1,151 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\goods\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use service\DataService;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 商店品牌管理
|
||||
* Class Brand
|
||||
* @package app\store\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Brand extends BasicAdmin
|
||||
{
|
||||
|
||||
/**
|
||||
* 定义当前操作表名
|
||||
* @var string
|
||||
*/
|
||||
public $table = 'GoodsBrand';
|
||||
|
||||
/**
|
||||
* 品牌列表
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '品牌管理';
|
||||
$get = $this->request->get();
|
||||
$db = Db::name($this->table)->where(['is_deleted' => '0']);
|
||||
if (isset($get['brand_title']) && $get['brand_title'] !== '') {
|
||||
$db->whereLike('brand_title', "%{$get['brand_title']}%");
|
||||
}
|
||||
if (isset($get['create_at']) && $get['create_at'] !== '') {
|
||||
list($start, $end) = explode(' - ', $get['create_at']);
|
||||
$db->whereBetween('create_at', ["{$start} 00:00:00", "{$end} 23:59:59"]);
|
||||
}
|
||||
return parent::_list($db->order('sort asc,id desc'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加品牌
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\Exception
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->title = '添加品牌';
|
||||
return $this->_form($this->table, 'form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑品牌
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\Exception
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->title = '编辑品牌';
|
||||
return $this->_form($this->table, 'form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单提交数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _form_filter($data)
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
empty($data['brand_logo']) && $this->error('请上传品牌Logo图片');
|
||||
empty($data['brand_cover']) && $this->error('请上传品牌封面图片');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加成功回跳处理
|
||||
* @param bool $result
|
||||
*/
|
||||
protected function _form_result($result)
|
||||
{
|
||||
if ($result !== false) {
|
||||
list($base, $spm, $url) = [url('@admin'), $this->request->get('spm'), url('goods/brand/index')];
|
||||
$this->success('数据保存成功!', "{$base}#{$url}?spm={$spm}");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除品牌
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function del()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("品牌删除成功!", '');
|
||||
}
|
||||
$this->error("品牌删除失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 品牌禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function forbid()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("品牌禁用成功!", '');
|
||||
}
|
||||
$this->error("品牌禁用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 品牌签禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function resume()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("品牌启用成功!", '');
|
||||
}
|
||||
$this->error("品牌启用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
}
|
157
application/goods/controller/Cate.php
Normal file
157
application/goods/controller/Cate.php
Normal file
@ -0,0 +1,157 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\goods\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use service\DataService;
|
||||
use service\ToolsService;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 商店产品分类管理
|
||||
* Class Cate
|
||||
* @package app\store\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Cate extends BasicAdmin
|
||||
{
|
||||
|
||||
/**
|
||||
* 定义当前操作表名
|
||||
* @var string
|
||||
*/
|
||||
public $table = 'GoodsCate';
|
||||
|
||||
/**
|
||||
* 产品分类列表
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '产品分类';
|
||||
$db = Db::name($this->table)->where(['is_deleted' => '0']);
|
||||
return parent::_list($db->order('sort asc,id asc'), false);
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _index_data_filter(&$data)
|
||||
{
|
||||
foreach ($data as &$vo) {
|
||||
$vo['ids'] = join(',', ToolsService::getArrSubIds($data, $vo['id']));
|
||||
}
|
||||
$data = ToolsService::arr2table($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加菜单
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
return $this->_form($this->table, 'form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑菜单
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
return $this->_form($this->table, 'form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据前缀方法
|
||||
* @param array $vo
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
protected function _form_filter(&$vo)
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
// 读取上级分类
|
||||
$where = ['status' => '1', 'is_deleted' => '0'];
|
||||
$_cates = (array)Db::name($this->table)->where($where)->order('sort desc,id desc')->select();
|
||||
array_unshift($_cates, ['id' => 0, 'pid' => -1, 'cate_title' => '--- 顶级分类 ---']);
|
||||
$cates = ToolsService::arr2table($_cates);
|
||||
foreach ($cates as $key => &$cate) {
|
||||
if (isset($vo['pid'])) {
|
||||
$path = "-{$vo['pid']}-{$vo['id']}";
|
||||
if ($vo['pid'] !== '' && (stripos("{$cate['path']}-", "{$path}-") !== false || $cate['path'] === $path)) {
|
||||
unset($cates[$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
$this->assign('cates', $cates);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除产品分类
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function del()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品分类删除成功!", '');
|
||||
}
|
||||
$this->error("产品分类删除失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 产品分类禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function forbid()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品分类禁用成功!", '');
|
||||
}
|
||||
$this->error("产品分类禁用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 产品分类禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function resume()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品分类启用成功!", '');
|
||||
}
|
||||
$this->error("产品分类启用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
}
|
262
application/goods/controller/Product.php
Normal file
262
application/goods/controller/Product.php
Normal file
@ -0,0 +1,262 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\goods\controller;
|
||||
|
||||
use app\goods\service\ProductService;
|
||||
use controller\BasicAdmin;
|
||||
use service\DataService;
|
||||
use service\ToolsService;
|
||||
use think\Db;
|
||||
use think\exception\HttpResponseException;
|
||||
|
||||
/**
|
||||
* 商店产品管理
|
||||
* Class Goods
|
||||
* @package app\store\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Product extends BasicAdmin
|
||||
{
|
||||
|
||||
/**
|
||||
* 定义当前操作表名
|
||||
* @var string
|
||||
*/
|
||||
public $table = 'Goods';
|
||||
|
||||
/**
|
||||
* 普通产品
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '产品管理';
|
||||
$get = $this->request->get();
|
||||
$db = Db::name($this->table)->where(['is_deleted' => '0']);
|
||||
foreach (['tags_id', 'goods_title'] as $field) {
|
||||
(isset($get[$field]) && $get[$field] !== '') && $db->whereLike($field, "%,{$get[$field]},%");
|
||||
}
|
||||
foreach (['cate_id', 'brand_id'] as $field) {
|
||||
(isset($get[$field]) && $get[$field] !== '') && $db->where($field, $get[$field]);
|
||||
}
|
||||
if (isset($get['create_at']) && $get['create_at'] !== '') {
|
||||
list($start, $end) = explode(' - ', $get['create_at']);
|
||||
$db->whereBetween('create_at', ["{$start} 00:00:00", "{$end} 23:59:59"]);
|
||||
}
|
||||
return parent::_list($db->order('status desc,sort asc,id desc'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 商城数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _data_filter(&$data)
|
||||
{
|
||||
$result = ProductService::buildGoodsList($data);
|
||||
$this->assign([
|
||||
'brands' => $result['brand'],
|
||||
'cates' => ToolsService::arr2table($result['cate']),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加产品
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\Exception
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
if (!$this->request->isPost()) {
|
||||
$this->title = '添加产品';
|
||||
$this->_form_assign();
|
||||
return $this->_form($this->table, 'form');
|
||||
}
|
||||
try {
|
||||
$data = $this->_form_build_data();
|
||||
Db::transaction(function () use ($data) {
|
||||
$goodsID = Db::name($this->table)->insertGetId($data['main']);
|
||||
foreach ($data['list'] as &$vo) {
|
||||
$vo['goods_id'] = $goodsID;
|
||||
}
|
||||
Db::name('GoodsList')->insertAll($data['list']);
|
||||
});
|
||||
} catch (HttpResponseException $exception) {
|
||||
return $exception->getResponse();
|
||||
} catch (\Exception $e) {
|
||||
$this->error('产品添加失败,请稍候再试!');
|
||||
}
|
||||
list($base, $spm, $url) = [url('@admin'), $this->request->get('spm'), url('goods/product/index')];
|
||||
$this->success('添加产品成功!', "{$base}#{$url}?spm={$spm}");
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑产品
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
if (!$this->request->isPost()) {
|
||||
$goods_id = $this->request->get('id');
|
||||
$goods = Db::name($this->table)->where(['id' => $goods_id, 'is_deleted' => '0'])->find();
|
||||
empty($goods) && $this->error('需要编辑的产品不存在!');
|
||||
$goods['list'] = Db::name('GoodsList')->where(['goods_id' => $goods_id, 'is_deleted' => '0'])->select();
|
||||
$this->_form_assign();
|
||||
return $this->fetch('form', ['vo' => $goods, 'title' => '编辑产品']);
|
||||
}
|
||||
try {
|
||||
$data = $this->_form_build_data();
|
||||
$goods_id = $this->request->post('id');
|
||||
$goods = Db::name($this->table)->where(['id' => $goods_id, 'is_deleted' => '0'])->find();
|
||||
empty($goods) && $this->error('产品编辑失败,请稍候再试!');
|
||||
foreach ($data['list'] as &$vo) {
|
||||
$vo['goods_id'] = $goods_id;
|
||||
}
|
||||
Db::transaction(function () use ($data, $goods_id, $goods) {
|
||||
// 更新产品主表
|
||||
$where = ['id' => $goods_id, 'is_deleted' => '0'];
|
||||
Db::name('Goods')->where($where)->update(array_merge($goods, $data['main']));
|
||||
// 更新产品详细
|
||||
Db::name('GoodsList')->where(['goods_id' => $goods_id])->delete();
|
||||
Db::name('GoodsList')->insertAll($data['list']);
|
||||
});
|
||||
} catch (HttpResponseException $exception) {
|
||||
return $exception->getResponse();
|
||||
} catch (\Exception $e) {
|
||||
$this->error('产品编辑失败,请稍候再试!' . $e->getMessage());
|
||||
}
|
||||
list($base, $spm, $url) = [url('@admin'), $this->request->get('spm'), url('goods/product/index')];
|
||||
$this->success('产品编辑成功!', "{$base}#{$url}?spm={$spm}");
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
protected function _form_assign()
|
||||
{
|
||||
list($where, $order) = [['status' => '1', 'is_deleted' => '0'], 'sort asc,id desc'];
|
||||
$specs = (array)Db::name('GoodsSpec')->where($where)->order($order)->select();
|
||||
$brands = (array)Db::name('GoodsBrand')->where($where)->order($order)->select();
|
||||
$cates = (array)Db::name('GoodsCate')->where($where)->order($order)->select();
|
||||
// 所有的产品信息
|
||||
$where = ['is_deleted' => '0', 'status' => '1'];
|
||||
$goodsListField = 'goods_id,goods_spec,goods_stock,goods_sale';
|
||||
$goods = Db::name('Goods')->field('id,goods_title')->where($where)->select();
|
||||
$list = Db::name('GoodsList')->field($goodsListField)->where($where)->select();
|
||||
foreach ($goods as $k => $g) {
|
||||
$goods[$k]['list'] = [];
|
||||
foreach ($list as $v) {
|
||||
($g['id'] === $v['goods_id']) && $goods[$k]['list'][] = $v;
|
||||
}
|
||||
}
|
||||
array_unshift($specs, ['spec_title' => ' - 不使用规格模板 -', 'spec_param' => '[]', 'id' => '0']);
|
||||
$this->assign([
|
||||
'specs' => $specs,
|
||||
'cates' => ToolsService::arr2table($cates),
|
||||
'brands' => $brands,
|
||||
'all' => $goods,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取POST表单数据
|
||||
* @return array
|
||||
*/
|
||||
protected function _form_build_data()
|
||||
{
|
||||
list($main, $list, $post, $verify) = [[], [], $this->request->post(), false];
|
||||
empty($post['goods_logo']) && $this->error('产品LOGO不能为空,请上传后再提交数据!');
|
||||
// 产品主数据组装
|
||||
$main['cate_id'] = $this->request->post('cate_id', '0');
|
||||
$main['spec_id'] = $this->request->post('spec_id', '0');
|
||||
$main['brand_id'] = $this->request->post('brand_id', '0');
|
||||
$main['goods_logo'] = $this->request->post('goods_logo', '');
|
||||
$main['goods_title'] = $this->request->post('goods_title', '');
|
||||
$main['goods_video'] = $this->request->post('goods_video', '');
|
||||
$main['goods_image'] = $this->request->post('goods_image', '');
|
||||
$main['goods_desc'] = $this->request->post('goods_desc', '', null);
|
||||
$main['goods_content'] = $this->request->post('goods_content', '');
|
||||
$main['tags_id'] = ',' . join(',', isset($post['tags_id']) ? $post['tags_id'] : []) . ',';
|
||||
// 产品从数据组装
|
||||
if (!empty($post['goods_spec'])) {
|
||||
foreach ($post['goods_spec'] as $key => $value) {
|
||||
$goods = [];
|
||||
$goods['goods_spec'] = $value;
|
||||
$goods['market_price'] = $post['market_price'][$key];
|
||||
$goods['selling_price'] = $post['selling_price'][$key];
|
||||
$goods['status'] = intval(!empty($post['spec_status'][$key]));
|
||||
!empty($goods['status']) && $verify = true;
|
||||
$list[] = $goods;
|
||||
}
|
||||
} else {
|
||||
$this->error('没有产品规格或套餐信息哦!');
|
||||
}
|
||||
!$verify && $this->error('没有设置有效的产品规格!');
|
||||
return ['main' => $main, 'list' => $list];
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除产品
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function del()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品删除成功!", '');
|
||||
}
|
||||
$this->error("产品删除失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 产品禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function forbid()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品禁用成功!", '');
|
||||
}
|
||||
$this->error("产品禁用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 产品禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function resume()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品启用成功!", '');
|
||||
}
|
||||
$this->error("产品启用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
}
|
157
application/goods/controller/Spec.php
Normal file
157
application/goods/controller/Spec.php
Normal file
@ -0,0 +1,157 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\goods\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use service\DataService;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 商店规格管理
|
||||
* Class Spec
|
||||
* @package app\store\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Spec extends BasicAdmin
|
||||
{
|
||||
|
||||
/**
|
||||
* 定义当前操作表名
|
||||
* @var string
|
||||
*/
|
||||
public $table = 'GoodsSpec';
|
||||
|
||||
/**
|
||||
* 产品列表
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '规格管理(请勿随意修改或删除)';
|
||||
$get = $this->request->get();
|
||||
$db = Db::name($this->table)->where(['is_deleted' => '0']);
|
||||
if (isset($get['spec_title']) && $get['spec_title'] !== '') {
|
||||
$db->whereLike('spec_title', "%{$get['spec_title']}%");
|
||||
}
|
||||
if (isset($get['date']) && $get['date'] !== '') {
|
||||
list($start, $end) = explode(' - ', $get['date']);
|
||||
$db->whereBetween('create_at', ["{$start} 00:00:00", "{$end} 23:59:59"]);
|
||||
}
|
||||
return parent::_list($db->order('sort asc,id desc'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _index_data_filter(&$data)
|
||||
{
|
||||
foreach ($data as &$vo) {
|
||||
$vo['spec_param'] = json_decode($vo['spec_param'], true);
|
||||
$vo['spec_param'] = is_array($vo['spec_param']) ? $vo['spec_param'] : [];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加产品
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\Exception
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->title = '添加规格';
|
||||
return $this->_form($this->table, 'form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑产品
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\Exception
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->title = '编辑规格';
|
||||
return $this->_form($this->table, 'form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $vo
|
||||
*/
|
||||
protected function _form_filter(&$vo)
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
$param = json_decode($this->request->post('spec_param', '[]', null), true);
|
||||
foreach ($param as &$v) {
|
||||
$count = 1;
|
||||
while ($count) {
|
||||
$v['value'] = trim(str_replace([' ', '_', ',', ',', ';', ';'], ' ', $v['value'], $count));
|
||||
}
|
||||
}
|
||||
$vo['spec_param'] = json_encode($param, JSON_UNESCAPED_UNICODE);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除产品规格
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function del()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品规格删除成功!", '');
|
||||
}
|
||||
$this->error("产品规格删除失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 产品规格禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function forbid()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品规格禁用成功!", '');
|
||||
}
|
||||
$this->error("产品规格禁用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 产品规格禁用
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function resume()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("产品规格启用成功!", '');
|
||||
}
|
||||
$this->error("产品规格启用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
}
|
134
application/goods/service/ProductService.php
Normal file
134
application/goods/service/ProductService.php
Normal file
@ -0,0 +1,134 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\goods\service;
|
||||
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 产品数据服务支持
|
||||
* Class ProductService
|
||||
* @package app\goods\service
|
||||
*/
|
||||
class ProductService
|
||||
{
|
||||
|
||||
/**
|
||||
* 主产品表数据处理
|
||||
* @param array $goodsList
|
||||
* @return array
|
||||
*/
|
||||
public static function buildGoodsList(&$goodsList)
|
||||
{
|
||||
// 产品分类处理
|
||||
$cateField = 'id,pid,cate_title,cate_desc';
|
||||
$cateWhere = ['status' => '1', 'is_deleted' => '0'];
|
||||
$cateList = Db::name('GoodsCate')->where($cateWhere)->order('sort asc,id desc')->column($cateField);
|
||||
// 产品品牌处理
|
||||
$brandField = 'id,brand_logo,brand_cover,brand_title,brand_desc,brand_detail';
|
||||
$brandWhere = ['status' => '1', 'is_deleted' => '0'];
|
||||
$brandList = Db::name('GoodsBrand')->where($brandWhere)->order('sort asc,id desc')->column($brandField);
|
||||
// 无产品列表时
|
||||
if (empty($goodsList)) {
|
||||
return ['list' => $goodsList, 'cate' => $cateList, 'brand' => $brandList];
|
||||
}
|
||||
// 读取产品详情列表
|
||||
$specWhere = [['status', 'eq', '1'], ['is_deleted', 'eq', '0'], ['goods_id', 'in', array_column($goodsList, 'id')]];
|
||||
$specField = 'id,goods_id,goods_spec,goods_number,market_price,selling_price,goods_stock,goods_sale';
|
||||
$specList = Db::name('GoodsList')->where($specWhere)->column($specField);
|
||||
foreach ($specList as $key => $spec) {
|
||||
foreach ($goodsList as $goods) {
|
||||
if ($goods['id'] === $spec['goods_id']) {
|
||||
$specList[$key]['goods_title'] = $goods['goods_title'];
|
||||
}
|
||||
}
|
||||
if ($spec['goods_spec'] === 'default:default') {
|
||||
$specList[$key]['goods_spec_alias'] = '<span class="color-desc">默认规格</span>';
|
||||
} else {
|
||||
$specList[$key]['goods_spec_alias'] = str_replace([':', ','], [': ', ', '], $spec['goods_spec']);
|
||||
}
|
||||
}
|
||||
// 产品数据组装
|
||||
foreach ($goodsList as $key => $vo) {
|
||||
// 产品内容处理
|
||||
$goodsList[$key]['goods_content'] = htmlspecialchars_decode($vo['goods_content']);
|
||||
// 产品品牌处理
|
||||
$goodsList[$key]['brand'] = isset($brandList[$vo['brand_id']]) ? $brandList[$vo['brand_id']] : [];
|
||||
// 产品分类关联
|
||||
$goodsList[$key]['cate'] = [];
|
||||
if (isset($cateList[$vo['cate_id']])) {
|
||||
$goodsList[$key]['cate'][] = ($tcate = $cateList[$vo['cate_id']]);
|
||||
while (isset($tcate['pid']) && $tcate['pid'] > 0 && isset($cateList[$tcate['pid']])) {
|
||||
$goodsList[$key]['cate'][] = ($tcate = $cateList[$tcate['pid']]);
|
||||
}
|
||||
$goodsList[$key]['cate'] = array_reverse($goodsList[$key]['cate']);
|
||||
}
|
||||
// 产品详细列表关联
|
||||
$goodsList[$key]['spec'] = [];
|
||||
foreach ($specList as $spec) {
|
||||
if ($vo['id'] === $spec['goods_id']) {
|
||||
$goodsList[$key]['spec'][] = $spec;
|
||||
}
|
||||
}
|
||||
}
|
||||
return ['list' => $goodsList, 'cate' => $cateList, 'brand' => $brandList];
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步更新产品库存及售出(@todo 需要重新做库存统计)
|
||||
* @param int $goods_id 产品ID
|
||||
* @return array
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function syncGoodsStock($goods_id)
|
||||
{
|
||||
// 检查产品是否需要更新库存
|
||||
$map = ['id' => $goods_id, 'is_deleted' => '0'];
|
||||
if (!($goods = Db::name('Goods')->where($map)->find())) {
|
||||
return ['code' => 0, 'msg' => '指定产品信息无法同步库存!'];
|
||||
}
|
||||
// 统计入库信息
|
||||
$stockField = 'goods_id,goods_spec,ifnull(sum(goods_stock), 0) goods_stock';
|
||||
$stockWhere = ['status' => '1', 'is_deleted' => '0', 'goods_id' => $goods_id, 'mch_id' => $mch_id];
|
||||
$stockList = (array)Db::name('GoodsStock')->field($stockField)->where($stockWhere)->group('goods_id,goods_spec')->select();
|
||||
// 统计销售信息
|
||||
$saleField = 'goods_id,goods_spec,ifnull(sum(number), 0) goods_sale';
|
||||
$saleWhere = ['status' => '1', 'is_deleted' => '0', 'goods_id' => $goods_id, 'mch_id' => $mch_id];
|
||||
$saleList = (array)Db::name('StoreOrderList')->field($saleField)->where($saleWhere)->group('goods_id,goods_spec')->select();
|
||||
// 库存置零
|
||||
list($where, $total_stock, $total_sale) = [['goods_id' => $goods_id], 0, 0];
|
||||
Db::name('GoodsList')->where($where)->update(['goods_stock' => 0, 'goods_sale' => 0, 'mch_id' => $mch_id]);
|
||||
// 更新产品库存
|
||||
foreach ($stockList as $stock) {
|
||||
$total_stock += intval($stock['goods_stock']);
|
||||
$where = ['goods_id' => $goods_id, 'goods_spec' => $stock['goods_spec'], 'mch_id' => $mch_id];
|
||||
Db::name('GoodsList')->where($where)->update(['goods_stock' => $stock['goods_stock']]);
|
||||
}
|
||||
// 更新产品销量
|
||||
foreach ($saleList as $sale) {
|
||||
$total_sale += intval($sale['goods_sale']);
|
||||
$where = ['goods_id' => $goods_id, 'goods_spec' => $sale['goods_spec'], 'mch_id' => $mch_id];
|
||||
Db::name('GoodsList')->where($where)->update(['goods_sale' => $sale['goods_sale']]);
|
||||
}
|
||||
// 更新总库存及总销量
|
||||
$update = ['package_stock' => $total_stock, 'package_sale' => $total_sale, 'mch_id' => $mch_id];
|
||||
Db::name('Goods')->where(['id' => $goods_id])->update($update);
|
||||
return ['code' => 1, 'msg' => '同步产品库存成功!'];
|
||||
}
|
||||
|
||||
}
|
82
application/goods/view/brand/form.html
Normal file
82
application/goods/view/brand/form.html
Normal file
@ -0,0 +1,82 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="content"}
|
||||
<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" class='form-horizontal layui-form padding-top-20'>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">品牌名称</label>
|
||||
<div class='col-sm-8'>
|
||||
<input autofocus name="brand_title" value='{$vo.brand_title|default=""}' required="required" title="请输入品牌名称" placeholder="请输入品牌名称" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label label-required">品牌图片</label>
|
||||
<div class='col-sm-8'>
|
||||
<table class="layui-table background-item margin-none" lay-size="sm" lay-skin="nob">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>品牌LOGO</td>
|
||||
<td>品牌图片</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="text-top" style="width:100px">
|
||||
<input type="hidden" name="brand_logo" value="{$vo.brand_logo|default=''}">
|
||||
<script>$('[name=brand_logo]').uploadOneImage()</script>
|
||||
</td>
|
||||
<td class="text-top">
|
||||
<input type="hidden" name="brand_cover" value="{$vo.brand_cover|default=''}">
|
||||
<script>$('[name=brand_cover]').uploadOneImage()</script>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">品牌描述</label>
|
||||
<div class='col-sm-8'>
|
||||
<textarea placeholder="请输入品牌描述" title="请输入品牌描述" class="layui-textarea" name="brand_desc">{$vo.brand_desc|default=""}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">品牌内容</label>
|
||||
<div class='col-sm-8'>
|
||||
<textarea name="brand_detail">{$vo.brand_detail|default=''|raw}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="col-sm-7 col-sm-offset-2">
|
||||
<div class="layui-form-item text-center">
|
||||
{if !empty($vo.id)}<input type="hidden" name="id" value="{$vo.id}">{/if}
|
||||
<button class="layui-btn" type="submit">保存配置</button>
|
||||
<button class="layui-btn layui-btn-danger" type='button' onclick="window.history.back()">取消编辑</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>window.form.render();</script>
|
||||
|
||||
<script>
|
||||
/*! 实例富文本编辑器 */
|
||||
require(['ckeditor'], function () {
|
||||
window.createEditor('[name="brand_detail"]', {height: 500});
|
||||
});
|
||||
</script>
|
||||
<style>
|
||||
.background-item {
|
||||
padding: 15px;
|
||||
background: #efefef;
|
||||
}
|
||||
|
||||
.background-item thead tr {
|
||||
background: #e0e0e0
|
||||
}
|
||||
</style>
|
||||
</form>
|
||||
{/block}
|
108
application/goods/view/brand/index.html
Normal file
108
application/goods/view/brand/index.html
Normal file
@ -0,0 +1,108 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="button"}
|
||||
|
||||
<!--{if auth("$classuri/add")}-->
|
||||
<button data-open='{:url("$classuri/add")}' data-title="添加品牌" class='layui-btn layui-btn-sm'>添加品牌</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/del")}-->
|
||||
<button data-update="" data-field='delete' data-action='{:url("$classuri/del")}' class='layui-btn layui-btn-sm layui-btn-danger'>删除品牌</button>
|
||||
<!--{/if}-->
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<!-- 表单搜索 开始 -->
|
||||
<form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get">
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">品牌名称</label>
|
||||
<div class="layui-input-inline">
|
||||
<input name="brand_title" value="{$Think.get.brand_title}" placeholder="请输入品牌名称" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">添加时间</label>
|
||||
<div class="layui-input-inline">
|
||||
<input name="create_at" id="create_at" value="{$Think.get.create_at}" placeholder="请选择添加时间" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<button class="layui-btn layui-btn-primary"><i class="layui-icon"></i> 搜 索</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
window.laydate.render({range: true, elem: '#create_at'});
|
||||
window.form.render();
|
||||
</script>
|
||||
<!-- 表单搜索 结束 -->
|
||||
|
||||
<form onsubmit="return false;" data-auto="true" method="post">
|
||||
{if empty($list)}
|
||||
<p class="help-block text-center well">没 有 记 录 哦!</p>
|
||||
{else}
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='list-table-check-td'>
|
||||
<input data-auto-none="none" data-check-target='.list-check-box' type='checkbox'/>
|
||||
</th>
|
||||
<th class='list-table-sort-td'>
|
||||
<button type="submit" class="layui-btn layui-btn-normal layui-btn-xs">排 序</button>
|
||||
</th>
|
||||
<th class='text-left nowrap'>产品品牌</th>
|
||||
<th class='text-left nowrap'>添加时间</th>
|
||||
<th class='text-left nowrap'>品牌状态</th>
|
||||
<th class='text-left'></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach $list as $key=>$vo}
|
||||
<tr>
|
||||
<td class='list-table-check-td'>
|
||||
<input class="list-check-box" value='{$vo.id}' type='checkbox'/>
|
||||
</td>
|
||||
<td class='list-table-sort-td'>
|
||||
<input name="_{$vo.id}" value="{$vo.sort}" class="list-sort-input"/>
|
||||
</td>
|
||||
<td class='text-left nowrap'>{$vo.brand_title}</td>
|
||||
<td class='text-left nowrap'>{$vo.create_at|format_datetime}</td>
|
||||
<td class='text-left nowrap'>
|
||||
{if $vo.status eq 0}<span class="color-red">已禁用</span>{elseif $vo.status eq 1}<span class="color-green">使用中</span>{/if}
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
|
||||
{if auth("$classuri/edit")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-title="编辑品牌" data-open='{:url("$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
{/if}
|
||||
|
||||
{if $vo.status eq 1 and auth("$classuri/forbid")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='0' data-action='{:url("$classuri/forbid")}'>禁用</a>
|
||||
{elseif auth("$classuri/resume")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='1' data-action='{:url("$classuri/resume")}'>启用</a>
|
||||
{/if}
|
||||
|
||||
{if auth("$classuri/del")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("$classuri/del")}'>删除</a>
|
||||
{/if}
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page|raw}</p>{/if}
|
||||
{/if}
|
||||
</form>
|
||||
{/block}
|
39
application/goods/view/cate/form.html
Normal file
39
application/goods/view/cate/form.html
Normal file
@ -0,0 +1,39 @@
|
||||
<form class="layui-form layui-box modal-form-box" action="{:request()->url()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">产品主分类</label>
|
||||
<div class="layui-input-block">
|
||||
<select name='pid' class='layui-select full-width block'>
|
||||
<!--{foreach cates as $cate}-->
|
||||
<!--{eq name='cate.id' value='$vo.pid|default=0'}-->
|
||||
<option selected value='{$cate.id}'>{$cate.spl|raw}{$cate.cate_title|default=''}</option>
|
||||
<!--{else}-->
|
||||
<option value='{$cate.id}'>{$cate.spl|raw}{$cate.cate_title}</option>
|
||||
<!--{/eq}-->
|
||||
<!--{/foreach}-->
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">产品分类</label>
|
||||
<div class="layui-input-block">
|
||||
<input autofocus name="cate_title" value='{$vo.cate_title|default=""}' required title="请输入产品分类" placeholder="请输入产品分类" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">分类描述</label>
|
||||
<div class="layui-input-block">
|
||||
<textarea placeholder="请输入分类描述" title="请输入分类描述" class="layui-textarea" name="cate_desc">{$vo.cate_desc|default=""}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="layui-form-item text-center">
|
||||
{if isset($vo['id'])}<input type='hidden' value='{$vo.id}' name='id'/>{/if}
|
||||
<button class="layui-btn" type='submit'>保存数据</button>
|
||||
<button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>
|
||||
</div>
|
||||
</form>
|
83
application/goods/view/cate/index.html
Normal file
83
application/goods/view/cate/index.html
Normal file
@ -0,0 +1,83 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="button"}
|
||||
<!--{if auth("$classuri/add")}-->
|
||||
<button data-modal='{:url("@$classuri/add")}' data-title="添加分类" class='layui-btn layui-btn-sm'>添加分类</button>
|
||||
<!--{/if}-->
|
||||
<!--{if auth("$classuri/del")}-->
|
||||
<button data-update="" data-field='delete' data-action='{:url("@$classuri/del")}' class='layui-btn layui-btn-sm layui-btn-danger'>删除分类</button>
|
||||
<!--{/if}-->
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
<form onsubmit="return false;" data-auto="true" method="post">
|
||||
<!--{if empty($list)}-->
|
||||
<p class="help-block text-center well">没 有 记 录 哦!</p>
|
||||
<!--{else}-->
|
||||
<input type="hidden" value="resort" name="action">
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='list-table-check-td'>
|
||||
<input data-auto-none="none" data-check-target='.list-check-box' type='checkbox'>
|
||||
</th>
|
||||
<th class='list-table-sort-td'>
|
||||
<button type="submit" class="layui-btn layui-btn-normal layui-btn-xs">排 序</button>
|
||||
</th>
|
||||
<th class='text-left nowrap'>产品分类</th>
|
||||
<th class='text-left nowrap'>分类描述</th>
|
||||
<th class='text-left nowrap'>添加时间</th>
|
||||
<th class='text-center nowrap'>分类状态</th>
|
||||
<th class='text-center'></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach $list as $key=>$vo}
|
||||
<tr>
|
||||
<td class='list-table-check-td'>
|
||||
<input class="list-check-box" value='{$vo.ids}' type='checkbox'>
|
||||
</td>
|
||||
<td class='list-table-sort-td'>
|
||||
<input name="_{$vo.id}" value="{$vo.sort}" class="list-sort-input">
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
<span class="color-desc">{$vo.spl|raw}</span> {$vo.cate_title}
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
{$vo.cate_desc|default='<span class="color-desc">未设置分类描述</span>'|raw}
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
{$vo.create_at|format_datetime}
|
||||
</td>
|
||||
<td class='text-center nowrap'>
|
||||
{if $vo.status eq 0}<span>已禁用</span>{elseif $vo.status eq 1}<span class="color-green">使用中</span>{/if}
|
||||
</td>
|
||||
<td class='text-center nowrap'>
|
||||
|
||||
{if auth("$classuri/edit")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-title="编辑分类" data-modal='{:url("@$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
{/if}
|
||||
|
||||
{if $vo.status eq 1 and auth("$classuri/forbid")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.ids}" data-field='status' data-value='0' data-action='{:url("$classuri/forbid")}'>禁用</a>
|
||||
{elseif auth("$classuri/resume")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.ids}" data-field='status' data-value='1' data-action='{:url("$classuri/resume")}'>启用</a>
|
||||
{/if}
|
||||
|
||||
{if auth("$classuri/del")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.ids}" data-field='delete' data-action='{:url("$classuri/del")}'>删除</a>
|
||||
{/if}
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page|raw}</p>{/if}
|
||||
<!--{/if}-->
|
||||
</form>
|
||||
{/block}
|
357
application/goods/view/product/form.html
Normal file
357
application/goods/view/product/form.html
Normal file
@ -0,0 +1,357 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="content"}
|
||||
<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" id="ProductForm" class='form-horizontal layui-form padding-top-20'>
|
||||
|
||||
<!--{if !empty($brands)}-->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">产品品牌</label>
|
||||
<div class='col-sm-8'>
|
||||
<select required class="layui-select full-width" name="brand_id">
|
||||
{foreach $brands as $brand}
|
||||
<!--{eq name='$brand.id' value='$vo.brand_id|default=0'}-->
|
||||
<option selected="selected" value="{$brand.id}">{$brand.brand_title}</option>
|
||||
<!--{elseif empty($vo.brand_id)}-->
|
||||
<option value="{$brand.id}">{$brand.brand_title}</option>
|
||||
<!--{/eq}-->
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if !empty($cates)}-->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">产品分类</label>
|
||||
<div class='col-sm-8 text-top'>
|
||||
<select required class="layui-select full-width" name="cate_id">
|
||||
{foreach $cates as $cate}
|
||||
<!--{if isset($vo.cate_id) and $cate.id eq $vo.cate_id}-->
|
||||
<option selected value="{$cate.id}">{$cate.spl|raw}{$cate.cate_title}</option>
|
||||
<!--{else}-->
|
||||
<option value="{$cate.id}">{$cate.spl|raw}{$cate.cate_title}</option>
|
||||
<!--{/if}-->
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<!--{/if}-->
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">产品名称</label>
|
||||
<div class='col-sm-8'>
|
||||
<input name="goods_title" required value="{$vo.goods_title|default=''}" class="layui-input" title="请输入产品名称" placeholder="请输入产品名称">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{if !empty($tags)}
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">产品标签</label>
|
||||
<div class='col-sm-8'>
|
||||
<div class="background-item">
|
||||
{foreach $tags as $tag}
|
||||
<label class="nowrap margin-right-10 line-height-18">
|
||||
<!--{if isset($vo.tags_id) && in_array($tag.id,$vo.tags_id)}-->
|
||||
<input type="checkbox" value="{$tag.id}" name="tags_id[]" checked="checked" lay-ignore>
|
||||
<!--{else}-->
|
||||
<input type="checkbox" value="{$tag.id}" name="tags_id[]" lay-ignore>
|
||||
<!--{/if}-->
|
||||
{$tag.tags_title}
|
||||
</label>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label label-required">产品图片</label>
|
||||
<div class='col-sm-8'>
|
||||
<table class="layui-table background-item margin-none" lay-size="sm" lay-skin="nob">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>产品LOGO</td>
|
||||
<td>产品图片</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="text-top" style="width:100px">
|
||||
<input type="hidden" name="goods_logo" value="{$vo.goods_logo|default=''}">
|
||||
</td>
|
||||
<td class="text-top">
|
||||
<input type="hidden" name="goods_image" value="{$vo.goods_image|default=''}">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 普通产品及积分产品 开始 -->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">产品规格</label>
|
||||
<div class='col-sm-8'>
|
||||
<select required class="layui-select full-width block" name="spec_id" lay-ignore>
|
||||
{foreach $specs as $spec}
|
||||
{php}$param=str_replace('"',"'",$spec['spec_param']);{/php}
|
||||
<!--{eq name='spec.id' value='$vo.spec_id|default=0'}-->
|
||||
<option data-param="{$param}" selected="selected" value="{$spec.id}">{$spec.spec_title}</option>
|
||||
<!--{else}-->
|
||||
<option data-param="{$param}" value="{$spec.id}">{$spec.spec_title}</option>
|
||||
<!--{/eq}-->
|
||||
{/foreach}
|
||||
</select>
|
||||
<table class="layui-table notevent" lay-size="sm" ng-if="specs.length>0">
|
||||
<tr>
|
||||
<th>可选规格</th>
|
||||
<th>规格内容</th>
|
||||
</tr>
|
||||
<tr ng-repeat="x in specs">
|
||||
<td ng-bind="x.name"></td>
|
||||
<td>
|
||||
<label ng-repeat="m in x.param" class="nowrap margin-right-10 line-height-18">
|
||||
<input data-spec="{{x.name}}_{{m.value}}" ng-model="m.checked" class="inline-block" type="checkbox" lay-ignore>
|
||||
<span ng-bind="m.value"></span>
|
||||
</label>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="layui-table notevent" lay-size="sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>产品规格</th>
|
||||
<th>市场价格</th>
|
||||
<th>销售价格</th>
|
||||
<th>规格状态</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-class="x.status?'':'layui-bg-gray'" ng-repeat="x in specdata">
|
||||
<td class="nowrap">
|
||||
<input type="hidden" name="goods_spec[]" value="{{x.spec_name}}">
|
||||
<span ng-repeat="a in x.spec_attrs">
|
||||
<span class="layui-badge layui-bg-blue" ng-bind="a.name"></span>
|
||||
<span ng-if="b" class="layui-badge layui-bg-green" ng-repeat="b in a.value" ng-bind="b"></span>
|
||||
</span>
|
||||
</td>
|
||||
<td class="price-input-td">
|
||||
<input onblur="this.value=(parseFloat(this.value)||0).toFixed(2)" class="layui-input" placeholder="0.00" name="market_price[]" value="{{x.market_price}}">
|
||||
</td>
|
||||
<td class="price-input-td">
|
||||
<input onblur="this.value=(parseFloat(this.value)||0).toFixed(2)" class="layui-input" placeholder="0.00" name="selling_price[]" value="{{x.selling_price}}">
|
||||
</td>
|
||||
<td>
|
||||
<label class="nowrap line-height-18">
|
||||
<input type="hidden" name="spec_status[]" value="{{x.status?1:0}}">
|
||||
<input ng-checked="x.status" ng-model="x.status" value="1" lay-ignore class="inline-block" type="checkbox"/> 启用
|
||||
</label>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 普通产品及积分产品 结束 -->
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">视频展示</label>
|
||||
<div class='col-sm-8'>
|
||||
<div class="row">
|
||||
<div class="col-sm-10 padding-right-0">
|
||||
<input style="border-right:none" name="goods_video" value="{$vo.goods_video|default=''}" class="layui-input" title="请输入链接或上传视频展示文件" placeholder="请输入链接或上传视频展示文件">
|
||||
</div>
|
||||
<div class="col-sm-2 padding-left-0">
|
||||
<button data-file="one" data-type="mp4" data-field="goods_video" type="button" class="layui-btn layui-btn-sm" style="height:38px;line-height:38px;width:100%">上传视频文件</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">展示描述</label>
|
||||
<div class='col-sm-8'>
|
||||
<textarea class="layui-textarea" name="goods_desc" placeholder="请输入展示描述">{$vo.goods_desc|default=''}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label label-required">产品内容</label>
|
||||
<div class='col-sm-8'>
|
||||
<textarea name="goods_content">{$vo.goods_content|default=''|htmlspecialchars_decode}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="col-sm-7 col-sm-offset-2">
|
||||
<div class="layui-form-item text-center">
|
||||
{if !empty($vo.id)}<input type="hidden" name="id" value="{$vo.id}">{/if}
|
||||
<button class="layui-btn" type="submit">保存配置</button>
|
||||
<button class="layui-btn layui-btn-danger" type='button' onclick="window.history.back()">取消编辑</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
require(['jquery', 'ckeditor', 'angular'], function () {
|
||||
window.form.render();
|
||||
window.createEditor('[name="goods_content"]', {height: 500});
|
||||
var app = angular.module("ProductForm", []).run(callback);
|
||||
angular.bootstrap(document.getElementById(app.name), [app.name]);
|
||||
|
||||
function callback($rootScope) {
|
||||
// 绑定规格列表
|
||||
$rootScope.specs = [];
|
||||
// 规格默认数据
|
||||
var specdata = JSON.parse('{$vo.list|default=[]|json_encode=###,256|raw}');
|
||||
// 单图片上传处理
|
||||
$('#ProductForm [name="goods_logo"]').uploadOneImage();
|
||||
// 多图片上传处理
|
||||
$('#ProductForm [name="goods_image"]').uploadMultipleImage();
|
||||
// 规格显示切换
|
||||
$('#ProductForm').on('click', '[data-spec]', applySpecData);
|
||||
// 产品规格切换
|
||||
$('#ProductForm').on('change', '[name="spec_id"]', function () {
|
||||
var specs = eval(this.options[this.selectedIndex].getAttribute('data-param'));
|
||||
for (var i in specs) {
|
||||
specs[i].param = [];
|
||||
var values = specs[i].value.split(' ');
|
||||
for (var j in values) {
|
||||
specs[i].param.push({
|
||||
name: specs[i].name, value: values[j],
|
||||
checked: getSpecStatus(specs[i].name, values[j])
|
||||
});
|
||||
}
|
||||
}
|
||||
$rootScope.$apply(function () {
|
||||
$rootScope.specs = specs;
|
||||
setTimeout(applySpecData, 10);
|
||||
});
|
||||
}).find('[name="spec_id"]').trigger('change');
|
||||
|
||||
// 规格属性切换
|
||||
function applySpecData() {
|
||||
var params = {};
|
||||
for (var i in $rootScope.specs) {
|
||||
var isChecked = false;
|
||||
for (var j in $rootScope.specs[i].param) {
|
||||
if ($rootScope.specs[i].param[j].checked) {
|
||||
isChecked = true;
|
||||
var name = $rootScope.specs[i].param[j].name;
|
||||
var value = $rootScope.specs[i].param[j].value;
|
||||
(params[name] || (params[name] = [])).push({name: name, value: value});
|
||||
}
|
||||
}
|
||||
if (!isChecked) {
|
||||
$rootScope.specs[i].param[0].checked = true;
|
||||
var name = $rootScope.specs[i].param[0].name;
|
||||
var value = $rootScope.specs[i].param[0].value;
|
||||
(params[name] || (params[name] = [])).push({name: name, value: value});
|
||||
}
|
||||
}
|
||||
$rootScope.$apply(function () {
|
||||
$rootScope.specdata = DataArray.render(params);
|
||||
});
|
||||
}
|
||||
|
||||
// 获取规格选择状态
|
||||
function getSpecStatus(name, spec) {
|
||||
for (var i in specdata) {
|
||||
if (specdata[i].goods_spec.indexOf(name + ':' + spec) > -1) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// 数据处理
|
||||
var DataArray = new function () {
|
||||
// 编译生成规格数据
|
||||
this.render = function (data) {
|
||||
var specs = [], list = [];
|
||||
for (var i in data) {
|
||||
specs = this.joinArray(data[i], specs, i);
|
||||
}
|
||||
(specs.length < 1) && (specs = ['default:default']);
|
||||
for (var i in specs) {
|
||||
var specName = specs[i];
|
||||
var specTitle = (specName === 'default:default') ? '默认规格' : specName.replace(/,/ig, ';').replace(/:/ig, ':');
|
||||
var specAttrs = [], lines = specTitle.split(';');
|
||||
for (var i in lines) {
|
||||
var line = lines[i].split(':');
|
||||
specAttrs.push({name: line[0], value: (line[1] || '').split(',')});
|
||||
}
|
||||
list.push({
|
||||
spec_name: specName, spec_title: specTitle, spec_attrs: specAttrs,
|
||||
market_price: parseFloat(this.getData(specs[i], 'market_price') || '0').toFixed(2),
|
||||
selling_price: parseFloat(this.getData(specs[i], 'selling_price') || '0').toFixed(2),
|
||||
status: this.getData(specName, 'status') !== '0'
|
||||
});
|
||||
}
|
||||
return list;
|
||||
};
|
||||
// 读取规格默认数据
|
||||
this.getData = function (spec, field) {
|
||||
for (var i in specdata) {
|
||||
if (specdata[i].goods_spec === spec) {
|
||||
return specdata[i][field] || '0';
|
||||
}
|
||||
}
|
||||
return '1';
|
||||
};
|
||||
// 数组交叉计算
|
||||
this.joinArray = function (item, list, pk) {
|
||||
var _list = [];
|
||||
for (var i in item) {
|
||||
if (list.length > 0) {
|
||||
for (var j in list) {
|
||||
_list.push(list[j] + ',' + pk + ':' + item[i].value);
|
||||
}
|
||||
} else {
|
||||
_list.push(pk + ':' + item[i].value);
|
||||
}
|
||||
}
|
||||
return _list;
|
||||
}
|
||||
};
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{/block}
|
||||
|
||||
{block name="style"}
|
||||
<style>
|
||||
|
||||
.background-item {
|
||||
padding: 15px;
|
||||
background: #efefef;
|
||||
}
|
||||
|
||||
.background-item thead tr {
|
||||
background: #e0e0e0
|
||||
}
|
||||
|
||||
.price-input-td {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.price-input-td:before {
|
||||
margin: 4px;
|
||||
width: 35px;
|
||||
height: 22px;
|
||||
content: "金额";
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
background: #e2e2e2;
|
||||
}
|
||||
|
||||
.price-input-td input {
|
||||
height: 30px;
|
||||
padding-left: 50px;
|
||||
border: none !important;
|
||||
}
|
||||
</style>
|
||||
{/block}
|
189
application/goods/view/product/index.html
Normal file
189
application/goods/view/product/index.html
Normal file
@ -0,0 +1,189 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="button"}
|
||||
|
||||
<!--{if auth("$classuri/add")}-->
|
||||
<button data-open='{:url("$classuri/add")}' data-title="添加产品" class='layui-btn layui-btn-sm'>添加产品</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/forbid")}-->
|
||||
<button data-update data-field='status' data-value='0' data-action='{:url("$classuri/forbid")}' class='layui-btn layui-btn-sm layui-btn-primary'>批量下架</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/resume")}-->
|
||||
<button data-update data-field='status' data-value='1' data-action='{:url("$classuri/resume")}' class='layui-btn layui-btn-sm layui-btn-primary'>批量上架</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/del")}-->
|
||||
<button data-update data-field='delete' data-action='{:url("$classuri/del")}' class='layui-btn layui-btn-sm layui-btn-danger'>批量删除</button>
|
||||
<!--{/if}-->
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<!-- 表单搜索 开始 -->
|
||||
<form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get">
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">产品名称</label>
|
||||
<div class="layui-input-inline">
|
||||
<input name="goods_title" value="{$Think.get.goods_title}" placeholder="请输入产品名称" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--{if !empty($cates)}-->
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">产品品牌</label>
|
||||
<div class="layui-input-inline">
|
||||
<select name="brand_id" lay-search>
|
||||
<option value="">产品品牌</option>
|
||||
{foreach $brands as $brand}
|
||||
<!--{if $Think.get.brand_id eq $brand.id}-->
|
||||
<option selected="selected" value="{$brand.id}">{$brand.brand_title}</option>
|
||||
<!--{else}-->
|
||||
<option value="{$brand.id}">{$brand.brand_title}</option>
|
||||
<!--{/if}-->
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if !empty($cates)}-->
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">产品分类</label>
|
||||
<div class="layui-input-inline">
|
||||
<select name="cate_id" lay-search>
|
||||
<option value="">所有分类</option>
|
||||
{foreach $cates as $cate}
|
||||
<!--{if $Think.get.cate_id eq $cate.id}-->
|
||||
<option selected="selected" value="{$cate.id}">{$cate.spl|raw}{$cate.cate_title}</option>
|
||||
<!--{else}-->
|
||||
<option value="{$cate.id}">{$cate.spl|raw}{$cate.cate_title}</option>
|
||||
<!--{/if}-->
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<!--{/if}-->
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">发布时间</label>
|
||||
<div class="layui-input-inline">
|
||||
<input name="create_at" id="create_at" value="{$Think.get.create_at}" placeholder="请选择发布时间" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<button class="layui-btn layui-btn-primary"><i class="layui-icon"></i> 搜 索</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
<!-- 表单搜索 结束 -->
|
||||
|
||||
<form onsubmit="return false;" data-auto="true" method="post">
|
||||
<!--{if empty($list)}-->
|
||||
<p class="help-block text-center well">没 有 记 录 哦!</p>
|
||||
<!--{else}-->
|
||||
<input type="hidden" value="resort" name="action">
|
||||
<table class="layui-table notevent" lay-skin="line">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='list-table-check-td'>
|
||||
<input data-auto-none="none" data-check-target='.list-check-box' type='checkbox'>
|
||||
</th>
|
||||
<th class='list-table-sort-td'>
|
||||
<button type="submit" class="layui-btn layui-btn-normal layui-btn-xs">排 序</button>
|
||||
</th>
|
||||
<th class="nowrap">品牌分类</th>
|
||||
<th class="padding-none">
|
||||
<table class="think-inner-table layui-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>产品信息</td>
|
||||
<td class="text-right nowrap">售价 ( 标价 ) / 库存 ( 剩余, 已售 )</td>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</th>
|
||||
<th class="text-left">添加时间 / 状态</th>
|
||||
<th class='text-center'></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach $list as $key=>$vo}
|
||||
<tr>
|
||||
<td class='list-table-check-td text-top'>
|
||||
<input class="list-check-box" value='{$vo.id}' type='checkbox'>
|
||||
</td>
|
||||
<td class='list-table-sort-td text-top'>
|
||||
<input name="_{$vo.id}" value="{$vo.sort}" class="list-sort-input">
|
||||
</td>
|
||||
<td class="text-left nowrap text-top">
|
||||
品牌:{$vo.brand.brand_title|default='<span class="color-desc">未配置品牌</span>'|raw}<br>
|
||||
分类:{if empty($vo.cate)}<span class="color-desc">未配置分类</span>{else}
|
||||
{foreach $vo.cate as $k=>$cate}{$cate.cate_title}
|
||||
{if $k+1 < count($vo.cate)}<span class="layui-icon font-s12"></span>{/if}
|
||||
{/foreach}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="text-left nowrap text-top" style="padding:2px">
|
||||
<table class="think-inner-table layui-table notevent">
|
||||
<colgroup>
|
||||
<col width="60%">
|
||||
</colgroup>
|
||||
{foreach $vo.spec as $spec}
|
||||
<tr>
|
||||
<td>
|
||||
[{$spec.goods_id}] {$spec.goods_title|default=''|raw}
|
||||
<span class="layui-badge layui-bg-gray">{$spec.goods_spec_alias|raw}</span>
|
||||
</td>
|
||||
<td class="text-right nowrap">
|
||||
<span class="layui-badge layui-bg-gray">售 {$spec.selling_price} ( 市 {$spec.market_price} ) </span>
|
||||
<span class="layui-badge layui-bg-gray">存 {$spec.goods_stock} ( 剩 {$spec.goods_stock-$spec.goods_sale}, 售 {$spec.goods_sale} ) </span>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
</td>
|
||||
<td class='text-left nowrap text-top'>
|
||||
{$vo.create_at|format_datetime|str_replace=' ','<br>',###|raw}
|
||||
{if $vo.status eq '0'}<span class="color-red margin-left-10">已下架</span>{elseif $vo.status eq '1'}<span class="color-green margin-left-10">销售中</span>{/if}
|
||||
</td>
|
||||
|
||||
<td class='text-center nowrap text-top'>
|
||||
|
||||
<!--{if auth("$classuri/edit")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-open='{:url("$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if $vo.status eq 1 and auth("$classuri/forbid")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='0' data-action='{:url("$classuri/forbid")}'>下架</a>
|
||||
<!--{elseif auth("$classuri/resume")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='1' data-action='{:url("$classuri/resume")}'>上架</a>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/del")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("$classuri/del")}'>删除</a>
|
||||
<!--{/if}-->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page|raw}</p>{/if}
|
||||
<!--{/if}-->
|
||||
</form>
|
||||
<script>
|
||||
(function () {
|
||||
window.form.render();
|
||||
window.laydate.render({range: true, elem: '#create_at'});
|
||||
})();
|
||||
</script>
|
||||
{/block}
|
200
application/goods/view/spec/form.html
Normal file
200
application/goods/view/spec/form.html
Normal file
@ -0,0 +1,200 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' method="post" id="spec-form">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">规格名称</label>
|
||||
<div class="layui-input-block">
|
||||
<input name="spec_title" ng-model="spec_title" required title="请输入规格名称" placeholder="请输入规格名称" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label label-required">规格参数</label>
|
||||
<div class="layui-input-block">
|
||||
<textarea class="hide" ng-model="spec_param"></textarea>
|
||||
<div class="param-table-list">
|
||||
<table class="layui-table margin-none">
|
||||
<tbody class="param-table-list">
|
||||
<tr ng-repeat="x in paramList" class="transition">
|
||||
<td class="param-input-td one nowrap">
|
||||
<input required placeholder="分组" title="请输入属性分组" ng-model="x.name" class="layui-input">
|
||||
</td>
|
||||
<td class="param-input-td two nowrap">
|
||||
<input required placeholder="名称" title="请输入属性名称" ng-model="x.value" class="layui-input">
|
||||
</td>
|
||||
<td class="param-input-td thr nowrap">
|
||||
<a ng-if="$index<1" class="color-desc">删除</a>
|
||||
<a ng-if="$index>0" ng-click="delParam($index)">删除</a>
|
||||
<a ng-if="$index<1" class="color-desc">上移</a>
|
||||
<a ng-if="$index>0" ng-click="moveToUp($index)">上移</a>
|
||||
<a ng-if="$index+1<paramList.length" ng-click="moveToDn($index)">下移</a>
|
||||
<a ng-if="$index+1>=paramList.length" class="color-desc">下移</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<table class="layui-table">
|
||||
<tr>
|
||||
<td class="text-center notselect padding-none border-none">
|
||||
<button type="button" class="layui-btn full-width layui-btn-primary" ng-click="addParam()">添加属性</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p class="help-block">设置多个内容值时请使用空格键或英文逗号隔开。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">规格描述</label>
|
||||
<div class="layui-input-block">
|
||||
<textarea placeholder="请输入规格描述" title="请输入规格描述" class="layui-textarea" ng-model="spec_desc" name="spec_desc"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="layui-form-item text-center">
|
||||
{if isset($vo['id'])}<input type='hidden' value='{$vo.id}' name='id'/>{/if}
|
||||
<button class="layui-btn" type='submit'>保存数据</button>
|
||||
<button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
require(['angular'], function () {
|
||||
// 应用创建与初始化
|
||||
var app = angular.module("SpecForm", []).run(callback);
|
||||
angular.bootstrap(document.getElementById('spec-form'), [app.name]);
|
||||
|
||||
// 应用事件处理
|
||||
function callback($rootScope) {
|
||||
// 属性参数
|
||||
$rootScope.paramList = filterParamList(JSON.parse('{$vo.spec_param|default="[]"|raw}') || []);
|
||||
$rootScope.spec_title = '{$vo.spec_title|default=""}';
|
||||
$rootScope.spec_desc = '{$vo.sepc_desc|default=""}';
|
||||
|
||||
// 删除菜单
|
||||
$rootScope.delParam = function (x) {
|
||||
var dialogIndex = $.msg.confirm('确定移除参数吗?', function () {
|
||||
$rootScope.$apply(function () {
|
||||
var tmp = [];
|
||||
for (var i in $rootScope.paramList) {
|
||||
(parseInt(i) !== parseInt(x)) && tmp.push($rootScope.paramList[i]);
|
||||
}
|
||||
$rootScope.paramList = filterParamList(tmp);
|
||||
$.msg.close(dialogIndex);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
// 添加参数
|
||||
$rootScope.addParam = function () {
|
||||
$rootScope.paramList.push({name: '', value: ''});
|
||||
setTimeout(function () {
|
||||
$('.param-table-list').scrollTop('10000')
|
||||
}, 10);
|
||||
};
|
||||
|
||||
// 属性参数下移
|
||||
$rootScope.moveToDn = function (index) {
|
||||
var tmp = [], cur = $rootScope.paramList[index];
|
||||
if (index > $rootScope.paramList.length - 2) {
|
||||
return false;
|
||||
}
|
||||
for (var i in $rootScope.paramList) {
|
||||
(parseInt(i) !== parseInt(index)) && tmp.push($rootScope.paramList[i]);
|
||||
(parseInt(i) === parseInt(index) + 1) && tmp.push(cur);
|
||||
}
|
||||
$rootScope.paramList = tmp;
|
||||
};
|
||||
|
||||
// 属性参数上移
|
||||
$rootScope.moveToUp = function (index) {
|
||||
var tmp = [], cur = $rootScope.paramList[index];
|
||||
if (index < 1) {
|
||||
return false;
|
||||
}
|
||||
for (var i in $rootScope.paramList) {
|
||||
(parseInt(i) === parseInt(index) - 1) && tmp.push(cur);
|
||||
(parseInt(i) !== parseInt(index)) && tmp.push($rootScope.paramList[i]);
|
||||
}
|
||||
$rootScope.paramList = tmp;
|
||||
};
|
||||
|
||||
// 表单验证
|
||||
$('#spec-form').vali(function (ret) {
|
||||
try {
|
||||
var spect_param = [];
|
||||
for (var i in $rootScope.paramList) {
|
||||
spect_param.push({
|
||||
name: $rootScope.paramList[i].name,
|
||||
value: $rootScope.paramList[i].value
|
||||
});
|
||||
}
|
||||
var data = {
|
||||
spec_title: $rootScope.spec_title || '',
|
||||
spec_desc: $rootScope.spec_desc || '',
|
||||
spec_param: JSON.stringify(spect_param)
|
||||
};
|
||||
var id = '{$vo.id|default=0}';
|
||||
id > 0 && (data.id = id);
|
||||
$.form.load('{:request()->url()}', data, 'post');
|
||||
} catch ($e) {
|
||||
console.log($e);
|
||||
}
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
// 过滤规格参数列表
|
||||
function filterParamList(list) {
|
||||
return list.length < 1 ? [{name: '', value: ''}] : list;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.param-table-list {
|
||||
overflow: auto;
|
||||
max-height: 200px;
|
||||
position: relative;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.param-input-td {
|
||||
position: relative;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.param-input-td.one {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.param-input-td.thr {
|
||||
width: 20%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.param-input-td.one:before {
|
||||
content: '分组'
|
||||
}
|
||||
|
||||
.param-input-td.two:before {
|
||||
content: '规格'
|
||||
}
|
||||
|
||||
.param-input-td:before {
|
||||
margin: 4px;
|
||||
width: 40px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
background: #e2e2e2;
|
||||
}
|
||||
|
||||
.param-input-td input {
|
||||
padding-left: 50px;
|
||||
border: none !important;
|
||||
}
|
||||
</style>
|
||||
</form>
|
116
application/goods/view/spec/index.html
Normal file
116
application/goods/view/spec/index.html
Normal file
@ -0,0 +1,116 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="button"}
|
||||
|
||||
<!--{if auth("$classuri/add")}-->
|
||||
<button data-modal='{:url("$classuri/add")}' data-title="添加规格" class='layui-btn layui-btn-sm'>添加规格</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/del")}-->
|
||||
<button data-update data-field='delete' data-action='{:url("$classuri/del")}' class='layui-btn layui-btn-sm layui-btn-danger'>删除规格</button>
|
||||
<!--{/if}-->
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<!-- 表单搜索 开始 -->
|
||||
<form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get">
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">规格分组</label>
|
||||
<div class="layui-input-inline">
|
||||
<input name="spec_title" value="{$Think.get.spec_title|default=''}" placeholder="请输入规格分组" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">添加时间</label>
|
||||
<div class="layui-input-inline">
|
||||
<input name="date" id="range-date" value="{$Think.get.date}" placeholder="请选择添加时间" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<button class="layui-btn layui-btn-primary"><i class="layui-icon"></i> 搜 索</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
window.laydate.render({range: true, elem: '#range-date'});
|
||||
window.form.render();
|
||||
</script>
|
||||
<!-- 表单搜索 结束 -->
|
||||
|
||||
<form onsubmit="return false;" data-auto="true" method="post">
|
||||
{if empty($list)}
|
||||
<p class="help-block text-center well">没 有 记 录 哦!</p>
|
||||
{else}
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="layui-table" lay-skin="line" lay-size="sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='list-table-check-td'>
|
||||
<input data-auto-none="none" data-check-target='.list-check-box' type='checkbox'/>
|
||||
</th>
|
||||
<th class='list-table-sort-td'>
|
||||
<button type="submit" class="layui-btn layui-btn-normal layui-btn-xs">排 序</button>
|
||||
</th>
|
||||
<th class='text-left nowrap'>规格分组</th>
|
||||
<th class='text-left nowrap'>规格内容</th>
|
||||
<th class='text-left nowrap'>添加时间</th>
|
||||
<th class='text-left nowrap'>标签状态</th>
|
||||
<th class='text-left'></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach $list as $key=>$vo}
|
||||
<tr>
|
||||
<td class='list-table-check-td text-top'>
|
||||
<input class="list-check-box" value='{$vo.id}' type='checkbox'/>
|
||||
</td>
|
||||
<td class='list-table-sort-td text-top'>
|
||||
<input name="_{$vo.id}" value="{$vo.sort}" class="list-sort-input"/>
|
||||
</td>
|
||||
<td class='text-left text-top nowrap'>{$vo.spec_title}</td>
|
||||
<td class='text-left text-top nowrap'>
|
||||
{foreach $vo.spec_param as $param}
|
||||
<p><b>{$param.name}</b> : {$param.value}</p>
|
||||
{/foreach}
|
||||
</td>
|
||||
<td class='text-left text-top nowrap'>
|
||||
{$vo.create_at|format_datetime|raw}
|
||||
</td>
|
||||
<td class='text-left text-top nowrap'>
|
||||
{if $vo.status eq 0}<span class="color-red">已禁用</span>{elseif $vo.status eq 1}<span class="color-green">使用中</span>{/if}
|
||||
</td>
|
||||
<td class='text-left text-top nowrap'>
|
||||
|
||||
<!--{if auth("$classuri/edit")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-title="编辑规格" data-modal='{:url("$classuri/edit")}?id={$vo.id}'>编辑</a>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if $vo.status eq 1 and auth("$classuri/forbid")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='0' data-action='{:url("$classuri/forbid")}'>禁用</a>
|
||||
<!--{elseif auth("$classuri/resume")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='1' data-action='{:url("$classuri/resume")}'>启用</a>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/del")}-->
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("$classuri/del")}'>删除</a>
|
||||
<!--{/if}-->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page|raw}</p>{/if}
|
||||
{/if}
|
||||
</form>
|
||||
{/block}
|
@ -14,13 +14,13 @@
|
||||
|
||||
namespace app\index\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use think\Controller;
|
||||
|
||||
/**
|
||||
* 应用入口控制器
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
*/
|
||||
class Index extends BasicAdmin
|
||||
class Index extends Controller
|
||||
{
|
||||
|
||||
public function index()
|
||||
@ -28,5 +28,4 @@ class Index extends BasicAdmin
|
||||
$this->redirect('@admin/login');
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -18,7 +18,6 @@ use controller\BasicAdmin;
|
||||
use service\ToolsService;
|
||||
use service\WechatService;
|
||||
use think\Db;
|
||||
use think\Exception;
|
||||
|
||||
/**
|
||||
* 微信粉丝管理
|
||||
|
@ -17,6 +17,7 @@ namespace app\wechat\controller;
|
||||
use controller\BasicAdmin;
|
||||
use service\LogService;
|
||||
use service\WechatService;
|
||||
use think\Exception;
|
||||
|
||||
/**
|
||||
* 微信配置管理
|
||||
@ -42,24 +43,41 @@ class Config extends BasicAdmin
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$thrNotifyUrl = url('@wechat/api.push', '', true, true);
|
||||
if ($this->request->isGet()) {
|
||||
$code = encode(url('@admin', '', true, true) . '#' . $this->request->url());
|
||||
$assign = [
|
||||
$data = [
|
||||
'title' => '微信接口配置',
|
||||
'appuri' => url("@wechat/api.push", '', true, true),
|
||||
'appid' => $this->request->get('appid', sysconf('wechat_appid')),
|
||||
'appkey' => $this->request->get('appkey', sysconf('wechat_appkey')),
|
||||
'authurl' => "http://wm.cuci.cc/wechat/api.push/auth/{$code}.html",
|
||||
'wechat' => WechatService::instance('config')->getConfig(),
|
||||
'appid' => $this->request->get('appid', sysconf('wechat_thr_appid')),
|
||||
'appkey' => $this->request->get('appkey', sysconf('wechat_thr_appkey')),
|
||||
'authurl' => config('wechat.service_url') . "/wechat/api.push/auth/{$code}.html",
|
||||
];
|
||||
return $this->fetch('', $assign);
|
||||
if ($this->request->get('appid', false)) {
|
||||
sysconf('wechat_thr_appid', $data['appid']);
|
||||
sysconf('wechat_thr_appkey', $data['appkey']);
|
||||
WechatService::config()->setApiNotifyUri($thrNotifyUrl);
|
||||
}
|
||||
try {
|
||||
$data['wechat'] = WechatService::config()->getConfig();
|
||||
} catch (Exception $e) {
|
||||
$data['wechat'] = [];
|
||||
}
|
||||
return $this->fetch('', $data);
|
||||
}
|
||||
try {
|
||||
// 接口对接类型
|
||||
sysconf('wechat_type', $this->request->post('wechat_type'));
|
||||
// 直接参数对应
|
||||
sysconf('wechat_token', $this->request->post('wechat_token'));
|
||||
sysconf('wechat_appid', $this->request->post('wechat_appid'));
|
||||
sysconf('wechat_appkey', $this->request->post('wechat_appkey'));
|
||||
$apiurl = $this->request->post('wechat_appurl');
|
||||
if (!empty($apiurl)) {
|
||||
if (!WechatService::instance('config')->setApiNotifyUri($apiurl)) {
|
||||
sysconf('wechat_appsecret', $this->request->post('wechat_appsecret'));
|
||||
sysconf('wechat_encodingaeskey', $this->request->post('wechat_encodingaeskey'));
|
||||
// 第三方平台配置
|
||||
sysconf('wechat_thr_appid', $this->request->post('wechat_thr_appid'));
|
||||
sysconf('wechat_thr_appkey', $this->request->post('wechat_thr_appkey'));
|
||||
// 第三方平台时设置远程平台通知接口
|
||||
if ($this->request->post('wechat_type') === 'thr') {
|
||||
if (!WechatService::config()->setApiNotifyUri($thrNotifyUrl)) {
|
||||
$this->error('远程服务端接口更新失败,请稍候再试!');
|
||||
}
|
||||
}
|
||||
@ -67,7 +85,7 @@ class Config extends BasicAdmin
|
||||
} catch (\Exception $e) {
|
||||
$this->error('微信授权保存失败 , 请稍候重试 ! ' . $e->getMessage());
|
||||
}
|
||||
$this->success('微信授权数据修改成功!', '');
|
||||
$this->success('微信授权数据修改成功!', url('@admin') . "#" . url('@wechat/config/index'));
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -179,11 +179,10 @@ class Fans extends BasicAdmin
|
||||
{
|
||||
try {
|
||||
Db::name($this->table)->where('1=1')->delete();
|
||||
FansService::sync();
|
||||
TagsService::sync();
|
||||
[FansService::sync(), TagsService::sync()];
|
||||
LogService::write('微信管理', '同步全部微信粉丝成功');
|
||||
} catch (\Exception $e) {
|
||||
$this->error('同步粉丝记录失败,请稍候再试!');
|
||||
$this->error('同步粉丝记录失败,请稍候再试!' . $e->getMessage());
|
||||
}
|
||||
$this->success('同步获取所有粉丝成功!', '');
|
||||
}
|
||||
|
@ -47,14 +47,12 @@ class Keys extends BasicAdmin
|
||||
{
|
||||
$this->assign('title', '微信关键字');
|
||||
$db = Db::name($this->table)->whereNotIn('keys', ['subscribe', 'default']);
|
||||
return $this->_list($db->order('id desc'));
|
||||
return $this->_list($db->order('sort asc,id desc'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表数据处理
|
||||
* @param array $data
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
*/
|
||||
protected function _index_data_filter(&$data)
|
||||
{
|
||||
@ -62,11 +60,15 @@ class Keys extends BasicAdmin
|
||||
'keys' => '关键字', 'image' => '图片', 'news' => '图文',
|
||||
'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音',
|
||||
];
|
||||
$wechat = WechatService::qrcode();
|
||||
foreach ($data as &$vo) {
|
||||
$result = $wechat->create($vo['keys']);
|
||||
$vo['qrc'] = $wechat->url($result['ticket']);
|
||||
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
|
||||
try {
|
||||
$wechat = WechatService::qrcode();
|
||||
foreach ($data as &$vo) {
|
||||
$result = $wechat->create($vo['keys']);
|
||||
$vo['qrc'] = $wechat->url($result['ticket']);
|
||||
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
$this->error($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@ -178,7 +180,6 @@ class Keys extends BasicAdmin
|
||||
if ($this->request->isPost() && isset($data['keys'])) {
|
||||
$db = Db::name($this->table)->where('keys', $data['keys']);
|
||||
!empty($data['id']) && $db->where('id', 'neq', $data['id']);
|
||||
$data['content'] = htmlspecialchars_decode($data['content']);
|
||||
$db->count() > 0 && $this->error('关键字已经存在,请使用其它关键字!');
|
||||
}
|
||||
}
|
||||
|
@ -172,7 +172,6 @@ class News extends BasicAdmin
|
||||
foreach ($data as &$vo) {
|
||||
$vo['create_by'] = session('user.id');
|
||||
$vo['create_at'] = date('Y-m-d H:i:s');
|
||||
$vo['content'] = htmlspecialchars_decode($vo['content']);
|
||||
if (empty($vo['digest'])) {
|
||||
$vo['digest'] = mb_substr(strip_tags(str_replace(["\s", ' '], '', $vo['content'])), 0, 120);
|
||||
}
|
||||
@ -280,7 +279,7 @@ class News extends BasicAdmin
|
||||
$article['content'] = preg_replace_callback("/<img(.*?)src=['\"](.*?)['\"](.*?)\/?>/i", function ($matches) {
|
||||
$src = MediaService::uploadImage($matches[2]);
|
||||
return "<img{$matches[1]}src=\"{$src}\"{$matches[3]}/>";
|
||||
}, htmlspecialchars_decode($article['content']));
|
||||
}, $article['content']);
|
||||
}
|
||||
$wechat = WechatService::media();
|
||||
// 如果已经上传过,先删除之前的历史记录
|
||||
|
@ -48,7 +48,6 @@ class Review extends Controller
|
||||
if (!empty($article['content_source_url'])) {
|
||||
$this->redirect($article['content_source_url']);
|
||||
}
|
||||
$article['content'] = htmlspecialchars_decode($article['content']);
|
||||
$this->assign('vo', $article);
|
||||
}
|
||||
$this->assign('type', $type);
|
||||
|
50
application/wechat/controller/api/Js.php
Normal file
50
application/wechat/controller/api/Js.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller\api;
|
||||
|
||||
use service\WechatService;
|
||||
use think\facade\Response;
|
||||
|
||||
/**
|
||||
* 公众号页面支持
|
||||
* Class Script
|
||||
* @package app\wechat\controller\api
|
||||
*/
|
||||
class Js
|
||||
{
|
||||
|
||||
/**
|
||||
* jsSign签名
|
||||
* @return mixed
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$result = app('request');
|
||||
$url = $result->server('HTTP_REFERER', $result->url(true), null);
|
||||
$wechat = WechatService::webOauth($url, $result->get('mode', 1), false);
|
||||
$assign = [
|
||||
'jssdk' => WechatService::webJsSDK($url),
|
||||
'openid' => $wechat['openid'], 'fansinfo' => $wechat['fansinfo'],
|
||||
];
|
||||
return Response::create(env('APP_PATH') . 'wechat/view/api/script/index.js', 'view', 200, [
|
||||
'Content-Type' => 'application/x-javascript',
|
||||
'Cache-Control' => 'no-cache', 'Pragma' => 'no-cache', 'Expires' => '0',
|
||||
])->assign($assign);
|
||||
}
|
||||
}
|
@ -49,36 +49,70 @@ class Push
|
||||
protected $receive;
|
||||
|
||||
/**
|
||||
* 微信消息接口
|
||||
* 微信消息接口(通过ThinkService推送)
|
||||
* @return string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function __construct()
|
||||
public function index()
|
||||
{
|
||||
$request = app('request');
|
||||
$this->appid = $request->post('appid', '', null);
|
||||
$this->openid = $request->post('openid', '', null);
|
||||
$this->receive = unserialize($request->post('receive', '', null));
|
||||
p($this->receive);
|
||||
if (empty($this->appid) || empty($this->openid) || empty($this->receive)) {
|
||||
throw new Exception('微信API实例缺失必要参数[appid,openid,event].');
|
||||
}
|
||||
if ($this->appid !== sysconf('wechat_appid')) {
|
||||
return $this->call($this->appid, $this->openid, $this->receive);
|
||||
}
|
||||
|
||||
/**
|
||||
* 公众号直接对接(通过参数对接推送)
|
||||
* @return string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function notify()
|
||||
{
|
||||
$wechat = WechatService::receive();
|
||||
return $this->call(WechatService::getAppid(), $wechat->getOpenid(), $wechat->getReceive());
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化接口
|
||||
* @param string $appid 公众号APPID
|
||||
* @param string $openid 公众号OPENID
|
||||
* @param array $revice 消息对象
|
||||
* @return string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
protected function call($appid, $openid, $revice)
|
||||
{
|
||||
list($this->appid, $this->openid, $this->receive) = [$appid, $openid, $revice];
|
||||
if ($this->appid !== WechatService::getAppid()) {
|
||||
throw new Exception('微信API实例APPID验证失败.');
|
||||
}
|
||||
// text,event,image,location
|
||||
if (method_exists($this, ($method = $this->receive['MsgType']))) {
|
||||
$this->$method();
|
||||
if (is_string(($result = $this->$method()))) {
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
return 'success';
|
||||
}
|
||||
|
||||
/**
|
||||
* 文件消息处理
|
||||
* @return bool
|
||||
* @throws \Exception
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
protected function text()
|
||||
{
|
||||
@ -88,7 +122,9 @@ class Push
|
||||
/**
|
||||
* 事件消息处理
|
||||
* @return bool|string
|
||||
* @throws \Exception
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
@ -132,24 +168,27 @@ class Push
|
||||
* 关键字处理
|
||||
* @param string $rule 关键字规则
|
||||
* @param bool $isLastReply 强制结束
|
||||
* @return bool
|
||||
* @throws \Exception
|
||||
* @return bool|string
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
protected function keys($rule, $isLastReply = false)
|
||||
{
|
||||
list($table, $field, $value) = explode('#', $rule . '##');
|
||||
$info = Db::name($table)->where($field, $value)->find();
|
||||
p($info);
|
||||
if (empty($info['type']) || (array_key_exists('status', $info) && empty($info['status']))) {
|
||||
// 切换默认回复
|
||||
return $isLastReply ? false : $this->keys('wechat_keys#keys#default', true);
|
||||
}
|
||||
switch ($info['type']) {
|
||||
case 'customservice':
|
||||
return $this->sendMessage('text', ['content' => $info['content']]);
|
||||
return $this->sendMessage('customservice', ['content' => $info['content']]);
|
||||
case 'keys':
|
||||
$content = empty($info['content']) ? $info['name'] : $info['content'];
|
||||
return $this->keys("wechat_keys#keys#{$content}");
|
||||
@ -202,13 +241,42 @@ class Push
|
||||
* @param string $type 消息类型(text|image|voice|video|music|news|mpnews|wxcard)
|
||||
* @param array $data 消息内容
|
||||
* @return array|bool
|
||||
* @throws \Exception
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
protected function sendMessage($type, $data)
|
||||
{
|
||||
$msgData = ['touser' => $this->openid, 'msgtype' => $type, "{$type}" => $data];
|
||||
p($msgData);
|
||||
return WechatService::custom()->send($msgData);
|
||||
switch (strtolower(sysconf('wechat_type'))) {
|
||||
case 'api': // 参数对接,直接回复XML来实现消息回复
|
||||
$wechat = WechatService::receive();
|
||||
switch (strtolower($type)) {
|
||||
case 'text':
|
||||
return $wechat->text($data['content'])->reply([], true);
|
||||
case 'image':
|
||||
return $wechat->image($data['media_id'])->reply([], true);
|
||||
case 'video':
|
||||
return $wechat->video($data['media_id'], $data['title'], $data['description'])->reply([], true);
|
||||
case 'voice':
|
||||
return $wechat->voice($data['media_id'])->reply([], true);
|
||||
case 'music':
|
||||
return $wechat->music($data['title'], $data['description'], $data['musicurl'], $data['hqmusicurl'], $data['thumb_media_id'])->reply([], true);
|
||||
case 'news':
|
||||
return $wechat->news($data['articles'])->reply([], true);
|
||||
case 'customservice':
|
||||
WechatService::custom()->send(['touser' => $this->openid, 'msgtype' => 'text', "text" => $data['content']]);
|
||||
return $wechat->transferCustomerService()->reply([], true);
|
||||
default:
|
||||
return 'success';
|
||||
}
|
||||
case 'thr': // 第三方平台,使用客服消息来实现
|
||||
return WechatService::custom()->send($msgData);
|
||||
default:
|
||||
return 'success';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -238,7 +306,8 @@ class Push
|
||||
* 同步粉丝状态
|
||||
* @param bool $subscribe 关注状态
|
||||
* @return string
|
||||
* @throws \Exception
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
|
@ -33,7 +33,7 @@ class Tools extends BasicAdmin
|
||||
*/
|
||||
public function oauth()
|
||||
{
|
||||
$fans = WechatService::webOauth(1);
|
||||
$fans = WechatService::webOauth($this->request->url(true), 1);
|
||||
return $this->fetch('', ['fans' => $fans]);
|
||||
}
|
||||
|
||||
@ -53,12 +53,14 @@ class Tools extends BasicAdmin
|
||||
/**
|
||||
* JSSDK测试
|
||||
* @return string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function jssdk()
|
||||
{
|
||||
$wechat = WechatService::wechat();
|
||||
$options = $wechat->jsSign($this->request->url(true));
|
||||
return $this->fetch('', ['options' => $options]);
|
||||
return $this->fetch('', ['options' => WechatService::webJsSDK()]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -35,7 +35,7 @@ class FansService
|
||||
*/
|
||||
public static function set(array $user)
|
||||
{
|
||||
$user['appid'] = sysconf('wechat_appid');
|
||||
$user['appid'] = WechatService::getAppid();
|
||||
if (!empty($user['subscribe_time'])) {
|
||||
$user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']);
|
||||
}
|
||||
@ -58,7 +58,7 @@ class FansService
|
||||
*/
|
||||
public static function get($openid)
|
||||
{
|
||||
$map = ['openid' => $openid, 'appid' => sysconf('wechat_appid')];
|
||||
$map = ['openid' => $openid, 'appid' => WechatService::getAppid()];
|
||||
$user = Db::name('WechatFans')->where($map)->find();
|
||||
foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
|
||||
isset($user[$k]) && $user[$k] = ToolsService::emojiDecode($user[$k]);
|
||||
|
@ -14,6 +14,8 @@
|
||||
|
||||
namespace app\wechat\service;
|
||||
|
||||
use service\DataService;
|
||||
use service\FileService;
|
||||
use service\WechatService;
|
||||
use think\Db;
|
||||
|
||||
@ -56,18 +58,21 @@ class MediaService
|
||||
* @return string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function uploadImage($local_url)
|
||||
{
|
||||
$media_url = Db::name('WechatNewsImage')->where(['md5' => md5($local_url)])->value('media_url');
|
||||
if (!empty($media_url)) {
|
||||
$map = ['md5' => md5($local_url)];
|
||||
if (!($media_url = Db::name('WechatNewsImage')->where($map)->value('media_url'))) {
|
||||
return $media_url;
|
||||
}
|
||||
$result = WechatService::wechat()->upFile(base64_encode(file_get_contents($local_url)), $local_url);
|
||||
$info = WechatService::media()->uploadImg($result['file']);
|
||||
WechatService::wechat()->rmFile($local_url);
|
||||
$data = ['local_url' => $local_url, 'media_url' => $info['url'], 'md5' => md5($local_url)];
|
||||
Db::name('WechatNewsImage')->insert($data);
|
||||
$info = WechatService::media()->uploadImg(self::getServerPath($local_url));
|
||||
if (strtolower(sysconf('wechat_type')) === 'thr') {
|
||||
WechatService::wechat()->rmFile($local_url);
|
||||
}
|
||||
$data = ['local_url' => $local_url, 'media_url' => $info['url'], 'md5' => $map['md5']];
|
||||
DataService::save('WechatNewsImage', $data, 'md5', ['type' => 'image']);
|
||||
return $info['url'];
|
||||
}
|
||||
|
||||
@ -84,17 +89,40 @@ class MediaService
|
||||
*/
|
||||
public static function uploadForeverMedia($local_url, $type = 'image', $video_info = [])
|
||||
{
|
||||
$map = ['md5' => md5($local_url), 'appid' => sysconf('wechat_appid')];
|
||||
$map = ['md5' => md5($local_url), 'appid' => WechatService::getAppid()];
|
||||
if (($media_id = Db::name('WechatNewsMedia')->where($map)->value('media_id'))) {
|
||||
return $media_id;
|
||||
}
|
||||
$result = WechatService::wechat()->upFile(base64_encode(file_get_contents($local_url)), $local_url);
|
||||
$result = WechatService::media()->addMaterial($result['file'], $type, $video_info);
|
||||
WechatService::wechat()->rmFile($local_url);
|
||||
$result = WechatService::media()->addMaterial(self::getServerPath($local_url), $type, $video_info);
|
||||
if (strtolower(sysconf('wechat_type')) === 'thr') {
|
||||
WechatService::wechat()->rmFile($local_url);
|
||||
}
|
||||
$data = ['md5' => $map['md5'], 'type' => $type, 'appid' => $map['appid'], 'media_id' => $result['media_id'], 'local_url' => $local_url];
|
||||
isset($result['url']) && $data['media_url'] = $result['url'];
|
||||
Db::name('WechatNewsMedia')->insert($data);
|
||||
DataService::save('WechatNewsMedia', $data, 'md5', ['appid' => $map['appid'], 'type' => $type]);
|
||||
return $data['media_id'];
|
||||
}
|
||||
|
||||
/**
|
||||
* 文件位置处理
|
||||
* @param string $local
|
||||
* @return string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
protected static function getServerPath($local)
|
||||
{
|
||||
switch (strtolower(sysconf('wechat_type'))) {
|
||||
case 'api':
|
||||
if (file_exists($local)) {
|
||||
return $local;
|
||||
}
|
||||
return FileService::download($local)['file'];
|
||||
case 'thr':
|
||||
return WechatService::wechat()->upFile(base64_encode(file_get_contents($local)), $local)['file'];
|
||||
default:
|
||||
return $local;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -54,7 +54,7 @@ class TagsService
|
||||
*/
|
||||
public static function sync()
|
||||
{
|
||||
$appid = sysconf('wechat_appid');
|
||||
$appid = WechatService::getAppid();
|
||||
$result = WechatService::tags()->getTags();
|
||||
Db::name('WechatFansTags')->where(['appid' => $appid])->delete();
|
||||
foreach (array_chunk($result['tags'], 100) as $list) {
|
||||
|
10
application/wechat/view/api/script/index.js
Normal file
10
application/wechat/view/api/script/index.js
Normal file
@ -0,0 +1,10 @@
|
||||
if (typeof wx === 'object') {
|
||||
wx.openid = '{$fansinfo.openid|default=""}';
|
||||
wx.unionid = '{$fansinfo.unionid|default=""}';
|
||||
wx.fansinfo = eval('({$fansinfo|default=[]|json_encode=###,256|raw})');
|
||||
wx.config(eval('({$jssdk|default=[]|json_encode=###,256|raw})'));
|
||||
wx.ready(function () {
|
||||
wx.hideOptionMenu();
|
||||
wx.hideAllNonBaseMenuItem();
|
||||
});
|
||||
}
|
@ -26,7 +26,6 @@
|
||||
$.toptip(err.errMsg, 100000, 'error');
|
||||
});
|
||||
wx.ready(function () {
|
||||
$.toptip('JSSDK 初始化成功...', 'success');
|
||||
$('#show-alert').removeClass('weui-btn_disabled').on('click', function () {
|
||||
wx.scanQRCode({
|
||||
needResult: 1,
|
||||
|
@ -1,15 +1,12 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="button"}
|
||||
|
||||
<!--{if auth('wechat/block/backdel')}-->
|
||||
<button data-update="" data-action="{:url('backdel')}" class='layui-btn layui-btn-sm'>移出黑名单</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth('wechat/fans/sync')}-->
|
||||
<button data-load="{:url('wechat/fans/sync')}" class='layui-btn layui-btn-sm'>远程获取粉丝</button>
|
||||
<!--{/if}-->
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
@ -94,12 +91,12 @@
|
||||
<!--{if empty($list)}-->
|
||||
<p class="help-block text-center well">没 有 记 录 哦!</p>
|
||||
<!--{else}-->
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<input type="hidden" value="resort" name="action">
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='list-table-check-td'>
|
||||
<input data-auto-none="" data-check-target='.list-check-box' type='checkbox'/>
|
||||
<input data-auto-none="" data-check-target='.list-check-box' type='checkbox'>
|
||||
</th>
|
||||
<th class='text-left'>用户昵称</th>
|
||||
<th class='text-left'>性别</th>
|
||||
@ -113,10 +110,10 @@
|
||||
{foreach $list as $key=>$vo}
|
||||
<tr>
|
||||
<td class='list-table-check-td'>
|
||||
<input class="list-check-box" value='{$vo.id}' type='checkbox'/>
|
||||
<input class="list-check-box" value='{$vo.id}' type='checkbox'>
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
<img data-tips-image class="headimg" src="{$vo.headimgurl}"/>
|
||||
<img data-tips-image class="headimg" src="{$vo.headimgurl}">
|
||||
{$vo.nickname|default='<span class="color-desc">未设置微信昵称</span>'}
|
||||
</td>
|
||||
<td class='text-left'>
|
||||
|
@ -3,79 +3,154 @@
|
||||
{block name="content"}
|
||||
<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" class='form-horizontal layui-form padding-top-20'>
|
||||
|
||||
<!--{if !empty($wechat)}-->
|
||||
<div class="row">
|
||||
<div class="col-sm-2"></div>
|
||||
<div class="col-sm-10 padding-bottom-20">
|
||||
<div class="pull-left padding-right-15 notselect">
|
||||
<img data-tips-image src="{$wechat.qrcode_url|local_image}" style="width:160px;margin-left:-15px">
|
||||
</div>
|
||||
<div class="pull-left padding-15 padding-left-0">
|
||||
<p class="margin-bottom-10 nowrap">微信昵称:{$wechat.nick_name}</p>
|
||||
<p class="margin-bottom-10 nowrap">微信类型:{$wechat.service_type_info == 2 ? '服务号' : '订阅号'} /
|
||||
{$wechat.verify_type_info == -1 ? '未认证' : '<span class="color-green">已认证</span>'}</p>
|
||||
<p class="margin-bottom-10 nowrap">注册公司:{$wechat.principal_name}</p>
|
||||
<p class=" nowrap">授权绑定:{$wechat.create_at|format_datetime}</p>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label label-required">Mode<br><span class="nowrap color-desc">接口模式</span></label>
|
||||
<div class="col-sm-8">
|
||||
{php}
|
||||
$wechat_type=sysconf('wechat_type')?sysconf('wechat_type'):'api';
|
||||
$wechat_type=request()->get('appkey')?'thr':$wechat_type;
|
||||
{/php}
|
||||
{foreach ['api'=>'普通接口参数','thr'=>'第三方授权对接'] as $k=>$v}
|
||||
<label class="think-radio">
|
||||
<!--{if $wechat_type eq $k}-->
|
||||
<input checked type="radio" value="{$k}" name="wechat_type">
|
||||
<!--{else}-->
|
||||
<input type="radio" value="{$k}" name="wechat_type">
|
||||
<!--{/if}-->
|
||||
{$v}
|
||||
</label>
|
||||
{/foreach}
|
||||
<p class="help-block">如果使用第三方授权对接,需要 <a target="_blank" href="https://github.com/zoujingli/ThinkService">ThinkService</a> 项目的支持。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-2"></div>
|
||||
<div class="col-sm-10 padding-bottom-20">
|
||||
<p class="help-block" style="margin-left:-5px">------- 公众号功能测试 -------</p>
|
||||
<div class="col-sm-2 control-label">WxTest<br><span class="nowrap color-desc">功能测试</span></div>
|
||||
<div class="col-sm-10">
|
||||
<div class="pull-left padding-right-15 notselect">
|
||||
<img data-tips-image src="{:url('@wechat/api.tools/oauth_qrc')}" style="width:80px;margin-left:-10px">
|
||||
<img class="notselect" data-tips-image src="{:url('@wechat/api.tools/oauth_qrc')}" style="width:80px;margin-left:-4px">
|
||||
<p class="text-center" style="margin-left:-10px">网页授权</p>
|
||||
</div>
|
||||
<div class="pull-left padding-left-0">
|
||||
<img data-tips-image src="{:url('@wechat/api.tools/jssdk_qrc')}" style="width:80px;">
|
||||
<img class="notselect" data-tips-image src="{:url('@wechat/api.tools/jssdk_qrc')}" style="width:80px;">
|
||||
<p class="text-center">JSSDK签名</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
<!--{/if}-->
|
||||
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-2 control-label text-right">Authorize<br><span class="nowrap color-desc">绑定授权</span></label>
|
||||
<div class="col-sm-8">
|
||||
<button type="button" data-href='{$authurl}' class='layui-btn layui-btn-primary'>{$wechat?'重新绑定公众号':'立即绑定公众号'}</button>
|
||||
<p class="help-block">点击连接将跳转到微信第三方平台进行公众号授权。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">AppId<br><span class="nowrap color-desc">公众号AppId</span></label>
|
||||
<div class='col-sm-8'>
|
||||
<input type="text" name="wechat_appid" required value="{$appid}" title="请输入以wx开头的18位公众号APPID" placeholder="公众号APPID(必填)" pattern="^wx[0-9a-z]{16}$" maxlength="18" class="layui-input">
|
||||
<p class="help-block">公众号 appid 通过微信第三方授权自动获取. 若没有值请进行微信第三方授权。</p>
|
||||
<div data-api-type="api" class="hide">
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-2 control-label">Token<br><span class="nowrap color-desc">验证令牌</span></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" name="wechat_token" required="required" title="请输入接口Token(令牌)" placeholder="Token(令牌)" value="{:sysconf('wechat_token')}" class="layui-input">
|
||||
<p class="help-block">公众号平台与系统对接认证Token,请优先填写此参数并保存,然后再在微信公众号平台操作对接。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-2 control-label">AppId<br><span class="nowrap color-desc">公众号标识</span></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" name="wechat_appid" title="请输入以wx开头的18位公众号APPID" placeholder="公众号APPID(必填)" pattern="^wx[0-9a-z]{16}$" maxlength="18" required="required" value="{:sysconf('wechat_appid')}" class="layui-input">
|
||||
<p class="help-block">公众号应用ID是所有接口必要参数,可以在公众号平台 [ 开发 > 基本配置 ] 页面获取。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-2 control-label">AppSecret<br><span class="nowrap color-desc">公众号密钥</span></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" name="wechat_appsecret" required="required" title="请输入32位公众号AppSecret" placeholder="公众号AppSecret(必填)" value="{:sysconf('wechat_appsecret')}" maxlength="32" pattern="^[0-9a-z]{32}$" class="layui-input">
|
||||
<p class="help-block">公众号应用密钥是所有接口必要参数,可以在公众号平台 [ 开发 > 基本配置 ] 页面授权后获取。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-2 control-label">EncodingAESKey<br><span class="nowrap color-desc">消息加密密钥</span></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" name="wechat_encodingaeskey" title="请输入43位消息加密密钥" placeholder="消息加密密钥,若开启了消息加密时必需填写(可选)" value="{:sysconf('wechat_encodingaeskey')}" maxlength="43" class="layui-input">
|
||||
<p class="help-block">公众号平台接口设置为加密模式,消息加密密钥必需填写并保持与公众号平台一致。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">AppUri<br><span class="nowrap color-desc">消息推送接口</span></label>
|
||||
<div class='col-sm-8'>
|
||||
<input type="text" name="wechat_appurl" required value="{:url('@wechat/api.push/notify','',true,true)}" title="请输入公众号接口通知URL" placeholder="公众号接口通知URL(必填)" class="layui-input layui-bg-gray">
|
||||
<p class="help-block">公众号服务平台接口通知URL, 公众号消息接收与回复等。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">AppKey<br><span class="nowrap color-desc">应用接口密钥</span></label>
|
||||
<div class='col-sm-8'>
|
||||
<input type="text" name="wechat_appkey" required value="{$appkey}" title="请输入32位公众号AppSecret" placeholder="公众号AppSecret(必填)" maxlength="32" pattern="^[0-9a-z]{32}$" class="layui-input">
|
||||
<p class="help-block">公众号服务平台接口密钥, 通过微信第三方授权自动获取, 若没有值请进行微信第三方授权。</p>
|
||||
|
||||
<div data-api-type="thr" class="hide">
|
||||
<!--{if !empty($wechat)}-->
|
||||
<div class="row">
|
||||
<div class="col-sm-2 control-label">QRCode<br><span class="nowrap color-desc">公众号二维码</span></div>
|
||||
<div class="col-sm-10">
|
||||
<div class="pull-left notselect">
|
||||
<img data-tips-image src="{$wechat.qrcode_url|local_image}" style="width:95px;margin-left:-10px">
|
||||
</div>
|
||||
<div class="pull-left padding-left-10">
|
||||
<p class="margin-bottom-2 nowrap">微信昵称:{$wechat.nick_name}</p>
|
||||
<p class="margin-bottom-2 nowrap">微信类型:{$wechat.service_type_info == 2 ? '服务号' : '订阅号'} /
|
||||
{$wechat.verify_type_info == -1 ? '未认证' : '<span class="color-green">已认证</span>'}</p>
|
||||
<p class="margin-bottom-2 nowrap">注册公司:{$wechat.principal_name}</p>
|
||||
<p class=" nowrap">授权绑定:{$wechat.create_at|format_datetime}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
<!--{/if}-->
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-2 control-label">Authorize<br><span class="nowrap color-desc">公众号授权绑定</span></label>
|
||||
<div class="col-sm-8">
|
||||
<button type="button" data-href='{$authurl}' class='layui-btn layui-btn-primary'>{$wechat?'重新绑定公众号':'立即绑定公众号'}</button>
|
||||
<p class="help-block">点击连接将跳转到微信第三方平台进行公众号授权。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">AppId<br><span class="nowrap color-desc">公众号服务标识</span></label>
|
||||
<div class='col-sm-8'>
|
||||
<input type="text" name="wechat_thr_appid" required value="{$appid}" title="请输入以wx开头的18位公众号APPID" placeholder="公众号APPID(必填)" pattern="^wx[0-9a-z]{16}$" maxlength="18" class="layui-input">
|
||||
<p class="help-block">公众号 appid 通过微信第三方授权自动获取. 若没有值请进行微信第三方授权。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">AppKey<br><span class="nowrap color-desc">第三方服务密钥</span></label>
|
||||
<div class='col-sm-8'>
|
||||
<input type="text" name="wechat_thr_appkey" required value="{$appkey}" title="请输入32位公众号AppSecret" placeholder="公众号AppSecret(必填)" maxlength="32" pattern="^[0-9a-z]{32}$" class="layui-input">
|
||||
<p class="help-block">公众号服务平台接口密钥, 通过微信第三方授权自动获取, 若没有值请进行微信第三方授权。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">AppUri<br><span class="nowrap color-desc">第三方推送接口</span></label>
|
||||
<div class='col-sm-8'>
|
||||
<input type="text" name="wechat_thr_appurl" required value="{:url('@wechat/api.push', '', true, true)}" title="请输入公众号接口通知URL" placeholder="公众号接口通知URL(必填)" class="layui-input layui-bg-gray">
|
||||
<p class="help-block">公众号服务平台接口通知URL, 公众号消息接收与回复等。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">AppUri<br><span class="nowrap color-desc">消息推送接口</span></label>
|
||||
<div class='col-sm-8'>
|
||||
<input type="text" name="wechat_appurl" required value="{$appuri}" title="请输入公众号接口通知URL" placeholder="公众号接口通知URL(必填)" class="layui-input layui-bg-gray">
|
||||
<p class="help-block">公众号服务平台接口通知URL, 公众号消息接收与回复等。</p>
|
||||
<div class="col-sm-6 col-sm-offset-2">
|
||||
<div class="layui-form-item text-center">
|
||||
<button class="layui-btn" type="submit">保存配置</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="layui-form-item text-center" style="max-width:1000px">
|
||||
<button class="layui-btn" type="submit">保存配置</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
$(function () {
|
||||
updateViwe();
|
||||
$('[name="wechat_type"]').on('click', updateViwe);
|
||||
|
||||
function updateViwe() {
|
||||
var type = $('[name="wechat_type"]:checked').val();
|
||||
$('[data-api-type]').not($('[data-api-type="' + type + '"]').removeClass('hide')).addClass('hide');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
{/block}
|
||||
|
@ -1,15 +1,12 @@
|
||||
{extend name='admin@public/content'}
|
||||
|
||||
{block name="button"}
|
||||
|
||||
<!--{if auth("$classuri/backadd")}-->
|
||||
<button data-update data-action="{:url('backadd')}" class='layui-btn layui-btn-sm layui-btn-danger'>批量拉黑</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("$classuri/sync")}-->
|
||||
<button data-load="{:url('sync')}" class='layui-btn layui-btn-sm'>远程获取粉丝</button>
|
||||
<!--{/if}-->
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
|
@ -2,47 +2,19 @@
|
||||
|
||||
{block name="style"}
|
||||
<style>
|
||||
.keys-container {
|
||||
min-width: 800px
|
||||
}
|
||||
|
||||
.keys-container .control-label {
|
||||
margin: 0;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.keys-container textarea {
|
||||
width: 95%;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.keys-container .input-group input {
|
||||
border-right: 0
|
||||
}
|
||||
|
||||
.keys-container .input-group-addon {
|
||||
border-left: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.keys-container [data-tips-image] {
|
||||
width: 112px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.keys-container .layui-elem-field {
|
||||
width: 535px;
|
||||
height: 580px;
|
||||
position: absolute;
|
||||
}
|
||||
.keys-container{min-width:800px}
|
||||
.keys-container textarea{width:95%;height:100px;border-radius:0}
|
||||
.keys-container .input-group input{border-right:0}
|
||||
.keys-container .input-group-addon{border-left:0;border-radius:0}
|
||||
.keys-container [data-tips-image]{width:112px;height:auto;}
|
||||
.keys-container .layui-elem-field{width:535px;height:590px;position:absolute}
|
||||
</style>
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<!-- 效果预览区域 开始 -->
|
||||
<div class='mobile-preview pull-left'>
|
||||
<div class='mobile-preview pull-left' style="margin-top:13px;">
|
||||
<div class='mobile-header'>公众号</div>
|
||||
<div class='mobile-body'>
|
||||
<iframe id="phone-preview" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
|
||||
@ -52,154 +24,153 @@
|
||||
|
||||
<div class="row keys-container">
|
||||
<div class='col-xs-6 margin-left-15'>
|
||||
<form class="form-horizontal" role="form" data-auto="true" action="{:request()->url()}" method="post">
|
||||
<form class="form-horizontal layui-form" role="form" data-auto="true" action="{:request()->url()}" method="post">
|
||||
<fieldset class="layui-elem-field layui-box">
|
||||
<legend>{$title}</legend>
|
||||
<div>
|
||||
<!--{if !isset($vo.keys) or ($vo.keys neq 'default' and $vo.keys neq 'subscribe')}-->
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label layui-form-label ">关 键 字</label>
|
||||
<div class="col-md-9">
|
||||
<input required title='请输入关键字' maxlength='20' name='keys' class="layui-input" value='{$vo.keys|default=""}'>
|
||||
</div>
|
||||
<!--{if !isset($vo.keys) or ($vo.keys neq 'default' and $vo.keys neq 'subscribe')}-->
|
||||
<div class="form-group">
|
||||
<label class="col-xs-2 control-label layui-form-label ">关 键 字</label>
|
||||
<div class="col-xs-8">
|
||||
<input required title='请输入关键字' maxlength='20' name='keys' class="layui-input" value='{$vo.keys|default=""}'>
|
||||
</div>
|
||||
<!--{else}-->
|
||||
<input type="hidden" name="keys" value="{$vo.keys|default=''}">
|
||||
<!--{/if}-->
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label layui-form-label label-required">规则状态</label>
|
||||
<div class="col-md-9">
|
||||
<div class="mt-radio-inline padding-bottom-0">
|
||||
{foreach ['1'=>'启用','0'=>'禁用'] as $k=>$v}
|
||||
<label class="think-radio">
|
||||
<!--{if (!isset($vo.status) and $k eq '1') or (isset($vo.status) and $vo.status eq $k)}-->
|
||||
<input data-auto-none type="radio" checked name="status" value="{$k}"> {$v}
|
||||
<!--{else}-->
|
||||
<input data-auto-none type="radio" name="status" value="{$k}"> {$v}
|
||||
<!--{/if}-->
|
||||
</label>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label layui-form-label label-required">消息类型</label>
|
||||
<div class="col-md-9">
|
||||
{foreach ['text'=>'文字','news'=>'图文','image'=>'图片','music'=>'音乐','video'=>'视频'] as $k=>$v}
|
||||
</div>
|
||||
<!--{else}-->
|
||||
<input type="hidden" name="keys" value="{$vo.keys|default=''}">
|
||||
<!--{/if}-->
|
||||
<div class="form-group">
|
||||
<label class="col-xs-2 control-label layui-form-label label-required">规则状态</label>
|
||||
<div class="col-xs-8">
|
||||
<div class="mt-radio-inline padding-bottom-0">
|
||||
{foreach ['1'=>'启用','0'=>'禁用'] as $k=>$v}
|
||||
<label class="think-radio">
|
||||
<!--{if (!isset($vo.type) and $k eq 'text') or (isset($vo.type) and$vo.type eq $k)}-->
|
||||
<input name="type" checked type="radio" value="{$k}"> {$v}
|
||||
<!--{if (!isset($vo.status) and $k eq '1') or (isset($vo.status) and $vo.status eq $k)}-->
|
||||
<input data-auto-none type="radio" checked name="status" value="{$k}"> {$v}
|
||||
<!--{else}-->
|
||||
<input name="type" type="radio" value="{$k}"> {$v}
|
||||
<input data-auto-none type="radio" name="status" value="{$k}"> {$v}
|
||||
<!--{/if}-->
|
||||
</label>
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='text'>
|
||||
<label class="col-md-2 control-label layui-form-label label-required">规则内容</label>
|
||||
<div class="col-md-9">
|
||||
<textarea name="content" maxlength="10000" class="form-control">{$vo.content|default='说点什么吧'|raw}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='news'>
|
||||
<label class="col-md-2 control-label layui-form-label">选取图文</label>
|
||||
<div class="col-md-9">
|
||||
<a class="btn btn-link" data-title="选择图文" data-iframe="{:url('wechat/news/select')}?field={:encode('news_id')}">选择图文</a>
|
||||
<input type="hidden" class='layui-input' value="{$vo.news_id|default=0}" name="news_id">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='image'>
|
||||
<label class="col-md-2 control-label layui-form-label label-required">图片地址</label>
|
||||
<div class="col-md-9">
|
||||
<input type="text" class="layui-input" onchange="$(this).nextAll('img').attr('src', this.value);"
|
||||
value="{$vo.image_url|default='http://plugs.ctolog.com/theme/default/img/image.png'}"
|
||||
name="image_url" required title="请上传图片或输入图片URL地址">
|
||||
<p class="help-block">文件最大2Mb,支持bmp/png/jpeg/jpg/gif格式</p>
|
||||
<img data-tips-image src='{$vo.image_url|default="http://plugs.ctolog.com/theme/default/img/image.png"}'>
|
||||
<a data-file="one" data-type="bmp,png,jpeg,jpg,gif" data-field="image_url" class='btn btn-link'>上传图片</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='voice'>
|
||||
<label class="col-md-2 control-label layui-form-label label-required">上传语音</label>
|
||||
<div class="col-md-9">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.voice_url|default=''}" name="voice_url" required title="请上传语音文件或输入语音URL地址 ">
|
||||
<a data-file="one" data-type="mp3,wma,wav,amr" data-field="voice_url" class="input-group-addon"><i class="fa fa-upload"></i></a>
|
||||
</div>
|
||||
<p class="help-block">文件最大2Mb,播放长度不超过60s,mp3/wma/wav/amr格式</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-2 control-label layui-form-label">音乐标题</label>
|
||||
<div class="col-md-9">
|
||||
<input class='layui-input' value="{$vo.music_title|default='音乐标题'}" name="music_title" required title="请输入音乐标题">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-2 control-label layui-form-label label-required">上传音乐</label>
|
||||
<div class="col-md-9">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.music_url|default=''}" name="music_url" required title="请上传音乐文件或输入音乐URL地址 ">
|
||||
<a data-file="one" data-type="mp3,wma,wav,amr" data-field="music_url" class="input-group-addon"><i class="fa fa-upload"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-2 control-label layui-form-label">音乐描述</label>
|
||||
<div class="col-md-9">
|
||||
<input name="music_desc" class="layui-input" value="{$vo.music_desc|default='音乐描述'|raw}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-2 control-label layui-form-label">音乐图片</label>
|
||||
<div class="col-md-9">
|
||||
<input onchange="$(this).nextAll('img').attr('src', this.value);" type="text" class="layui-input"
|
||||
value="{$vo.music_image|default='http://plugs.ctolog.com/theme/default/img/image.png'}"
|
||||
name="music_image" required title="请上传音乐图片或输入音乐图片URL地址 ">
|
||||
<p class="help-block">文件最大64KB,只支持JPG格式</p>
|
||||
<img data-tips-image src='{$vo.music_image|default="http://plugs.ctolog.com/theme/default/img/image.png"}'>
|
||||
<a data-file="one" data-type="jpg" data-field="music_image" class='btn btn-link'>上传图片</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-md-2 control-label layui-form-label">视频标题</label>
|
||||
<div class="col-md-9">
|
||||
<input class='layui-input' value="{$vo.video_title|default='视频标题'}" name="video_title" required title="请输入视频标题">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-md-2 control-label layui-form-label label-required">上传视频</label>
|
||||
<div class="col-md-9">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.video_url|default=''}" name="video_url" required title="请上传音乐视频或输入音乐视频URL地址 ">
|
||||
<a data-file="one" data-type="mp4" data-field="video_url" class="input-group-addon"><i class="fa fa-upload"></i></a>
|
||||
</div>
|
||||
<p class="help-block">文件最大10MB,只支持MP4格式</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-md-2 control-label layui-form-label">视频描述</label>
|
||||
<div class="col-md-9">
|
||||
<textarea name="video_desc" maxlength="50" class="form-control">{$vo.video_desc|default='视频描述'|raw}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-center padding-bottom-10" style="position:absolute;bottom:0;width:100%;">
|
||||
<div class="hr-line-dashed" style="margin:10px 0"></div>
|
||||
<button class="layui-btn menu-submit">保存数据</button>
|
||||
<!--{if !isset($vo.keys) || !in_array($vo.keys,['default','subscribe'])}-->
|
||||
<button data-cancel-edit class="layui-btn layui-btn-danger" type='button'>取消编辑</button>
|
||||
<!--{/if}-->
|
||||
</div>
|
||||
{if isset($vo['id'])}<input type='hidden' value='{$vo.id}' name='id'>{/if}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-xs-2 control-label layui-form-label label-required">消息类型</label>
|
||||
<div class="col-xs-8">
|
||||
{foreach ['text'=>'文字','news'=>'图文','image'=>'图片','music'=>'音乐','video'=>'视频'] as $k=>$v}
|
||||
<label class="think-radio">
|
||||
<!--{if (!isset($vo.type) and $k eq 'text') or (isset($vo.type) and$vo.type eq $k)}-->
|
||||
<input name="type" checked type="radio" value="{$k}"> {$v}
|
||||
<!--{else}-->
|
||||
<input name="type" type="radio" value="{$k}"> {$v}
|
||||
<!--{/if}-->
|
||||
</label>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='text'>
|
||||
<label class="col-xs-2 control-label layui-form-label label-required">规则内容</label>
|
||||
<div class="col-xs-8">
|
||||
<textarea name="content" maxlength="10000" class="form-control">{$vo.content|default='说点什么吧'|raw}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='news'>
|
||||
<label class="col-xs-2 control-label layui-form-label">选取图文</label>
|
||||
<div class="col-xs-8">
|
||||
<a class="btn btn-link" data-title="选择图文" data-iframe="{:url('wechat/news/select')}?field={:encode('news_id')}">选择图文</a>
|
||||
<input type="hidden" class='layui-input' value="{$vo.news_id|default=0}" name="news_id">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='image'>
|
||||
<label class="col-xs-2 control-label layui-form-label label-required">图片地址</label>
|
||||
<div class="col-xs-8">
|
||||
<input type="text" class="layui-input" onchange="$(this).nextAll('img').attr('src', this.value);"
|
||||
value="{$vo.image_url|default='http://plugs.ctolog.com/theme/default/img/image.png'}"
|
||||
name="image_url" required title="请上传图片或输入图片URL地址">
|
||||
<p class="help-block">文件最大2Mb,支持bmp/png/jpeg/jpg/gif格式</p>
|
||||
<img data-tips-image src='{$vo.image_url|default="http://plugs.ctolog.com/theme/default/img/image.png"}'>
|
||||
<a data-file="one" data-type="bmp,png,jpeg,jpg,gif" data-field="image_url" class='btn btn-link'>上传图片</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='voice'>
|
||||
<label class="col-xs-2 control-label layui-form-label label-required">上传语音</label>
|
||||
<div class="col-xs-8">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.voice_url|default=''}" name="voice_url" required title="请上传语音文件或输入语音URL地址 ">
|
||||
<a data-file="one" data-type="mp3,wma,wav,amr" data-field="voice_url" class="input-group-addon"><i class="fa fa-upload"></i></a>
|
||||
</div>
|
||||
<p class="help-block">文件最大2Mb,播放长度不超过60s,mp3/wma/wav/amr格式</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-xs-2 control-label layui-form-label">音乐标题</label>
|
||||
<div class="col-xs-8">
|
||||
<input class='layui-input' value="{$vo.music_title|default='音乐标题'}" name="music_title" required title="请输入音乐标题">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-xs-2 control-label layui-form-label label-required">上传音乐</label>
|
||||
<div class="col-xs-8">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.music_url|default=''}" name="music_url" required title="请上传音乐文件或输入音乐URL地址 ">
|
||||
<a data-file="one" data-type="mp3,wma,wav,amr" data-field="music_url" class="input-group-addon"><i class="fa fa-upload"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-xs-2 control-label layui-form-label">音乐描述</label>
|
||||
<div class="col-xs-8">
|
||||
<input name="music_desc" class="layui-input" value="{$vo.music_desc|default='音乐描述'|raw}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-xs-2 control-label layui-form-label">音乐图片</label>
|
||||
<div class="col-xs-8">
|
||||
<input onchange="$(this).nextAll('img').attr('src', this.value);" type="text" class="layui-input"
|
||||
value="{$vo.music_image|default='http://plugs.ctolog.com/theme/default/img/image.png'}"
|
||||
name="music_image" required title="请上传音乐图片或输入音乐图片URL地址 ">
|
||||
<p class="help-block">文件最大64KB,只支持JPG格式</p>
|
||||
<img data-tips-image src='{$vo.music_image|default="http://plugs.ctolog.com/theme/default/img/image.png"}'>
|
||||
<a data-file="one" data-type="jpg" data-field="music_image" class='btn btn-link'>上传图片</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-xs-2 control-label layui-form-label">视频标题</label>
|
||||
<div class="col-xs-8">
|
||||
<input class='layui-input' value="{$vo.video_title|default='视频标题'}" name="video_title" required title="请输入视频标题">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-xs-2 control-label layui-form-label label-required">上传视频</label>
|
||||
<div class="col-xs-8">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.video_url|default=''}" name="video_url" required title="请上传音乐视频或输入音乐视频URL地址 ">
|
||||
<a data-file="one" data-type="mp4" data-field="video_url" class="input-group-addon"><i class="fa fa-upload"></i></a>
|
||||
</div>
|
||||
<p class="help-block">文件最大10MB,只支持MP4格式</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-xs-2 control-label layui-form-label">视频描述</label>
|
||||
<div class="col-xs-8">
|
||||
<textarea name="video_desc" maxlength="50" class="form-control">{$vo.video_desc|default='视频描述'|raw}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-center padding-bottom-10" style="position:absolute;bottom:0;width:100%;">
|
||||
<div class="hr-line-dashed" style="margin:10px 0"></div>
|
||||
<button class="layui-btn menu-submit">保存数据</button>
|
||||
<!--{if !isset($vo.keys) || !in_array($vo.keys,['default','subscribe'])}-->
|
||||
<button data-cancel-edit class="layui-btn layui-btn-danger" type='button'>取消编辑</button>
|
||||
<!--{/if}-->
|
||||
</div>
|
||||
{if isset($vo['id'])}<input type='hidden' value='{$vo.id}' name='id'>{/if}
|
||||
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
@ -209,42 +180,42 @@
|
||||
{block name="script"}
|
||||
<script>
|
||||
|
||||
$(function () {
|
||||
$(function (){
|
||||
|
||||
var $body = $('body');
|
||||
|
||||
/*! 取消编辑 */
|
||||
$('[data-cancel-edit]').on('click', function () {
|
||||
var dialogIndex = $.msg.confirm('确定取消编辑吗?', function () {
|
||||
$('[data-cancel-edit]').on('click', function (){
|
||||
var dialogIndex = $.msg.confirm('确定取消编辑吗?', function (){
|
||||
history.back();
|
||||
$.msg.close(dialogIndex);
|
||||
});
|
||||
});
|
||||
|
||||
/*! 刷新预览显示 */
|
||||
function showReview(params) {
|
||||
$('#phone-preview').attr('src', '{:url("@wechat/review")}?' + $.param(params || {}));
|
||||
function showReview(params){
|
||||
$('#phone-preview').attr('src', '{:url("@wechat/review")}?' + $.param(params ||{}));
|
||||
}
|
||||
|
||||
// 图文显示预览
|
||||
$body.off('change', '[name="news_id"]').on('change', '[name="news_id"]', function () {
|
||||
showReview({type: 'news', content: this.value});
|
||||
$body.off('change', '[name="news_id"]').on('change', '[name="news_id"]', function (){
|
||||
showReview({type:'news', content:this.value});
|
||||
});
|
||||
|
||||
// 文字显示预览
|
||||
$body.off('change', '[name="content"]').on('change', '[name="content"]', function () {
|
||||
showReview({type: 'text', content: this.value});
|
||||
$body.off('change', '[name="content"]').on('change', '[name="content"]', function (){
|
||||
showReview({type:'text', content:this.value});
|
||||
});
|
||||
|
||||
// 图片显示预览
|
||||
$body.off('change', '[name="image_url"]').on('change', '[name="image_url"]', function () {
|
||||
showReview({type: 'image', content: this.value});
|
||||
$body.off('change', '[name="image_url"]').on('change', '[name="image_url"]', function (){
|
||||
showReview({type:'image', content:this.value});
|
||||
});
|
||||
|
||||
// 音乐显示预览
|
||||
var musicSelector = '[name="music_url"],[name="music_title"],[name="music_desc"],[name="music_image"]';
|
||||
$body.off('change', musicSelector).on('change', musicSelector, function () {
|
||||
var params = {type: 'music'}, $parent = $(this).parents('form');
|
||||
$body.off('change', musicSelector).on('change', musicSelector, function (){
|
||||
var params ={type:'music'}, $parent = $(this).parents('form');
|
||||
params.title = $parent.find('[name="music_title"]').val();
|
||||
params.url = $parent.find('[name="music_url"]').val();
|
||||
params.image = $parent.find('[name="music_image"]').val();
|
||||
@ -254,8 +225,8 @@
|
||||
|
||||
// 视频显示预览
|
||||
var videoSelector = '[name="video_title"],[name="video_url"],[name="video_desc"]';
|
||||
$body.off('change', videoSelector).on('change', videoSelector, function () {
|
||||
var params = {type: 'video'}, $parent = $(this).parents('form');
|
||||
$body.off('change', videoSelector).on('change', videoSelector, function (){
|
||||
var params ={type:'video'}, $parent = $(this).parents('form');
|
||||
params.title = $parent.find('[name="video_title"]').val();
|
||||
params.url = $parent.find('[name="video_url"]').val();
|
||||
params.desc = $parent.find('[name="video_desc"]').val();
|
||||
@ -263,11 +234,11 @@
|
||||
});
|
||||
|
||||
/*! 默认类型事件 */
|
||||
$body.off('click', 'input[name=type]').on('click', 'input[name=type]', function () {
|
||||
$body.off('click', 'input[name=type]').on('click', 'input[name=type]', function (){
|
||||
var value = $(this).val(), $form = $(this).parents('form');
|
||||
var $current = $form.find('[data-keys-type="' + value + '"]').removeClass('hide');
|
||||
$form.find('[data-keys-type]').not($current).addClass('hide');
|
||||
switch (value) {
|
||||
switch (value){
|
||||
case 'news':
|
||||
return $('[name="news_id"]').trigger('change');
|
||||
case 'text':
|
||||
@ -284,7 +255,7 @@
|
||||
});
|
||||
|
||||
// 默认事件触发
|
||||
$('input[name=type]:checked').map(function () {
|
||||
$('input[name=type]:checked').map(function (){
|
||||
$(this).trigger('click');
|
||||
});
|
||||
});
|
||||
|
@ -14,9 +14,9 @@
|
||||
|
||||
{block name='content'}
|
||||
<form onsubmit="return false;" data-auto="true" action="{:request()->url()}" method="post">
|
||||
{if empty($list)}
|
||||
<!--{if empty($list)}-->
|
||||
<p class="help-block text-center well">没 有 记 录 哦!</p>
|
||||
{else}
|
||||
<!--{else}-->
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<thead>
|
||||
@ -94,7 +94,7 @@
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page|raw}</p>{/if}
|
||||
{/if}
|
||||
<!--{/if}-->
|
||||
</form>
|
||||
|
||||
{/block}
|
||||
|
@ -2,22 +2,18 @@
|
||||
|
||||
{block name="style"}
|
||||
<style>
|
||||
.mobile-preview {
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.menu-editor {
|
||||
left: 317px;
|
||||
display: block;
|
||||
max-width: 500px;
|
||||
width: 500px;
|
||||
height: 580px;
|
||||
display: block;
|
||||
max-width: 500px;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
border-color: #e7e7eb;
|
||||
}
|
||||
|
||||
.menu-editor textarea:active, .menu-editor textarea:focus {
|
||||
box-shadow: none
|
||||
}
|
||||
|
||||
@ -30,19 +26,24 @@
|
||||
margin-top: 0
|
||||
}
|
||||
|
||||
.menu-delete {
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
.menu-editor textarea, .menu-editor input[type=text] {
|
||||
border-radius: 0
|
||||
}
|
||||
|
||||
.menu-submit {
|
||||
margin-right: 10px
|
||||
.menu-editor .menu-item-deleted {
|
||||
font-weight: 400;
|
||||
font-size: 12px
|
||||
}
|
||||
|
||||
.menu-submit-container {
|
||||
width: 780px;
|
||||
padding-top: 40px
|
||||
}
|
||||
</style>
|
||||
{/block}
|
||||
|
||||
{block name='content'}
|
||||
<div class='mobile-preview pull-left'>
|
||||
<div class='mobile-preview pull-left notselect'>
|
||||
<div class='mobile-header'>公众号</div>
|
||||
<div class='mobile-body'></div>
|
||||
<ul class='mobile-footer'>
|
||||
@ -80,9 +81,7 @@
|
||||
<div class="arrow"></div>
|
||||
<h3 class="popover-title">
|
||||
菜单名称
|
||||
{if auth("$classuri/edit")}
|
||||
<a class="pull-right menu-delete">删除</a>
|
||||
{/if}
|
||||
{if auth("$classuri/edit")}<a class="pull-right menu-item-deleted">删除</a>{/if}
|
||||
</h3>
|
||||
<div class="popover-content menu-content"></div>
|
||||
</div>
|
||||
@ -91,7 +90,7 @@
|
||||
<div class="hide menu-editor-parent-tpl">
|
||||
<form class="form-horizontal">
|
||||
<p class="help-block text-center">已添加子菜单,仅可设置菜单名称。</p>
|
||||
<div class="form-group" style="margin-top:50px">
|
||||
<div class="form-group margin-top-20">
|
||||
<label class="col-xs-3 control-label">菜单名称</label>
|
||||
<div class="col-xs-8">
|
||||
<input name="menu-name" class="layui-input block">
|
||||
@ -103,46 +102,46 @@
|
||||
|
||||
<div class="hide menu-editor-content-tpl">
|
||||
<form class="form-horizontal">
|
||||
<div class="form-group" style="margin-top:50px">
|
||||
<label class="col-xs-3 control-label">菜单名称</label>
|
||||
<div class="form-group margin-top-20">
|
||||
<label class="col-xs-3 control-label label-required">菜单名称</label>
|
||||
<div class="col-xs-8">
|
||||
<input name="menu-name" class="layui-input">
|
||||
<span class="help-block m-b-none">字数不超过13个汉字或40个字母</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" style="margin-top:30px">
|
||||
<label class="col-xs-3 control-label">菜单内容</label>
|
||||
<div class="form-group margin-top-20">
|
||||
<label class="col-xs-3 control-label label-required">菜单内容</label>
|
||||
<div class="col-xs-8">
|
||||
<div class="row">
|
||||
<label class="col-xs-5 font-noraml">
|
||||
<div class="row padding-top-5">
|
||||
<label class="col-xs-5 margin-bottom-10 pointer">
|
||||
<input class="cuci-radio" type="radio" name="menu-type" value="text"> 文字消息
|
||||
</label>
|
||||
<label class="col-xs-5 font-noraml">
|
||||
<label class="col-xs-5 margin-bottom-10 pointer">
|
||||
<input class="cuci-radio" type="radio" name="menu-type" value="keys"> 关键字
|
||||
</label>
|
||||
<label class="col-xs-5 font-noraml">
|
||||
<label class="col-xs-5 margin-bottom-10 pointer">
|
||||
<input class="cuci-radio" type="radio" name="menu-type" value="view"> 跳转网页
|
||||
</label>
|
||||
<label class="col-xs-5 font-noraml">
|
||||
<label class="col-xs-5 margin-bottom-10 pointer">
|
||||
<input class="cuci-radio" type="radio" name="menu-type" value="event"> 事件功能
|
||||
</label>
|
||||
<label class="col-xs-5 font-noraml">
|
||||
<label class="col-xs-5 margin-bottom-10 pointer">
|
||||
<input class="cuci-radio" type="radio" name="menu-type" value="miniprogram"> 小程序
|
||||
</label>
|
||||
<label class="col-xs-5 font-noraml">
|
||||
<label class="col-xs-5 margin-bottom-10 pointer">
|
||||
<input class="cuci-radio" type="radio" name="menu-type" value="customservice"> 多客服
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" style="margin-top:30px">
|
||||
<div class="form-group margin-top-20">
|
||||
<div class="col-xs-10 col-xs-offset-1 editor-content-input"></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div style="clear:both"></div>
|
||||
<div class="text-center" style="width:780px;padding-top:40px">
|
||||
<div class="text-center menu-submit-container">
|
||||
<!--{if auth("$classuri/edit")}-->
|
||||
<button class="layui-btn menu-submit">保存发布</button>
|
||||
<!--{/if}-->
|
||||
@ -163,7 +162,7 @@
|
||||
self.$btn = $(this);
|
||||
self.$btn.parent('li').hasClass('menu-add') ? self.add() : self.checkShow();
|
||||
}).find('li:first a:first').trigger('click');
|
||||
$('.menu-delete').on('click', function () {
|
||||
$('.menu-item-deleted').on('click', function () {
|
||||
var dialogIndex = $.msg.confirm('删除后菜单下设置的内容将被删除!', function () {
|
||||
self.del(), $.msg.close(dialogIndex);
|
||||
});
|
||||
@ -275,7 +274,7 @@
|
||||
'location_select': '弹出地理位置选择器'
|
||||
};
|
||||
var select = [];
|
||||
var tpl = '<div><label class="font-noraml"><input class="cuci-radio" name="content" type="radio" {checked} value="{value}"> {title}</label></div>';
|
||||
var tpl = '<p class="margin-bottom-10"><label class="font-noraml pointer"><input class="cuci-radio" name="content" type="radio" {checked} value="{value}"> {title}</label></p>';
|
||||
if (!(options[content] || false)) {
|
||||
(content = 'scancode_push'), $span.data('content', content);
|
||||
}
|
||||
@ -318,6 +317,7 @@
|
||||
}
|
||||
});
|
||||
$.form.load('{:url("$classuri/edit")}', {data: data}, 'post');
|
||||
|
||||
function getdata($span) {
|
||||
var menudata = {};
|
||||
menudata.name = $span.text();
|
||||
|
@ -37,8 +37,8 @@
|
||||
<div class="form-group">
|
||||
<div class="col-md-12">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon">标 题</span>
|
||||
<input maxlength="64" required title="标题不能为空哦" placeholder="请在这里输入标题" name='title' class="layui-input">
|
||||
<span class="input-group-addon">文章标题</span>
|
||||
<input maxlength="64" required title="文章的标题不能为空哦" placeholder="请在这里输入标题" name='title' class="layui-input">
|
||||
<input type="hidden" name="id">
|
||||
</div>
|
||||
</div>
|
||||
@ -47,34 +47,32 @@
|
||||
<div class="form-group">
|
||||
<div class="col-md-12">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon">作 者</span>
|
||||
<input maxlength="8" required title="作者不能为空哦" placeholder="请输入作者" name='author' class="layui-input">
|
||||
<span class="input-group-addon">文章作者</span>
|
||||
<input maxlength="8" required title="文章的作者不能为空哦" placeholder="请输入作者" name='author' class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-md-12">
|
||||
<div class="form-control" style="height:auto">
|
||||
<label class="color-desc">图文封面大图片设置</label>
|
||||
<div class="form-control border-radius-none" style="height:auto">
|
||||
<label class="color-desc font-s12 margin-bottom-5">图文封面大图片设置</label>
|
||||
<div class="row nowrap">
|
||||
<div class="col-xs-3" style="width:160px">
|
||||
<div class="upload-image-box transition">
|
||||
<input value="__STATIC__/plugs/uploader/theme/image.png" type="hidden" name="local_url">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<div class="col-xs-6 padding-top-10">
|
||||
<button type="button" data-title="上传图片" data-file="one" data-type="jpg,png,jpeg" data-field="local_url" class="layui-btn layui-btn-sm layui-btn-primary">上传图片</button>
|
||||
<button type="button" data-title="选择图片" data-iframe='{:url("image")}?field=local_url' class="layui-btn layui-btn-sm layui-btn-primary">选择图片</button>
|
||||
<br>
|
||||
<a data-file="one" data-type="jpg,png,jpeg" data-field="local_url" class="btn btn-sm">上传图片</a>
|
||||
<a data-title="选择图片" data-iframe='{:url("image")}?field=local_url' class="btn btn-sm">选择图片</a>
|
||||
<br><br>
|
||||
<label class="magin-left-0 padding-left-0">
|
||||
<input data-auto-none type="checkbox" value="1" name="show_cover_pic">
|
||||
在正文显示此图片
|
||||
<label class="think-checkbox notselect margin-top-15">
|
||||
<input data-auto-none type="checkbox" value="1" name="show_cover_pic"> 在正文中显示此图片
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<p class="help-block margin-top-10 color-desc">封面大图片建议尺寸:900像素 * 500像素</p>
|
||||
<p class="help-block margin-top-5 color-desc">封面大图片建议尺寸:900像素 * 500像素</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -91,9 +89,8 @@
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-md-12">
|
||||
<label style="display:block"><span class="color-desc">原文链接<b>选填</b>,填写之后在图文左下方会出现此链接</span>
|
||||
<input maxlength="200" name='content_source_url' class="layui-input">
|
||||
</label>
|
||||
<label class="color-desc">原文链接<b>选填</b>,填写之后在图文左下方会出现此链接</label>
|
||||
<input maxlength="200" name='content_source_url' class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-actions">
|
||||
@ -127,7 +124,7 @@
|
||||
|
||||
/*! 默认编辑第一篇图文 */
|
||||
editor = window.createEditor('[name="content"]');
|
||||
$form.validate();
|
||||
$form.vali();
|
||||
|
||||
/*! 上传图片 */
|
||||
$body.on('change', '.upload-image-box input', function () {
|
||||
@ -335,7 +332,6 @@
|
||||
}
|
||||
|
||||
.news-right .upload-image-box {
|
||||
margin: 5px;
|
||||
width: 130px;
|
||||
height: 90px;
|
||||
background-size: cover;
|
||||
|
@ -27,7 +27,7 @@
|
||||
<div class="aui-chat-header"><span class="time">{:date('H:i')}</span></div>
|
||||
<div class="aui-chat-item aui-chat-left">
|
||||
<div class="aui-chat-media">
|
||||
<img style="min-width:42px;display:inline-block;" src="http://plugs.ctolog.com/theme/default/img/head.gif"/>
|
||||
<img style="border-radius:50%;border:1px solid #ccc;min-width:42px;display:inline-block;" src="__STATIC__/theme/img/headimg.png"/>
|
||||
</div>
|
||||
<div class="aui-chat-inner">
|
||||
{if $type eq 'text'}
|
||||
@ -40,7 +40,7 @@
|
||||
<div class="aui-chat-content bg-white">
|
||||
<div class="aui-chat-arrow one"></div>
|
||||
<div class="aui-chat-arrow two"></div>
|
||||
<img src='{$content|default="http://plugs.ctolog.com/default/img/image.png"}'/>
|
||||
<img src='{$content|default="__STATIC__/theme/img/image.png"}'/>
|
||||
</div>
|
||||
{elseif $type eq 'music'}
|
||||
<div class="aui-chat-content" style='background:#080'>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-box modal-form-box" action="{:request()->url()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">标签名称</label>
|
||||
|
@ -1,9 +1,8 @@
|
||||
:: Composer 安装更新脚本
|
||||
@echo off
|
||||
title Composer Plugs Install And Optimize
|
||||
title Composer Plugs Update and Optimize
|
||||
echo.
|
||||
echo ========= 1. 清理已安装插件 =========
|
||||
rmdir /s/q vendor thinkphp runtime
|
||||
@rmdir /s/q vendor thinkphp
|
||||
echo.
|
||||
echo ========= 2. 下载并安装插件 =========
|
||||
composer update --profile --prefer-dist --optimize-autoloader
|
||||
|
37
build.sh
Normal file
37
build.sh
Normal file
@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
||||
LANG=en_US.UTF-8
|
||||
|
||||
export PATH
|
||||
|
||||
echo "
|
||||
+----------------------------------------------------------------------
|
||||
| ThinkAdmin environmental preparation tools
|
||||
+----------------------------------------------------------------------
|
||||
| GtiHub : https://github.com/zoujingli/ThinkAdmin
|
||||
+----------------------------------------------------------------------
|
||||
| document : https://www.kancloud.cn/zoujingli/thinkadmin/323614
|
||||
+----------------------------------------------------------------------
|
||||
"
|
||||
|
||||
hasComposer=`command -v composer`
|
||||
|
||||
echo -e "\033[34mConfirm the existence of the command....\033[0m"
|
||||
|
||||
if [ ! -f "${hasComposer}" ]; then
|
||||
echo -e "\033[31mComposer Not Found! Initialization cannot continue. \033[0m"
|
||||
exit
|
||||
fi
|
||||
|
||||
echo -e "\033[34mClean up the running environment....\033[0m"
|
||||
rm -rf ./vendor
|
||||
rm -rf ./thinkphp
|
||||
rm -rf ./composer.lock
|
||||
|
||||
echo -e "\033[34mComposer install....\033[0m"
|
||||
composer install --profile --prefer-dist --optimize-autoloader
|
||||
|
||||
echo -e "\033[34mMake Autoload....\033[0m"
|
||||
composer dump-autoload --optimize
|
||||
|
||||
echo -e "\033[31mEnvironmental preparation success!\033[0m"
|
@ -17,7 +17,7 @@
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.6.0",
|
||||
"endroid/qrcode": "^1.9",
|
||||
"endroid/qr-code": "^1.9",
|
||||
"topthink/framework": "5.1.*",
|
||||
"zoujingli/ip2region": "dev-master",
|
||||
"aliyuncs/oss-sdk-php": "^2.2",
|
||||
|
@ -38,7 +38,7 @@ return [
|
||||
// 是否开启多语言
|
||||
'lang_switch_on' => false,
|
||||
// 默认全局过滤方法 用逗号分隔多个
|
||||
'default_filter' => 'htmlentities,trim',
|
||||
'default_filter' => 'trim',
|
||||
// 默认语言
|
||||
'default_lang' => 'zh-cn',
|
||||
// 应用类库后缀
|
||||
@ -72,7 +72,7 @@ return [
|
||||
// URL普通方式参数 用于自动生成
|
||||
'url_common_param' => false,
|
||||
// URL参数方式 0 按名称成对解析 1 按顺序解析
|
||||
'url_param_type' => 0,
|
||||
'url_param_type' => 1,
|
||||
// 路由使用完整匹配
|
||||
'route_complete_match' => false,
|
||||
// 是否强制使用路由
|
||||
|
@ -13,5 +13,5 @@
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
return [
|
||||
'service_url' => 'http://service.thinkadmin.top',
|
||||
'service_url' => 'https://service.thinkadmin.top',
|
||||
];
|
@ -100,7 +100,7 @@ class BasicAdmin extends Controller
|
||||
foreach ($this->request->post() as $key => $value) {
|
||||
if (preg_match('/^_\d{1,}$/', $key) && preg_match('/^\d{1,}$/', $value)) {
|
||||
list($where, $update) = [['id' => trim($key, '_')], ['sort' => $value]];
|
||||
if (false === Db::name($db->getTable())->where($where)->update($update)) {
|
||||
if (false === Db::table($db->getTable())->where($where)->update($update)) {
|
||||
$this->error('列表排序失败, 请稍候再试');
|
||||
}
|
||||
}
|
||||
|
@ -77,10 +77,10 @@ class DataService
|
||||
{
|
||||
$db = is_string($dbQuery) ? Db::name($dbQuery) : $dbQuery;
|
||||
$where[] = [$key, 'eq', isset($data[$key]) ? $data[$key] : ''];
|
||||
if (Db::name($db->getTable())->where($where)->count() > 0) {
|
||||
return Db::name($db->getTable())->strict(false)->where($where)->update($data) !== false;
|
||||
if (Db::table($db->getTable())->where($where)->count() > 0) {
|
||||
return Db::table($db->getTable())->strict(false)->where($where)->update($data) !== false;
|
||||
}
|
||||
return Db::name($db->getTable())->strict(false)->insert($data) !== false;
|
||||
return Db::table($db->getTable())->strict(false)->insert($data) !== false;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -101,12 +101,12 @@ class DataService
|
||||
// 删除模式,如果存在 is_deleted 字段使用软删除
|
||||
if ($field === 'delete') {
|
||||
if (method_exists($db, 'getTableFields') && in_array('is_deleted', $db->getTableFields())) {
|
||||
return Db::name($table)->where($where)->update(['is_deleted' => '1']) !== false;
|
||||
return Db::table($table)->where($where)->update(['is_deleted' => '1']) !== false;
|
||||
}
|
||||
return Db::name($table)->where($where)->delete() !== false;
|
||||
return Db::table($table)->where($where)->delete() !== false;
|
||||
}
|
||||
// 更新模式,更新指定字段内容
|
||||
return Db::name($table)->where($where)->update([$field => $value]) !== false;
|
||||
return Db::table($table)->where($where)->update([$field => $value]) !== false;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -121,7 +121,7 @@ class ToolsService
|
||||
$attr[$path] = "{$ppath}-{$attr[$id]}";
|
||||
$attr['sub'] = isset($attr['sub']) ? $attr['sub'] : [];
|
||||
$attr['spt'] = substr_count($ppath, '-');
|
||||
$attr['spl'] = str_repeat(" ├ ", $attr['spt']);
|
||||
$attr['spl'] = str_repeat(" ├ ", $attr['spt']);
|
||||
$sub = $attr['sub'];
|
||||
unset($attr['sub']);
|
||||
$tree[] = $attr;
|
||||
@ -151,4 +151,49 @@ class ToolsService
|
||||
return $ids;
|
||||
}
|
||||
|
||||
/**
|
||||
* 写入CSV文件头部
|
||||
* @param string $filename 导出文件
|
||||
* @param array $headers CSV 头部(一级数组)
|
||||
*/
|
||||
public static function setCsvHeader($filename, array $headers)
|
||||
{
|
||||
header('Content-Type: application/octet-stream');
|
||||
header("Content-Disposition: attachment; filename=" . iconv('utf-8', 'gbk//TRANSLIT', $filename));
|
||||
echo @iconv('utf-8', 'gbk//TRANSLIT', "\"" . implode('","', $headers) . "\"\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* 写入CSV文件内容
|
||||
* @param array $list 数据列表(二维数组或多维数组)
|
||||
* @param array $rules 数据规则(一维数组)
|
||||
*/
|
||||
public static function setCsvBody(array $list, array $rules)
|
||||
{
|
||||
foreach ($list as $data) {
|
||||
$rows = [];
|
||||
foreach ($rules as $rule) {
|
||||
$item = self::parseKeyDot($data, $rule);
|
||||
$rows[] = $item === $data ? '' : $item;
|
||||
}
|
||||
echo @iconv('utf-8', 'gbk//TRANSLIT', "\"" . implode('","', $rows) . "\"\n");
|
||||
flush();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据数组key查询(可带点规则)
|
||||
* @param array $data 数据
|
||||
* @param string $rule 规则,如: order.order_no
|
||||
* @return mixed
|
||||
*/
|
||||
private static function parseKeyDot(array $data, $rule)
|
||||
{
|
||||
list($temp, $attr) = [$data, explode('.', trim($rule, '.'))];
|
||||
while ($key = array_shift($attr)) {
|
||||
$temp = isset($temp[$key]) ? $temp[$key] : $temp;
|
||||
}
|
||||
return (is_string($temp) || is_numeric($temp)) ? str_replace('"', '""', "\t{$temp}") : '';
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
namespace service;
|
||||
|
||||
use app\wechat\service\FansService;
|
||||
use think\Exception;
|
||||
|
||||
/**
|
||||
* 微信数据服务
|
||||
@ -40,8 +41,8 @@ use app\wechat\service\FansService;
|
||||
* @method \WeChat\Template template() static 模板消息
|
||||
* @method \WeChat\User user() static 微信粉丝管理
|
||||
* @method \WeChat\Wifi wifi() static 门店WIFI管理
|
||||
* @method void wechat static 第三方微信工具
|
||||
* @method void config static 第三方配置工具
|
||||
* @method void wechat() static 第三方微信工具
|
||||
* @method void config() static 第三方配置工具
|
||||
*/
|
||||
class WechatService
|
||||
{
|
||||
@ -49,44 +50,130 @@ class WechatService
|
||||
/**
|
||||
* 获取微信实例ID
|
||||
* @param string $name 实例对象名称
|
||||
* @return SoapService
|
||||
* @return SoapService|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function instance($name)
|
||||
{
|
||||
list($appid, $appkey) = [sysconf('wechat_appid'), sysconf('wechat_appkey')];
|
||||
$token = strtolower("{$name}-{$appid}-{$appkey}");
|
||||
$location = config('wechat.service_url') . "/wechat/api.client/soap/param/{$token}.html";
|
||||
$params = ['uri' => strtolower($name), 'location' => $location, 'trace' => true];
|
||||
return new SoapService(null, $params);
|
||||
switch (strtolower(sysconf('wechat_type'))) {
|
||||
case 'api':
|
||||
$config = [
|
||||
'token' => sysconf('wechat_token'),
|
||||
'appid' => sysconf('wechat_appid'),
|
||||
'appsecret' => sysconf('wechat_appsecret'),
|
||||
'encodingaeskey' => sysconf('wechat_encodingaeskey'),
|
||||
'mch_id' => sysconf('wechat_mch_id'),
|
||||
'mch_key' => sysconf('wechat_partnerkey'),
|
||||
'ssl_cer' => sysconf('wechat_cert_cert'),
|
||||
'ssl_key' => sysconf('wechat_cert_key'),
|
||||
'cachepath' => env('cache_path') . 'wechat' . DIRECTORY_SEPARATOR,
|
||||
];
|
||||
$class = '\\WeChat\\' . ucfirst(strtolower($name));
|
||||
if (class_exists($class)) {
|
||||
return new $class($config);
|
||||
}
|
||||
throw new Exception("Class '{$class}' not found");
|
||||
case 'thr':
|
||||
default:
|
||||
list($appid, $appkey) = [sysconf('wechat_thr_appid'), sysconf('wechat_thr_appkey')];
|
||||
$token = strtolower("{$name}-{$appid}-{$appkey}");
|
||||
$location = config('wechat.service_url') . "/wechat/api.client/soap/{$token}.html";
|
||||
$params = ['uri' => strtolower($name), 'location' => $location, 'trace' => true];
|
||||
return new SoapService(null, $params);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取微信网页JSSDK
|
||||
* @param null|string $url JS签名地址
|
||||
* @return array
|
||||
* @throws Exception
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function webJsSDK($url = null)
|
||||
{
|
||||
switch (strtolower(sysconf('wechat_type'))) {
|
||||
case 'api':
|
||||
return WechatService::script()->getJsSign(is_null($url) ? app('request')->url(true) : $url);
|
||||
case 'thr':
|
||||
default:
|
||||
return WechatService::wechat()->jsSign(is_null($url) ? app('request')->url(true) : $url);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化进入授权
|
||||
* @param string $url 授权页面URL地址
|
||||
* @param int $fullMode 授权公众号模式
|
||||
* @param bool $isRedirect 是否进行跳转
|
||||
* @return array
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function webOauth($fullMode = 0)
|
||||
public static function webOauth($url, $fullMode = 0, $isRedirect = true)
|
||||
{
|
||||
$appid = sysconf('wechat_appid');
|
||||
$appid = self::getAppid();
|
||||
list($openid, $fansinfo) = [session("{$appid}_openid"), session("{$appid}_fansinfo")];
|
||||
if ((empty($fullMode) && !empty($openid)) || (!empty($fullMode) && !empty($fansinfo))) {
|
||||
empty($fansinfo) || FansService::set($fansinfo);
|
||||
return ['openid' => $openid, 'fansinfo' => $fansinfo];
|
||||
}
|
||||
$service = self::instance('wechat');
|
||||
$result = $service->oauth(session_id(), request()->url(true), $fullMode);
|
||||
session("{$appid}_openid", $openid = $result['openid']);
|
||||
session("{$appid}_fansinfo", $fansinfo = $result['fans']);
|
||||
if ((empty($fullMode) && !empty($openid)) || (!empty($fullMode) && !empty($fansinfo))) {
|
||||
empty($fansinfo) || FansService::set($fansinfo);
|
||||
return ['openid' => $openid, 'fansinfo' => $fansinfo];
|
||||
switch (strtolower(sysconf('wechat_type'))) {
|
||||
case 'api':
|
||||
$wechat = self::oauth();
|
||||
if (request()->get('state') !== $appid) {
|
||||
$snsapi = empty($fullMode) ? 'snsapi_base' : 'snsapi_userinfo';
|
||||
$param = (strpos($url, '?') !== false ? '&' : '?') . 'rcode=' . encode($url);
|
||||
$OauthUrl = $wechat->getOauthRedirect($url . $param, $appid, $snsapi);
|
||||
$isRedirect && redirect($OauthUrl, [], 301)->send();
|
||||
exit("window.location.href='{$OauthUrl}'");
|
||||
}
|
||||
$token = $wechat->getOauthAccessToken();
|
||||
if (isset($token['openid'])) {
|
||||
session("{$appid}_openid", $openid = $token['openid']);
|
||||
if (empty($fullMode) && request()->get('rcode')) {
|
||||
redirect(decode(request()->get('rcode')))->send();
|
||||
}
|
||||
session("{$appid}_fansinfo", $fansinfo = $wechat->getUserInfo($token['access_token'], $openid));
|
||||
empty($fansinfo) || FansService::set($fansinfo);
|
||||
}
|
||||
redirect(decode(request()->get('rcode')))->send();
|
||||
break;
|
||||
case 'thr':
|
||||
default:
|
||||
$service = self::wechat();
|
||||
$result = $service->oauth(session_id(), $url, $fullMode);
|
||||
session("{$appid}_openid", $openid = $result['openid']);
|
||||
session("{$appid}_fansinfo", $fansinfo = $result['fans']);
|
||||
if ((empty($fullMode) && !empty($openid)) || (!empty($fullMode) && !empty($fansinfo))) {
|
||||
empty($fansinfo) || FansService::set($fansinfo);
|
||||
return ['openid' => $openid, 'fansinfo' => $fansinfo];
|
||||
}
|
||||
if ($isRedirect && !empty($result['url'])) {
|
||||
redirect($result['url'], [], 301)->send();
|
||||
}
|
||||
exit("window.location.href='{$result['url']}'");
|
||||
}
|
||||
if (!empty($result['url'])) {
|
||||
redirect($result['url'], [], 301)->send();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取当前公众号的AppId
|
||||
* @return bool|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function getAppid()
|
||||
{
|
||||
switch (strtolower(sysconf('wechat_type'))) {
|
||||
case 'api':
|
||||
return sysconf('wechat_appid');
|
||||
case 'thr':
|
||||
return sysconf('wechat_thr_appid');
|
||||
default:
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
use think\facade\Route;
|
||||
|
||||
/* 去除下面注释可启用禁用功能 */
|
||||
// return [];
|
||||
return [];
|
||||
|
||||
/* 测试环境禁止操作路由绑定 */
|
||||
Route::post('admin/user/pass', function () {
|
||||
|
433
static/admin.js
433
static/admin.js
@ -117,7 +117,7 @@ $(function () {
|
||||
this.errMsg = '{status}服务器繁忙,请稍候再试!';
|
||||
// 内容区域动态加载后初始化
|
||||
this.reInit = function ($container) {
|
||||
$.validate.listen.call(this), JPlaceHolder.init();
|
||||
$.vali.listen(this), JPlaceHolder.init();
|
||||
$container.find('[required]').parent().prevAll('label').addClass('label-required');
|
||||
};
|
||||
// 在内容区显示视图
|
||||
@ -169,7 +169,7 @@ $(function () {
|
||||
return false;
|
||||
}
|
||||
if (typeof (res) === 'object') {
|
||||
return $.msg.auto(res, time);
|
||||
return $.msg.auto(res, time || res.wait || undefined);
|
||||
}
|
||||
self.show(res);
|
||||
}
|
||||
@ -214,221 +214,6 @@ $(function () {
|
||||
};
|
||||
};
|
||||
|
||||
// 上传单个图片
|
||||
$.fn.uploadOneImage = function () {
|
||||
var name = $(this).attr('name') || 'image';
|
||||
var type = $(this).data('type') || 'png,jpg';
|
||||
var $tpl = $('<a data-file="one" data-field="' + name + '" data-type="' + type + '" class="uploadimage"></a>');
|
||||
$(this).hide().attr('name', name).after($tpl).on('change', function () {
|
||||
$tpl.get(0).style = this.value ? 'background-image:url(' + this.value + ')' : '';
|
||||
}).trigger('change');
|
||||
};
|
||||
|
||||
// 上传多个图片
|
||||
$.fn.uploadMultipleImage = function () {
|
||||
var type = $(this).data('type') || 'png,jpg';
|
||||
var name = $(this).attr('name') || 'umt-image';
|
||||
var $tpl = $('<a data-file="mut" data-field="' + name + '" data-type="' + type + '" class="uploadimage"></a>');
|
||||
$(this).hide().attr('name', name).after($tpl).on('change', function () {
|
||||
var input = this, values = [], srcs = this.value.split('|');
|
||||
$(this).prevAll('.uploadimage').map(function () {
|
||||
values.push($(this).attr('data-tips-image'));
|
||||
}), $(this).prevAll('.uploadimage').remove(), values.reverse();
|
||||
for (var i in srcs) {
|
||||
srcs[i] && values.push(srcs[i]);
|
||||
}
|
||||
this.value = values.join('|');
|
||||
for (var i in values) {
|
||||
var tpl = '<div class="uploadimage uploadimagemtl"><a class="layui-icon">ဆ</a></div>';
|
||||
var $tpl = $(tpl).attr('data-tips-image', values[i]).css('backgroundImage', 'url(' + values[i] + ')');
|
||||
$tpl.data('input', input).data('srcs', values).data('index', i);
|
||||
$tpl.on('click', 'a', function (e) {
|
||||
e.stopPropagation();
|
||||
var $cur = $(this).parent();
|
||||
var dialogIndex = $.msg.confirm('确定要移除这张图片吗?', function () {
|
||||
var data = $cur.data('srcs'), tmp = [];
|
||||
for (var i in data) {
|
||||
i !== $cur.data('index') && tmp.push(data[i]);
|
||||
}
|
||||
$cur.data('input').value = tmp.join('|');
|
||||
$cur.remove(), $.msg.close(dialogIndex);
|
||||
});
|
||||
})
|
||||
$(this).before($tpl);
|
||||
}
|
||||
}).trigger('change');
|
||||
};
|
||||
|
||||
// 注册对象到JqFn
|
||||
$.fn.validate = function (callback, options) {
|
||||
return (new validate()).check(this, callback, options);
|
||||
};
|
||||
|
||||
// 注册对象到Jq
|
||||
$.validate = function (form, callback, options) {
|
||||
return (new validate()).check(form, callback, options);
|
||||
};
|
||||
|
||||
// 自动监听规则内表单
|
||||
$.validate.listen = function () {
|
||||
$('form[data-auto]').map(function () {
|
||||
if ($(this).attr('data-listen') !== 'true') {
|
||||
var callbackname = $(this).attr('data-callback');
|
||||
$(this).attr('data-listen', 'true').validate(function (data) {
|
||||
var method = this.getAttribute('method') || 'POST';
|
||||
var tips = this.getAttribute('data-tips') || undefined;
|
||||
var url = this.getAttribute('action') || window.location.href;
|
||||
var callback = window[callbackname || '_default_callback'] || undefined;
|
||||
var time = this.getAttribute('data-time') || undefined;
|
||||
$.form.load(url, data, method, callback, true, tips, time);
|
||||
});
|
||||
$(this).find('[data-form-loaded]').map(function () {
|
||||
$(this).html(this.getAttribute('data-form-loaded') || this.innerHTML);
|
||||
$(this).removeAttr('data-form-loaded').removeClass('layui-disabled');
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
// 表单验证
|
||||
function validate() {
|
||||
var self = this;
|
||||
// 表单元素
|
||||
this.tags = 'input,textarea,select';
|
||||
// 检测元素事件
|
||||
this.checkEvent = {change: true, blur: true, keyup: false};
|
||||
// 去除字符串两头的空格
|
||||
this.trim = function (str) {
|
||||
return str.replace(/(^\s*)|(\s*$)/g, '');
|
||||
};
|
||||
// 标签元素是否可见
|
||||
this.isVisible = function (ele) {
|
||||
return $(ele).is(':visible');
|
||||
};
|
||||
// 检测属性是否有定义
|
||||
this.hasProp = function (ele, prop) {
|
||||
if (typeof prop !== "string") {
|
||||
return false;
|
||||
}
|
||||
var attrProp = ele.getAttribute(prop);
|
||||
return (typeof attrProp !== 'undefined' && attrProp !== null && attrProp !== false);
|
||||
};
|
||||
// 判断表单元素是否为空
|
||||
this.isEmpty = function (ele, value) {
|
||||
var trimValue = this.trim(ele.value);
|
||||
value = value || ele.getAttribute('placeholder');
|
||||
return (trimValue === "" || trimValue === value);
|
||||
};
|
||||
// 正则验证表单元素
|
||||
this.isRegex = function (ele, regex, params) {
|
||||
var inputValue = ele.value, dealValue = this.trim(inputValue);
|
||||
regex = regex || ele.getAttribute('pattern');
|
||||
if (dealValue === "" || !regex) {
|
||||
return true;
|
||||
}
|
||||
if (dealValue !== inputValue) {
|
||||
(ele.tagName.toLowerCase() !== "textarea") ? (ele.value = dealValue) : (ele.innerHTML = dealValue);
|
||||
}
|
||||
return new RegExp(regex, params || 'i').test(dealValue);
|
||||
};
|
||||
// 检侧所的表单元素
|
||||
this.isAllpass = function (elements, options) {
|
||||
if (!elements) {
|
||||
return true;
|
||||
}
|
||||
var allpass = true, self = this, params = options || {};
|
||||
if (elements.size && elements.size() === 1 && elements.get(0).tagName.toLowerCase() === "form") {
|
||||
elements = $(elements).find(self.tags);
|
||||
} else if (elements.tagName && elements.tagName.toLowerCase() === "form") {
|
||||
elements = $(elements).find(self.tags);
|
||||
}
|
||||
elements.each(function () {
|
||||
if (self.checkInput(this, params) === false) {
|
||||
return $(this).focus(), (allpass = false);
|
||||
}
|
||||
});
|
||||
return allpass;
|
||||
};
|
||||
// 验证标志
|
||||
this.remind = function (input) {
|
||||
return this.isVisible(input) ? this.showError(input, input.getAttribute('title') || '') : false;
|
||||
};
|
||||
// 检测表单单元
|
||||
this.checkInput = function (input) {
|
||||
var type = (input.getAttribute("type") + "").replace(/\W+$/, "").toLowerCase();
|
||||
var tag = input.tagName.toLowerCase(), isRequired = this.hasProp(input, "required");
|
||||
if (this.hasProp(input, 'data-auto-none') || input.disabled || type === 'submit' || type === 'reset' || type === 'file' || type === 'image' || !this.isVisible(input)) {
|
||||
return;
|
||||
}
|
||||
var allpass = true;
|
||||
if (type === "radio" && isRequired) {
|
||||
var radiopass = false, eleRadios = input.name ? $("input[type='radio'][name='" + input.name + "']") : $(input);
|
||||
eleRadios.each(function () {
|
||||
(radiopass === false && $(this).is("[checked]")) && (radiopass = true);
|
||||
});
|
||||
if (radiopass === false) {
|
||||
allpass = this.remind(eleRadios.get(0), type, tag);
|
||||
} else {
|
||||
this.hideError(input);
|
||||
}
|
||||
} else if (type === "checkbox" && isRequired && !$(input).is("[checked]")) {
|
||||
allpass = this.remind(input, type, tag);
|
||||
} else if (tag === "select" && isRequired && !input.value) {
|
||||
allpass = this.remind(input, type, tag);
|
||||
} else if ((isRequired && this.isEmpty(input)) || !(allpass = this.isRegex(input))) {
|
||||
allpass ? this.remind(input, type, "empty") : this.remind(input, type, tag);
|
||||
allpass = false;
|
||||
} else {
|
||||
this.hideError(input);
|
||||
}
|
||||
return allpass;
|
||||
};
|
||||
// 错误消息显示
|
||||
this.showError = function (ele, content) {
|
||||
$(ele).addClass('validate-error'), this.insertError(ele);
|
||||
$($(ele).data('input-info')).addClass('fadeInRight animated').css({width: 'auto'}).html(content);
|
||||
};
|
||||
// 错误消息消除
|
||||
this.hideError = function (ele) {
|
||||
$(ele).removeClass('validate-error'), this.insertError(ele);
|
||||
$($(ele).data('input-info')).removeClass('fadeInRight').css({width: '30px'}).html('');
|
||||
};
|
||||
// 错误消息标签插入
|
||||
this.insertError = function (ele) {
|
||||
var $html = $('<span style="-webkit-animation-duration:.2s;animation-duration:.2s;padding-right:20px;color:#a94442;position:absolute;right:0;font-size:12px;z-index:2;display:block;width:34px;text-align:center;pointer-events:none"></span>');
|
||||
$html.css({top: $(ele).position().top + 'px', paddingBottom: $(ele).css('paddingBottom'), lineHeight: $(ele).css('height')});
|
||||
$(ele).data('input-info') || $(ele).data('input-info', $html.insertAfter(ele));
|
||||
};
|
||||
// 表单验证入口
|
||||
this.check = function (form, callback, options) {
|
||||
var params = $.extend({}, options || {});
|
||||
$(form).attr("novalidate", "novalidate");
|
||||
$(form).find(self.tags).map(function () {
|
||||
for (var i in self.checkEvent) {
|
||||
if (self.checkEvent[i] === true) {
|
||||
$(this).off(i, func).on(i, func);
|
||||
}
|
||||
}
|
||||
|
||||
function func() {
|
||||
self.checkInput(this);
|
||||
}
|
||||
});
|
||||
$(form).bind("submit", function (event) {
|
||||
if (self.isAllpass($(this).find(self.tags), params) && typeof callback === 'function') {
|
||||
if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') {
|
||||
for (var instance in CKEDITOR.instances) {
|
||||
CKEDITOR.instances[instance].updateElement();
|
||||
}
|
||||
}
|
||||
callback.call(this, $(form).serialize());
|
||||
}
|
||||
return event.preventDefault(), false;
|
||||
});
|
||||
return $(form).data('validate', this);
|
||||
};
|
||||
}
|
||||
|
||||
/*! 后台菜单辅助插件 */
|
||||
$.menu = new function () {
|
||||
// 计算URL地址中有效的URI
|
||||
@ -522,6 +307,218 @@ $(function () {
|
||||
};
|
||||
};
|
||||
|
||||
// 注册对象到Jq
|
||||
$.vali = function (form, callback, options) {
|
||||
return (new function () {
|
||||
var self = this;
|
||||
// 表单元素
|
||||
this.tags = 'input,textarea,select';
|
||||
// 检测元素事件
|
||||
this.checkEvent = {change: true, blur: true, keyup: false};
|
||||
// 去除字符串两头的空格
|
||||
this.trim = function (str) {
|
||||
return str.replace(/(^\s*)|(\s*$)/g, '');
|
||||
};
|
||||
// 标签元素是否可见
|
||||
this.isVisible = function (ele) {
|
||||
return $(ele).is(':visible');
|
||||
};
|
||||
// 检测属性是否有定义
|
||||
this.hasProp = function (ele, prop) {
|
||||
if (typeof prop !== "string") {
|
||||
return false;
|
||||
}
|
||||
var attrProp = ele.getAttribute(prop);
|
||||
return (typeof attrProp !== 'undefined' && attrProp !== null && attrProp !== false);
|
||||
};
|
||||
// 判断表单元素是否为空
|
||||
this.isEmpty = function (ele, value) {
|
||||
var trimValue = this.trim(ele.value);
|
||||
value = value || ele.getAttribute('placeholder');
|
||||
return (trimValue === "" || trimValue === value);
|
||||
};
|
||||
// 正则验证表单元素
|
||||
this.isRegex = function (ele, regex, params) {
|
||||
var inputValue = ele.value, dealValue = this.trim(inputValue);
|
||||
regex = regex || ele.getAttribute('pattern');
|
||||
if (dealValue === "" || !regex) {
|
||||
return true;
|
||||
}
|
||||
if (dealValue !== inputValue) {
|
||||
(ele.tagName.toLowerCase() !== "textarea") ? (ele.value = dealValue) : (ele.innerHTML = dealValue);
|
||||
}
|
||||
return new RegExp(regex, params || 'i').test(dealValue);
|
||||
};
|
||||
// 检侧所的表单元素
|
||||
this.isAllpass = function (elements, options) {
|
||||
if (!elements) {
|
||||
return true;
|
||||
}
|
||||
var allpass = true, self = this, params = options || {};
|
||||
if (elements.size && elements.size() === 1 && elements.get(0).tagName.toLowerCase() === "form") {
|
||||
elements = $(elements).find(self.tags);
|
||||
} else if (elements.tagName && elements.tagName.toLowerCase() === "form") {
|
||||
elements = $(elements).find(self.tags);
|
||||
}
|
||||
elements.each(function () {
|
||||
if (self.checkInput(this, params) === false) {
|
||||
return $(this).focus(), (allpass = false);
|
||||
}
|
||||
});
|
||||
return allpass;
|
||||
};
|
||||
// 验证标志
|
||||
this.remind = function (input) {
|
||||
return this.isVisible(input) ? this.showError(input, input.getAttribute('title') || '') : false;
|
||||
};
|
||||
// 检测表单单元
|
||||
this.checkInput = function (input) {
|
||||
var type = (input.getAttribute("type") + "").replace(/\W+$/, "").toLowerCase();
|
||||
var tag = input.tagName.toLowerCase(), isRequired = this.hasProp(input, "required");
|
||||
if (this.hasProp(input, 'data-auto-none') || input.disabled || type === 'submit' || type === 'reset' || type === 'file' || type === 'image' || !this.isVisible(input)) {
|
||||
return;
|
||||
}
|
||||
var allpass = true;
|
||||
if (type === "radio" && isRequired) {
|
||||
var radiopass = false, eleRadios = input.name ? $("input[type='radio'][name='" + input.name + "']") : $(input);
|
||||
eleRadios.each(function () {
|
||||
(radiopass === false && $(this).is("[checked]")) && (radiopass = true);
|
||||
});
|
||||
if (radiopass === false) {
|
||||
allpass = this.remind(eleRadios.get(0), type, tag);
|
||||
} else {
|
||||
this.hideError(input);
|
||||
}
|
||||
} else if (type === "checkbox" && isRequired && !$(input).is("[checked]")) {
|
||||
allpass = this.remind(input, type, tag);
|
||||
} else if (tag === "select" && isRequired && !input.value) {
|
||||
allpass = this.remind(input, type, tag);
|
||||
} else if ((isRequired && this.isEmpty(input)) || !(allpass = this.isRegex(input))) {
|
||||
allpass ? this.remind(input, type, "empty") : this.remind(input, type, tag);
|
||||
allpass = false;
|
||||
} else {
|
||||
this.hideError(input);
|
||||
}
|
||||
return allpass;
|
||||
};
|
||||
// 错误消息显示
|
||||
this.showError = function (ele, content) {
|
||||
$(ele).addClass('validate-error'), this.insertError(ele);
|
||||
$($(ele).data('input-info')).addClass('fadeInRight animated').css({width: 'auto'}).html(content);
|
||||
};
|
||||
// 错误消息消除
|
||||
this.hideError = function (ele) {
|
||||
$(ele).removeClass('validate-error'), this.insertError(ele);
|
||||
$($(ele).data('input-info')).removeClass('fadeInRight').css({width: '30px'}).html('');
|
||||
};
|
||||
// 错误消息标签插入
|
||||
this.insertError = function (ele) {
|
||||
var $html = $('<span style="-webkit-animation-duration:.2s;animation-duration:.2s;padding-right:20px;color:#a94442;position:absolute;right:0;font-size:12px;z-index:2;display:block;width:34px;text-align:center;pointer-events:none"></span>');
|
||||
$html.css({top: $(ele).position().top + 'px', paddingBottom: $(ele).css('paddingBottom'), lineHeight: $(ele).css('height')});
|
||||
$(ele).data('input-info') || $(ele).data('input-info', $html.insertAfter(ele));
|
||||
};
|
||||
// 表单验证入口
|
||||
this.check = function (form, callback, options) {
|
||||
var params = $.extend({}, options || {});
|
||||
$(form).attr("novalidate", "novalidate");
|
||||
$(form).find(self.tags).map(function () {
|
||||
for (var i in self.checkEvent) {
|
||||
if (self.checkEvent[i] === true) {
|
||||
$(this).off(i, func).on(i, func);
|
||||
}
|
||||
}
|
||||
|
||||
function func() {
|
||||
self.checkInput(this);
|
||||
}
|
||||
});
|
||||
$(form).bind("submit", function (event) {
|
||||
if (self.isAllpass($(this).find(self.tags), params) && typeof callback === 'function') {
|
||||
if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') {
|
||||
for (var instance in CKEDITOR.instances) {
|
||||
CKEDITOR.instances[instance].updateElement();
|
||||
}
|
||||
}
|
||||
callback.call(this, $(form).serialize());
|
||||
}
|
||||
return event.preventDefault(), false;
|
||||
});
|
||||
return $(form).data('validate', this);
|
||||
};
|
||||
}).check(form, callback, options);
|
||||
};
|
||||
|
||||
// 自动监听规则内表单
|
||||
$.vali.listen = function () {
|
||||
$('form[data-auto]').map(function () {
|
||||
if ($(this).attr('data-listen') !== 'true') {
|
||||
var callbackname = $(this).attr('data-callback');
|
||||
$(this).attr('data-listen', 'true').vali(function (data) {
|
||||
var method = this.getAttribute('method') || 'POST';
|
||||
var tips = this.getAttribute('data-tips') || undefined;
|
||||
var url = this.getAttribute('action') || window.location.href;
|
||||
var callback = window[callbackname || '_default_callback'] || undefined;
|
||||
var time = this.getAttribute('data-time') || undefined;
|
||||
$.form.load(url, data, method, callback, true, tips, time);
|
||||
});
|
||||
$(this).find('[data-form-loaded]').map(function () {
|
||||
$(this).html(this.getAttribute('data-form-loaded') || this.innerHTML);
|
||||
$(this).removeAttr('data-form-loaded').removeClass('layui-disabled');
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
// 注册对象到JqFn
|
||||
$.fn.vali = function (callback, options) {
|
||||
return $.vali(this, callback, options);
|
||||
};
|
||||
|
||||
// 上传单个图片
|
||||
$.fn.uploadOneImage = function () {
|
||||
var name = $(this).attr('name') || 'image';
|
||||
var type = $(this).data('type') || 'png,jpg';
|
||||
var $tpl = $('<a data-file="one" data-field="' + name + '" data-type="' + type + '" class="uploadimage"></a>');
|
||||
$(this).attr('name', name).after($tpl).on('change', function () {
|
||||
!!this.value && $tpl.css('backgroundImage', 'url(' + this.value + ')');
|
||||
}).trigger('change');
|
||||
};
|
||||
|
||||
// 上传多个图片
|
||||
$.fn.uploadMultipleImage = function () {
|
||||
var type = $(this).data('type') || 'png,jpg';
|
||||
var name = $(this).attr('name') || 'umt-image';
|
||||
var $tpl = $('<a data-file="mut" data-field="' + name + '" data-type="' + type + '" class="uploadimage"></a>');
|
||||
$(this).attr('name', name).after($tpl).on('change', function () {
|
||||
var input = this, values = [], srcs = this.value.split('|');
|
||||
$(this).prevAll('.uploadimage').map(function () {
|
||||
values.push($(this).attr('data-tips-image'));
|
||||
}), $(this).prevAll('.uploadimage').remove(), values.reverse();
|
||||
for (var i in srcs) {
|
||||
srcs[i] && values.push(srcs[i]);
|
||||
}
|
||||
this.value = values.join('|');
|
||||
for (var i in values) {
|
||||
var tpl = '<div class="uploadimage uploadimagemtl"><a class="layui-icon">ဆ</a></div>';
|
||||
var $tpl = $(tpl).attr('data-tips-image', values[i]).css('backgroundImage', 'url(' + values[i] + ')');
|
||||
$tpl.data('input', input).data('srcs', values).data('index', i);
|
||||
$tpl.on('click', 'a', function (e) {
|
||||
e.stopPropagation();
|
||||
var $cur = $(this).parent();
|
||||
var dialogIndex = $.msg.confirm('确定要移除这张图片吗?', function () {
|
||||
var data = $cur.data('srcs'), tmp = [];
|
||||
for (var i in data) {
|
||||
i !== $cur.data('index') && tmp.push(data[i]);
|
||||
}
|
||||
$cur.data('input').value = tmp.join('|');
|
||||
$cur.remove(), $.msg.close(dialogIndex);
|
||||
});
|
||||
});
|
||||
$(this).before($tpl);
|
||||
}
|
||||
}).trigger('change');
|
||||
};
|
||||
|
||||
/*! 注册 data-load 事件行为 */
|
||||
$body.on('click', '[data-load]', function () {
|
||||
var url = $(this).attr('data-load'), tips = $(this).attr('data-tips');
|
||||
@ -660,5 +657,5 @@ $(function () {
|
||||
|
||||
/*! 初始化 */
|
||||
$.menu.listen();
|
||||
$.validate.listen(this);
|
||||
$.vali.listen();
|
||||
});
|
@ -27,7 +27,7 @@
|
||||
var field = '_editor_upload_' + Math.floor(Math.random() * 100000);
|
||||
var url = window.ROOT_URL + '/index.php/admin/plugs/upfile.html?mode=one&type=png,jpg,gif,jpeg&field=' + field;
|
||||
$('<input type="hidden">').attr('name', field).appendTo(editor.element.$).on('change', function () {
|
||||
var element = CKEDITOR.dom.element.createFromHtml('<img src="' + this.value + '" style="max-width:500px" border="0" title="image" />');
|
||||
var element = CKEDITOR.dom.element.createFromHtml('<img src="' + this.value + '" border="0" title="image" />');
|
||||
editor.insertElement(element), $(this).remove();
|
||||
});
|
||||
$.form.iframe(url, '插入图片');
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 231 KiB After Width: | Height: | Size: 269 KiB |
Binary file not shown.
Binary file not shown.
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var i=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var n=this;return n.config=i.extend({},n.config,e),n},on:function(e,i){return layui.onevent.call(this,t,e,i)}}),t="carousel",a="layui-this",l=">*[carousel-item]>*",o="layui-carousel-left",r="layui-carousel-right",d="layui-carousel-prev",s="layui-carousel-next",u="layui-carousel-arrow",c="layui-carousel-ind",m=function(e){var t=this;t.config=i.extend({},t.config,n.config,e),t.render()};m.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},m.prototype.render=function(){var e=this,n=e.config;n.elem=i(n.elem),n.elem[0]&&(e.elemItem=n.elem.find(l),n.index<0&&(n.index=0),n.index>=e.elemItem.length&&(n.index=e.elemItem.length-1),n.interval<800&&(n.interval=800),n.full?n.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):n.elem.css({width:n.width,height:n.height}),n.elem.attr("lay-anim",n.anim),e.elemItem.eq(n.index).addClass(a),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},m.prototype.reload=function(e){var n=this;clearInterval(n.timer),n.config=i.extend({},n.config,e),n.render()},m.prototype.prevIndex=function(){var e=this,i=e.config,n=i.index-1;return n<0&&(n=e.elemItem.length-1),n},m.prototype.nextIndex=function(){var e=this,i=e.config,n=i.index+1;return n>=e.elemItem.length&&(n=0),n},m.prototype.addIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index+e,n.index>=i.elemItem.length&&(n.index=0)},m.prototype.subIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index-e,n.index<0&&(n.index=i.elemItem.length-1)},m.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(e.timer=setInterval(function(){e.slide()},i.interval))},m.prototype.arrow=function(){var e=this,n=e.config,t=i(['<button class="layui-icon '+u+'" lay-type="sub">'+("updown"===n.anim?"":"")+"</button>",'<button class="layui-icon '+u+'" lay-type="add">'+("updown"===n.anim?"":"")+"</button>"].join(""));n.elem.attr("lay-arrow",n.arrow),n.elem.find("."+u)[0]&&n.elem.find("."+u).remove(),n.elem.append(t),t.on("click",function(){var n=i(this),t=n.attr("lay-type");e.slide(t)})},m.prototype.indicator=function(){var e=this,n=e.config,t=e.elemInd=i(['<div class="'+c+'"><ul>',function(){var i=[];return layui.each(e.elemItem,function(e){i.push("<li"+(n.index===e?' class="layui-this"':"")+"></li>")}),i.join("")}(),"</ul></div>"].join(""));n.elem.attr("lay-indicator",n.indicator),n.elem.find("."+c)[0]&&n.elem.find("."+c).remove(),n.elem.append(t),"updown"===n.anim&&t.css("margin-top",-(t.height()/2)),t.find("li").on("hover"===n.trigger?"mouseover":n.trigger,function(){var t=i(this),a=t.index();a>n.index?e.slide("add",a-n.index):a<n.index&&e.slide("sub",n.index-a)})},m.prototype.slide=function(e,i){var n=this,l=n.elemItem,u=n.config,c=u.index,m=u.elem.attr("lay-filter");n.haveSlide||("sub"===e?(n.subIndex(i),l.eq(u.index).addClass(d),setTimeout(function(){l.eq(c).addClass(r),l.eq(u.index).addClass(r)},50)):(n.addIndex(i),l.eq(u.index).addClass(s),setTimeout(function(){l.eq(c).addClass(o),l.eq(u.index).addClass(o)},50)),setTimeout(function(){l.removeClass(a+" "+d+" "+s+" "+o+" "+r),l.eq(u.index).addClass(a),n.haveSlide=!1},300),n.elemInd.find("li").eq(u.index).addClass(a).siblings().removeClass(a),n.haveSlide=!0,layui.event.call(this,t,"change("+m+")",{index:u.index,prevIndex:c,item:l.eq(u.index)}))},m.prototype.events=function(){var e=this,i=e.config;i.elem.data("haveEvents")||(i.elem.on("mouseenter",function(){clearInterval(e.timer)}).on("mouseleave",function(){e.autoplay()}),i.elem.data("haveEvents",!0))},n.render=function(e){var i=new m(e);return i},e(t,n)});
|
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var a=layui.$,l="http://www.layui.com/doc/modules/code.html";e("code",function(e){var t=[];e=e||{},e.elem=a(e.elem||".layui-code"),e.about=!("about"in e)||e.about,e.elem.each(function(){t.push(this)}),layui.each(t.reverse(),function(t,i){var c=a(i),o=c.html();(c.attr("lay-encode")||e.encode)&&(o=o.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/'/g,"'").replace(/"/g,""")),c.html('<ol class="layui-code-ol"><li>'+o.replace(/[\r\t\n]+/g,"</li><li>")+"</li></ol>"),c.find(">.layui-code-h3")[0]||c.prepend('<h3 class="layui-code-h3">'+(c.attr("lay-title")||e.title||"code")+(e.about?'<a href="'+l+'" target="_blank">layui.code</a>':"")+"</h3>");var d=c.find(">.layui-code-ol");c.addClass("layui-box layui-code-view"),(c.attr("lay-skin")||e.skin)&&c.addClass("layui-code-"+(c.attr("lay-skin")||e.skin)),(d.find("li").length/100|0)>0&&d.css("margin-left",(d.find("li").length/100|0)+"px"),(c.attr("lay-height")||e.height)&&d.css("max-height",c.attr("lay-height")||e.height)})})}).addcss("modules/code.css","skincodecss");
|
File diff suppressed because one or more lines are too long
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var l=layui.$,o=function(e){},t='<i class="layui-anim layui-anim-rotate layui-anim-loop layui-icon "></i>';o.prototype.load=function(e){var o,i,n,r,a=this,c=0;e=e||{};var f=l(e.elem);if(f[0]){var m=l(e.scrollElem||document),u=e.mb||50,s=!("isAuto"in e)||e.isAuto,v=e.end||"没有更多了",y=e.scrollElem&&e.scrollElem!==document,d="<cite>加载更多</cite>",h=l('<div class="layui-flow-more"><a href="javascript:;">'+d+"</a></div>");f.find(".layui-flow-more")[0]||f.append(h);var p=function(e,t){e=l(e),h.before(e),t=0==t||null,t?h.html(v):h.find("a").html(d),i=t,o=null,n&&n()},g=function(){o=!0,h.find("a").html(t),"function"==typeof e.done&&e.done(++c,p)};if(g(),h.find("a").on("click",function(){l(this);i||o||g()}),e.isLazyimg)var n=a.lazyimg({elem:e.elem+" img",scrollElem:e.scrollElem});return s?(m.on("scroll",function(){var e=l(this),t=e.scrollTop();r&&clearTimeout(r),i||(r=setTimeout(function(){var i=y?e.height():l(window).height(),n=y?e.prop("scrollHeight"):document.documentElement.scrollHeight;n-t-i<=u&&(o||g())},100))}),a):a}},o.prototype.lazyimg=function(e){var o,t=this,i=0;e=e||{};var n=l(e.scrollElem||document),r=e.elem||"img",a=e.scrollElem&&e.scrollElem!==document,c=function(e,l){var o=n.scrollTop(),r=o+l,c=a?function(){return e.offset().top-n.offset().top+o}():e.offset().top;if(c>=o&&c<=r&&!e.attr("src")){var m=e.attr("lay-src");layui.img(m,function(){var l=t.lazyimg.elem.eq(i);e.attr("src",m).removeAttr("lay-src"),l[0]&&f(l),i++})}},f=function(e,o){var f=a?(o||n).height():l(window).height(),m=n.scrollTop(),u=m+f;if(t.lazyimg.elem=l(r),e)c(e,f);else for(var s=0;s<t.lazyimg.elem.length;s++){var v=t.lazyimg.elem.eq(s),y=a?function(){return v.offset().top-n.offset().top+m}():v.offset().top;if(c(v,f),i=s,y>u)break}};if(f(),!o){var m;n.on("scroll",function(){var e=l(this);m&&clearTimeout(m),m=setTimeout(function(){f(null,e)},50)}),o=!0}return f},e("flow",new o)});
|
File diff suppressed because one or more lines are too long
2
static/plugs/layui/lay/modules/jquery.js
vendored
2
static/plugs/layui/lay/modules/jquery.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define(function(e){"use strict";var a=document,t="getElementById",n="getElementsByTagName",i="laypage",r="layui-disabled",u=function(e){var a=this;a.config=e||{},a.config.index=++s.index,a.render(!0)};u.prototype.type=function(){var e=this.config;if("object"==typeof e.elem)return void 0===e.elem.length?2:3},u.prototype.view=function(){var e=this,a=e.config,t=a.groups="groups"in a?0|a.groups:5;a.layout="object"==typeof a.layout?a.layout:["prev","page","next"],a.count=0|a.count,a.curr=0|a.curr||1,a.limits="object"==typeof a.limits?a.limits:[10,20,30,40,50],a.limit=0|a.limit||10,a.pages=Math.ceil(a.count/a.limit)||1,a.curr>a.pages&&(a.curr=a.pages),t<0?t=1:t>a.pages&&(t=a.pages),a.prev="prev"in a?a.prev:"上一页",a.next="next"in a?a.next:"下一页";var n=a.pages>t?Math.ceil((a.curr+(t>1?1:0))/(t>0?t:1)):1,i={prev:function(){return a.prev?'<a href="javascript:;" class="layui-laypage-prev'+(1==a.curr?" "+r:"")+'" data-page="'+(a.curr-1)+'">'+a.prev+"</a>":""}(),page:function(){var e=[];if(a.count<1)return"";n>1&&a.first!==!1&&0!==t&&e.push('<a href="javascript:;" class="layui-laypage-first" data-page="1" title="首页">'+(a.first||1)+"</a>");var i=Math.floor((t-1)/2),r=n>1?a.curr-i:1,u=n>1?function(){var e=a.curr+(t-i-1);return e>a.pages?a.pages:e}():t;for(u-r<t-1&&(r=u-t+1),a.first!==!1&&r>2&&e.push('<span class="layui-laypage-spr">…</span>');r<=u;r++)r===a.curr?e.push('<span class="layui-laypage-curr"><em class="layui-laypage-em" '+(/^#/.test(a.theme)?'style="background-color:'+a.theme+';"':"")+"></em><em>"+r+"</em></span>"):e.push('<a href="javascript:;" data-page="'+r+'">'+r+"</a>");return a.pages>t&&a.pages>u&&a.last!==!1&&(u+1<a.pages&&e.push('<span class="layui-laypage-spr">…</span>'),0!==t&&e.push('<a href="javascript:;" class="layui-laypage-last" title="尾页" data-page="'+a.pages+'">'+(a.last||a.pages)+"</a>")),e.join("")}(),next:function(){return a.next?'<a href="javascript:;" class="layui-laypage-next'+(a.curr==a.pages?" "+r:"")+'" data-page="'+(a.curr+1)+'">'+a.next+"</a>":""}(),count:'<span class="layui-laypage-count">共 '+a.count+" 条</span>",limit:function(){var e=['<span class="layui-laypage-limits"><select lay-ignore>'];return layui.each(a.limits,function(t,n){e.push('<option value="'+n+'"'+(n===a.limit?"selected":"")+">"+n+" 条/页</option>")}),e.join("")+"</select></span>"}(),skip:function(){return['<span class="layui-laypage-skip">到第','<input type="text" min="1" value="'+a.curr+'" class="layui-input">','页<button type="button" class="layui-laypage-btn">确定</button>',"</span>"].join("")}()};return['<div class="layui-box layui-laypage layui-laypage-'+(a.theme?/^#/.test(a.theme)?"molv":a.theme:"default")+'" id="layui-laypage-'+a.index+'">',function(){var e=[];return layui.each(a.layout,function(a,t){i[t]&&e.push(i[t])}),e.join("")}(),"</div>"].join("")},u.prototype.jump=function(e,a){if(e){var t=this,i=t.config,r=e.children,u=e[n]("button")[0],l=e[n]("input")[0],p=e[n]("select")[0],c=function(){var e=0|l.value.replace(/\s|\D/g,"");e&&(i.curr=e,t.render())};if(a)return c();for(var o=0,y=r.length;o<y;o++)"a"===r[o].nodeName.toLowerCase()&&s.on(r[o],"click",function(){var e=0|this.getAttribute("data-page");e<1||e>i.pages||(i.curr=e,t.render())});p&&s.on(p,"change",function(){var e=this.value;i.curr*e>i.count&&(i.curr=Math.ceil(i.count/e)),i.limit=e,t.render()}),u&&s.on(u,"click",function(){c()})}},u.prototype.skip=function(e){if(e){var a=this,t=e[n]("input")[0];t&&s.on(t,"keyup",function(t){var n=this.value,i=t.keyCode;/^(37|38|39|40)$/.test(i)||(/\D/.test(n)&&(this.value=n.replace(/\D/,"")),13===i&&a.jump(e,!0))})}},u.prototype.render=function(e){var n=this,i=n.config,r=n.type(),u=n.view();2===r?i.elem&&(i.elem.innerHTML=u):3===r?i.elem.html(u):a[t](i.elem)&&(a[t](i.elem).innerHTML=u),i.jump&&i.jump(i,e);var s=a[t]("layui-laypage-"+i.index);n.jump(s),i.hash&&!e&&(location.hash="!"+i.hash+"="+i.curr),n.skip(s)};var s={render:function(e){var a=new u(e);return a.index},index:layui.laypage?layui.laypage.index+1e4:0,on:function(e,a,t){return e.attachEvent?e.attachEvent("on"+a,function(a){a.target=a.srcElement,t.call(e,a)}):e.addEventListener(a,t,!1),this}};e(i,s)});
|
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define(function(e){"use strict";var r={open:"{{",close:"}}"},c={exp:function(e){return new RegExp(e,"g")},query:function(e,c,t){var o=["#([\\s\\S])+?","([^{#}])*?"][e||0];return n((c||"")+r.open+o+r.close+(t||""))},escape:function(e){return String(e||"").replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/'/g,"'").replace(/"/g,""")},error:function(e,r){var c="Laytpl Error:";return"object"==typeof console&&console.error(c+e+"\n"+(r||"")),c+e}},n=c.exp,t=function(e){this.tpl=e};t.pt=t.prototype,window.errors=0,t.pt.parse=function(e,t){var o=this,p=e,a=n("^"+r.open+"#",""),l=n(r.close+"$","");e=e.replace(/\s+|\r|\t|\n/g," ").replace(n(r.open+"#"),r.open+"# ").replace(n(r.close+"}"),"} "+r.close).replace(/\\/g,"\\\\").replace(n(r.open+"!(.+?)!"+r.close),function(e){return e=e.replace(n("^"+r.open+"!"),"").replace(n("!"+r.close),"").replace(n(r.open+"|"+r.close),function(e){return e.replace(/(.)/g,"\\$1")})}).replace(/(?="|')/g,"\\").replace(c.query(),function(e){return e=e.replace(a,"").replace(l,""),'";'+e.replace(/\\/g,"")+';view+="'}).replace(c.query(1),function(e){var c='"+(';return e.replace(/\s/g,"")===r.open+r.close?"":(e=e.replace(n(r.open+"|"+r.close),""),/^=/.test(e)&&(e=e.replace(/^=/,""),c='"+_escape_('),c+e.replace(/\\/g,"")+')+"')}),e='"use strict";var view = "'+e+'";return view;';try{return o.cache=e=new Function("d, _escape_",e),e(t,c.escape)}catch(u){return delete o.cache,c.error(u,p)}},t.pt.render=function(e,r){var n,t=this;return e?(n=t.cache?t.cache(e,c.escape):t.parse(t.tpl,e),r?void r(n):n):c.error("no data")};var o=function(e){return"string"!=typeof e?c.error("Template not found"):new t(e)};o.config=function(e){e=e||{};for(var c in e)r[c]=e[c]},o.v="1.2.0",e("laytpl",o)});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var o=layui.$,a=layui.hint(),i="layui-tree-enter",r=function(e){this.options=e},t={arrow:["",""],checkbox:["",""],radio:["",""],branch:["",""],leaf:""};r.prototype.init=function(e){var o=this;e.addClass("layui-box layui-tree"),o.options.skin&&e.addClass("layui-tree-skin-"+o.options.skin),o.tree(e),o.on(e)},r.prototype.tree=function(e,a){var i=this,r=i.options,n=a||r.nodes;layui.each(n,function(a,n){var l=n.children&&n.children.length>0,c=o('<ul class="'+(n.spread?"layui-show":"")+'"></ul>'),s=o(["<li "+(n.spread?'data-spread="'+n.spread+'"':"")+">",function(){return l?'<i class="layui-icon layui-tree-spread">'+(n.spread?t.arrow[1]:t.arrow[0])+"</i>":""}(),function(){return r.check?'<i class="layui-icon layui-tree-check">'+("checkbox"===r.check?t.checkbox[0]:"radio"===r.check?t.radio[0]:"")+"</i>":""}(),function(){return'<a href="'+(n.href||"javascript:;")+'" '+(r.target&&n.href?'target="'+r.target+'"':"")+">"+('<i class="layui-icon layui-tree-'+(l?"branch":"leaf")+'">'+(l?n.spread?t.branch[1]:t.branch[0]:t.leaf)+"</i>")+("<cite>"+(n.name||"未命名")+"</cite></a>")}(),"</li>"].join(""));l&&(s.append(c),i.tree(c,n.children)),e.append(s),"function"==typeof r.click&&i.click(s,n),i.spread(s,n),r.drag&&i.drag(s,n)})},r.prototype.click=function(e,o){var a=this,i=a.options;e.children("a").on("click",function(e){layui.stope(e),i.click(o)})},r.prototype.spread=function(e,o){var a=this,i=(a.options,e.children(".layui-tree-spread")),r=e.children("ul"),n=e.children("a"),l=function(){e.data("spread")?(e.data("spread",null),r.removeClass("layui-show"),i.html(t.arrow[0]),n.find(".layui-icon").html(t.branch[0])):(e.data("spread",!0),r.addClass("layui-show"),i.html(t.arrow[1]),n.find(".layui-icon").html(t.branch[1]))};r[0]&&(i.on("click",l),n.on("dblclick",l))},r.prototype.on=function(e){var a=this,r=a.options,t="layui-tree-drag";e.find("i").on("selectstart",function(e){return!1}),r.drag&&o(document).on("mousemove",function(e){var i=a.move;if(i.from){var r=(i.to,o('<div class="layui-box '+t+'"></div>'));e.preventDefault(),o("."+t)[0]||o("body").append(r);var n=o("."+t)[0]?o("."+t):r;n.addClass("layui-show").html(i.from.elem.children("a").html()),n.css({left:e.pageX+10,top:e.pageY+10})}}).on("mouseup",function(){var e=a.move;e.from&&(e.from.elem.children("a").removeClass(i),e.to&&e.to.elem.children("a").removeClass(i),a.move={},o("."+t).remove())})},r.prototype.move={},r.prototype.drag=function(e,a){var r=this,t=(r.options,e.children("a")),n=function(){var t=o(this),n=r.move;n.from&&(n.to={item:a,elem:e},t.addClass(i))};t.on("mousedown",function(){var o=r.move;o.from={item:a,elem:e}}),t.on("mouseenter",n).on("mousemove",n).on("mouseleave",function(){var e=o(this),a=r.move;a.from&&(delete a.to,e.removeClass(i))})},e("tree",function(e){var i=new r(e=e||{}),t=o(e.elem);return t[0]?void i.init(t):a.error("layui.tree 没有找到"+e.elem+"元素")})});
|
File diff suppressed because one or more lines are too long
@ -1,2 +1,2 @@
|
||||
/** layui-v2.2.5 MIT License By https://www.layui.com */
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var t=layui.$,i={fixbar:function(e){var i,o,a="layui-fixbar",r="layui-fixbar-top",n=t(document),l=t("body");e=t.extend({showHeight:200},e),e.bar1=e.bar1===!0?"":e.bar1,e.bar2=e.bar2===!0?"":e.bar2,e.bgcolor=e.bgcolor?"background-color:"+e.bgcolor:"";var c=[e.bar1,e.bar2,""],g=t(['<ul class="'+a+'">',e.bar1?'<li class="layui-icon" lay-type="bar1" style="'+e.bgcolor+'">'+c[0]+"</li>":"",e.bar2?'<li class="layui-icon" lay-type="bar2" style="'+e.bgcolor+'">'+c[1]+"</li>":"",'<li class="layui-icon '+r+'" lay-type="top" style="'+e.bgcolor+'">'+c[2]+"</li>","</ul>"].join("")),s=g.find("."+r),u=function(){var t=n.scrollTop();t>=e.showHeight?i||(s.show(),i=1):i&&(s.hide(),i=0)};t("."+a)[0]||("object"==typeof e.css&&g.css(e.css),l.append(g),u(),g.find("li").on("click",function(){var i=t(this),o=i.attr("lay-type");"top"===o&&t("html,body").animate({scrollTop:0},200),e.click&&e.click.call(this,o)}),n.on("scroll",function(){clearTimeout(o),o=setTimeout(function(){u()},100)}))},countdown:function(e,t,i){var o=this,a="function"==typeof t,r=new Date(e).getTime(),n=new Date(!t||a?(new Date).getTime():t).getTime(),l=r-n,c=[Math.floor(l/864e5),Math.floor(l/36e5)%24,Math.floor(l/6e4)%60,Math.floor(l/1e3)%60];a&&(i=t);var g=setTimeout(function(){o.countdown(e,n+1e3,i)},1e3);return i&&i(l>0?c:[0,0,0,0],t,g),l<=0&&clearTimeout(g),g},timeAgo:function(e,t){var i=this,o=[[],[]],a=(new Date).getTime()-new Date(e).getTime();return a>6912e5?(a=new Date(e),o[0][0]=i.digit(a.getFullYear(),4),o[0][1]=i.digit(a.getMonth()+1),o[0][2]=i.digit(a.getDate()),t||(o[1][0]=i.digit(a.getHours()),o[1][1]=i.digit(a.getMinutes()),o[1][2]=i.digit(a.getSeconds())),o[0].join("-")+" "+o[1].join(":")):a>=864e5?(a/1e3/60/60/24|0)+"天前":a>=36e5?(a/1e3/60/60|0)+"小时前":a>=12e4?(a/1e3/60|0)+"分钟前":a<0?"未来":"刚刚"},digit:function(e,t){var i="";e=String(e),t=t||2;for(var o=e.length;o<t;o++)i+="0";return e<Math.pow(10,t)?i+(0|e):e},toDateString:function(e,t){var i=this,o=new Date(e||new Date),a=[i.digit(o.getFullYear(),4),i.digit(o.getMonth()+1),i.digit(o.getDate())],r=[i.digit(o.getHours()),i.digit(o.getMinutes()),i.digit(o.getSeconds())];return t=t||"yyyy-MM-dd HH:mm:ss",t.replace(/yyyy/g,a[0]).replace(/MM/g,a[1]).replace(/dd/g,a[2]).replace(/HH/g,r[0]).replace(/mm/g,r[1]).replace(/ss/g,r[2])}};e("util",i)});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
/* +----------------------------------------------------------------------
|
||||
// | ThinkAdmin
|
||||
// | ThinkService
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
@ -9,10 +9,10 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkService
|
||||
// +--------------------------------------------------------------------*/
|
||||
|
||||
html{overflow:auto}body{width:100%;font-size:13px;font-family:'微软雅黑','Microsoft YaHei','Helvetica Neue','Luxi Sans','DejaVu Sans','Hiragino Sans GB',serif}
|
||||
html{overflow:auto}body{width:100%;font-size:12px;font-family:'微软雅黑','Microsoft YaHei','Helvetica Neue','Luxi Sans','DejaVu Sans','Hiragino Sans GB',serif}
|
||||
a{color:#06C;cursor:pointer}a:hover{color:#039}input::-ms-clear{display:none}button{border-radius:0!important}
|
||||
.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-top{vertical-align:top!important}
|
||||
.color-desc{color:#999!important}.color-text{color:#333!important}.color-blue{color:#2494f2!important}.color-red{color:#ec494e!important}.color-green{color:#090!important}
|
||||
@ -44,11 +44,12 @@ a{color:#06C;cursor:pointer}a:hover{color:#039}input::-ms-clear{display:none}but
|
||||
|
||||
/** 页面加载进度 */
|
||||
.pace-inactive{display:none}
|
||||
.modal-form-box{padding:30px 60px 15px 0}
|
||||
.pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
|
||||
.pace .pace-progress{background:#22df80;position:fixed;z-index:2000;top:0;right:100%;width:100%;height:2px}
|
||||
.uploadimage{display:inline-block;width:80px;height:80px;background: url('../img/image.png') no-repeat center center;background-size:cover;cursor:pointer}
|
||||
.uploadimagemtl{margin-right:8px;}
|
||||
.uploadimagemtl a{color:#fff;width:20px;height:20px;float:right;display:none;line-height:20px;text-align:center;background:rgba(0, 0, 0, 0.5)}
|
||||
.uploadimagemtl a{color:#fff;width:20px;height:20px;float:right;display:none;line-height:22px;text-align:center;background:rgba(0, 0, 0, 0.5)}
|
||||
.uploadimagemtl:hover a{display:inline-block;cursor:pointer}
|
||||
.uploadimagemtl:hover a:hover{color:#fff;text-decoration:none}
|
||||
.hr-line-dashed{border-top:1px dashed #e7eaec;color:#fff;background-color:#fff;height:1px;margin:20px 0}
|
||||
@ -68,14 +69,14 @@ legend{width:auto!important;border-bottom:none!important}
|
||||
.layui-form-label{padding:9px 15px 9px 0;width:95px}
|
||||
.layui-input,.layui-select{line-height:38px}
|
||||
.layui-table.notevent tbody tr:hover {background-color: inherit;}
|
||||
.layui-table th,.layui-table td{font-size:13px}
|
||||
.layui-table th,.layui-table td{font-size:12px}
|
||||
.layui-table td .text-explode:first-child{opacity:0;display:none}
|
||||
.layui-table td .text-explode{color:#ccc!important;font-weight:normal!important;margin:0px 4px!important}
|
||||
.layui-table .list-table-image{width:22px;cursor:pointer}
|
||||
.layui-table .list-table-sort-td{width:60px!important;text-align:center!important}
|
||||
.layui-table .list-table-sort-td button{width:50px}
|
||||
.layui-table .list-table-sort-td input{width:50px;text-align:center;line-height:14px;padding:2px;border:1px solid #e6e6e6}
|
||||
.layui-table .list-table-check-td{width:30px!important;text-align:center;padding:0}
|
||||
.layui-table .list-table-check-td{width:30px!important;text-align:center;}
|
||||
.layui-table .list-table-check-td input{margin:0;vertical-align:middle}
|
||||
|
||||
/** checkbox 优化 */
|
||||
@ -152,7 +153,7 @@ input[type=checkbox]:focus,input[type=radio]:focus{outline:none}
|
||||
|
||||
/* 右则内容搜索样式 */
|
||||
.framework-body .form-search{background:#fff;padding-top:15px}
|
||||
.framework-body .form-search .layui-btn{height:32px;line-height:30px;font-size:13px;padding:0 10px}
|
||||
.framework-body .form-search .layui-btn{height:32px;line-height:30px;font-size:12px;padding:0 10px}
|
||||
.framework-body .form-search .layui-form-label{width:auto!important;border-radius:0;padding:0 6px;height:32px;line-height:30px}
|
||||
.framework-body .form-search .layui-input-inline{width:170px}
|
||||
.framework-body .form-search .layui-input-inline input,
|
||||
|
@ -12,14 +12,14 @@
|
||||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||||
// +--------------------------------------------------------------------*/
|
||||
|
||||
html,body{height:100%;width:100%;overflow:hidden!important;overflow-y:hidden!important;min-width:0}
|
||||
html,body{height:100%;width:100%;overflow:hidden!important;min-width:0}
|
||||
|
||||
.login-container{height:100%;background-color:#2494F2;overflow:hidden;font-size:9pt}
|
||||
.login-container ul{display:block;margin:0;padding:0;list-style:none}
|
||||
.login-container ul li{display:block;margin:0;padding:0;list-style:none}
|
||||
.login-container .clouds-container{position:absolute;overflow:hidden;height:100%;width:100%}
|
||||
.login-container .clouds{background:url("../img/login/cloud_two.png") repeat-x left 15%;position:absolute;left:0;top:0;height:100%;width:300%;-webkit-animation:cloudmove 200s linear infinite;-moz-animation:cloudmove 200s linear infinite;-o-animation:cloudmove 200s linear infinite;animation:cloudmove 200s linear infinite;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
|
||||
.login-container .clouds-fast{background:url("../img/login/cloud.png") no-repeat 0px 40%;-webkit-animation:cloudmove 30s linear infinite;-moz-animation:cloudmove 30s linear infinite;-o-animation:cloudmove 30s linear infinite;animation:cloudmove 30s linear infinite}
|
||||
.login-container .clouds-fast{background:url("../img/login/cloud.png") no-repeat 0 40%;-webkit-animation:cloudmove 30s linear infinite;-moz-animation:cloudmove 30s linear infinite;-o-animation:cloudmove 30s linear infinite;animation:cloudmove 30s linear infinite}
|
||||
.login-container .clouds-footer{background:url("../img/login/cloud_one.png") no-repeat left 100%;animation:none}
|
||||
|
||||
@keyframes cloudmove{0%{left:-50%}100%{left:150%}}
|
||||
|
8
thinkphp/.gitignore
vendored
8
thinkphp/.gitignore
vendored
@ -1,4 +1,8 @@
|
||||
/composer.lock
|
||||
/vendor
|
||||
.idea
|
||||
composer.phar
|
||||
composer.lock
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
/phpunit.xml
|
||||
/.idea
|
||||
/.vscode
|
@ -1,12 +1,11 @@
|
||||
ThinkPHP 5.1
|
||||

|
||||
|
||||
ThinkPHP 5.1 —— 12载初心,你值得信赖的PHP框架
|
||||
===============
|
||||
|
||||
[](https://styleci.io/repos/48530411)
|
||||
[](https://travis-ci.org/top-think/framework)
|
||||
[](http://codecov.io/github/github/top-think/framework?branch=master)
|
||||
[](https://packagist.org/packages/topthink/framework)
|
||||
[](https://packagist.org/packages/topthink/framework)
|
||||
[](https://packagist.org/packages/topthink/framework)
|
||||
[](https://packagist.org/packages/topthink/framework)
|
||||
|
||||
ThinkPHP5.1对底层架构做了进一步的改进,减少依赖,其主要特性包括:
|
||||
@ -30,12 +29,12 @@ ThinkPHP5.1对底层架构做了进一步的改进,减少依赖,其主要特
|
||||
+ 内置控制器扩展类
|
||||
+ 模型自动验证
|
||||
|
||||
> ThinkPHP5的运行环境要求PHP5.6以上。
|
||||
> ThinkPHP5.1的运行环境要求PHP5.6+。
|
||||
|
||||
|
||||
## 在线手册
|
||||
|
||||
+ [完全开发手册](https://www.kancloud.cn/manual/thinkphp5_1)
|
||||
+ [完全开发手册](https://www.kancloud.cn/manual/thinkphp5_1/content)
|
||||
+ [升级指导](https://www.kancloud.cn/manual/thinkphp5_1/354155)
|
||||
|
||||
## 命名规范
|
||||
|
@ -40,6 +40,7 @@ Container::getInstance()->bind([
|
||||
'hook' => Hook::class,
|
||||
'lang' => Lang::class,
|
||||
'log' => Log::class,
|
||||
'middleware' => Middleware::class,
|
||||
'request' => Request::class,
|
||||
'response' => Response::class,
|
||||
'route' => Route::class,
|
||||
@ -47,30 +48,31 @@ Container::getInstance()->bind([
|
||||
'url' => Url::class,
|
||||
'validate' => Validate::class,
|
||||
'view' => View::class,
|
||||
'middlewareDispatcher' => http\middleware\Dispatcher::class,
|
||||
'rule_name' => route\RuleName::class,
|
||||
// 接口依赖注入
|
||||
'think\LoggerInterface' => Log::class,
|
||||
]);
|
||||
|
||||
// 注册核心类的静态代理
|
||||
Facade::bind([
|
||||
facade\App::class => App::class,
|
||||
facade\Build::class => Build::class,
|
||||
facade\Cache::class => Cache::class,
|
||||
facade\Config::class => Config::class,
|
||||
facade\Cookie::class => Cookie::class,
|
||||
facade\Debug::class => Debug::class,
|
||||
facade\Env::class => Env::class,
|
||||
facade\Hook::class => Hook::class,
|
||||
facade\Lang::class => Lang::class,
|
||||
facade\Log::class => Log::class,
|
||||
facade\Request::class => Request::class,
|
||||
facade\Response::class => Response::class,
|
||||
facade\Route::class => Route::class,
|
||||
facade\Session::class => Session::class,
|
||||
facade\Url::class => Url::class,
|
||||
facade\Validate::class => Validate::class,
|
||||
facade\View::class => View::class,
|
||||
facade\App::class => App::class,
|
||||
facade\Build::class => Build::class,
|
||||
facade\Cache::class => Cache::class,
|
||||
facade\Config::class => Config::class,
|
||||
facade\Cookie::class => Cookie::class,
|
||||
facade\Debug::class => Debug::class,
|
||||
facade\Env::class => Env::class,
|
||||
facade\Hook::class => Hook::class,
|
||||
facade\Lang::class => Lang::class,
|
||||
facade\Log::class => Log::class,
|
||||
facade\Middleware::class => Middleware::class,
|
||||
facade\Request::class => Request::class,
|
||||
facade\Response::class => Response::class,
|
||||
facade\Route::class => Route::class,
|
||||
facade\Session::class => Session::class,
|
||||
facade\Url::class => Url::class,
|
||||
facade\Validate::class => Validate::class,
|
||||
facade\View::class => View::class,
|
||||
]);
|
||||
|
||||
// 注册类库别名
|
||||
|
@ -30,7 +30,7 @@ return [
|
||||
// 默认JSONP处理方法
|
||||
'var_jsonp_handler' => 'callback',
|
||||
// 默认时区
|
||||
'default_timezone' => 'PRC',
|
||||
'default_timezone' => 'Asia/Shanghai',
|
||||
// 是否开启多语言
|
||||
'lang_switch_on' => false,
|
||||
// 默认全局过滤方法 用逗号分隔多个
|
||||
@ -89,6 +89,8 @@ return [
|
||||
'url_lazy_route' => false,
|
||||
// 是否强制使用路由
|
||||
'url_route_must' => false,
|
||||
// 合并路由规则
|
||||
'route_rule_merge' => false,
|
||||
// 路由是否完全匹配
|
||||
'route_complete_match' => false,
|
||||
// 使用注解路由
|
||||
@ -136,6 +138,8 @@ return [
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
'template' => [
|
||||
// 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写
|
||||
'auto_rule' => 1,
|
||||
// 模板引擎类型 支持 php think 支持扩展
|
||||
'type' => 'Think',
|
||||
// 视图基础目录,配置目录为所有模块的视图起始目录
|
||||
@ -289,4 +293,10 @@ return [
|
||||
'list_rows' => 15,
|
||||
],
|
||||
|
||||
//控制台配置
|
||||
'console' => [
|
||||
'name' => 'Think Console',
|
||||
'version' => '0.1',
|
||||
'user' => null,
|
||||
],
|
||||
];
|
||||
|
@ -370,7 +370,7 @@ if (!function_exists('input')) {
|
||||
* @param string $filter 过滤方法
|
||||
* @return mixed
|
||||
*/
|
||||
function input($key = '', $default = null, $filter = null)
|
||||
function input($key = '', $default = null, $filter = '')
|
||||
{
|
||||
if (0 === strpos($key, '?')) {
|
||||
$key = substr($key, 1);
|
||||
@ -653,7 +653,7 @@ if (!function_exists('view')) {
|
||||
* @param string $template 模板文件
|
||||
* @param array $vars 模板变量
|
||||
* @param integer $code 状态码
|
||||
* @param callable $filer 内容过滤
|
||||
* @param callable $filter 内容过滤
|
||||
* @return \think\response\View
|
||||
*/
|
||||
function view($template = '', $vars = [], $code = 200, $filter = null)
|
||||
|
@ -24,6 +24,7 @@ return [
|
||||
'dispatch type not support' => '不支持的调度类型',
|
||||
'method param miss' => '方法参数错误',
|
||||
'method not exists' => '方法不存在',
|
||||
'function not exists' => '函数不存在',
|
||||
'module not exists' => '模块不存在',
|
||||
'controller not exists' => '控制器不存在',
|
||||
'class not exists' => '类不存在',
|
||||
@ -32,7 +33,7 @@ return [
|
||||
'illegal controller name' => '非法的控制器名称',
|
||||
'illegal action name' => '非法的操作名称',
|
||||
'url suffix deny' => '禁止的URL后缀访问',
|
||||
'Route Not Found' => '当前访问路由未定义',
|
||||
'Route Not Found' => '当前访问路由未定义或不匹配',
|
||||
'Undefined db type' => '未定义数据库类型',
|
||||
'variable type error' => '变量类型错误',
|
||||
'PSR-4 error' => 'PSR-4 规范错误',
|
||||
@ -66,6 +67,9 @@ return [
|
||||
'relation data not exists' => '关联数据不存在',
|
||||
'relation not support' => '关联不支持',
|
||||
'chunk not support order' => 'Chunk不支持调用order方法',
|
||||
'route pattern error' => '路由变量规则定义错误',
|
||||
'route behavior will not support' => '路由行为废弃(使用中间件替代)',
|
||||
'closure not support cache(true)' => '使用闭包查询不支持cache(true),请指定缓存Key',
|
||||
|
||||
// 上传错误信息
|
||||
'unknown upload error' => '未知上传错误!',
|
||||
@ -83,6 +87,8 @@ return [
|
||||
'filesize not match' => '上传文件大小不符!',
|
||||
'directory {:path} creation failed' => '目录 {:path} 创建失败!',
|
||||
|
||||
'The middleware must return Response instance' => '中间件方法必须返回Response对象实例',
|
||||
'The queue was exhausted, with no response returned' => '中间件队列为空',
|
||||
// Validate Error Message
|
||||
':attribute require' => ':attribute不能为空',
|
||||
':attribute must' => ':attribute必须',
|
||||
|
@ -20,7 +20,7 @@ use think\route\Dispatch;
|
||||
*/
|
||||
class App implements \ArrayAccess
|
||||
{
|
||||
const VERSION = '5.1.5';
|
||||
const VERSION = '5.1.10';
|
||||
|
||||
/**
|
||||
* 当前模块路径
|
||||
@ -126,7 +126,7 @@ class App implements \ArrayAccess
|
||||
|
||||
public function __construct($appPath = '')
|
||||
{
|
||||
$this->appPath = $appPath ?: realpath(dirname($_SERVER['SCRIPT_FILENAME']) . '/../application') . '/';
|
||||
$this->appPath = $appPath ? realpath($appPath) . DIRECTORY_SEPARATOR : $this->getAppPath();
|
||||
$this->container = Container::getInstance();
|
||||
}
|
||||
|
||||
@ -163,11 +163,11 @@ class App implements \ArrayAccess
|
||||
{
|
||||
$this->beginTime = microtime(true);
|
||||
$this->beginMem = memory_get_usage();
|
||||
$this->thinkPath = dirname(dirname(__DIR__)) . '/';
|
||||
$this->rootPath = dirname(realpath($this->appPath)) . '/';
|
||||
$this->runtimePath = $this->rootPath . 'runtime/';
|
||||
$this->routePath = $this->rootPath . 'route/';
|
||||
$this->configPath = $this->rootPath . 'config/';
|
||||
$this->thinkPath = dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR;
|
||||
$this->rootPath = dirname($this->appPath) . DIRECTORY_SEPARATOR;
|
||||
$this->runtimePath = $this->rootPath . 'runtime' . DIRECTORY_SEPARATOR;
|
||||
$this->routePath = $this->rootPath . 'route' . DIRECTORY_SEPARATOR;
|
||||
$this->configPath = $this->rootPath . 'config' . DIRECTORY_SEPARATOR;
|
||||
|
||||
// 设置路径环境变量
|
||||
$this->env->set([
|
||||
@ -177,8 +177,8 @@ class App implements \ArrayAccess
|
||||
'config_path' => $this->configPath,
|
||||
'route_path' => $this->routePath,
|
||||
'runtime_path' => $this->runtimePath,
|
||||
'extend_path' => $this->rootPath . 'extend/',
|
||||
'vendor_path' => $this->rootPath . 'vendor/',
|
||||
'extend_path' => $this->rootPath . 'extend' . DIRECTORY_SEPARATOR,
|
||||
'vendor_path' => $this->rootPath . 'vendor' . DIRECTORY_SEPARATOR,
|
||||
]);
|
||||
|
||||
// 加载环境变量配置文件
|
||||
@ -228,6 +228,9 @@ class App implements \ArrayAccess
|
||||
// 设置系统时区
|
||||
date_default_timezone_set($this->config('app.default_timezone'));
|
||||
|
||||
// 读取语言包
|
||||
$this->loadLangPack();
|
||||
|
||||
// 监听app_init
|
||||
$this->hook->listen('app_init');
|
||||
}
|
||||
@ -252,7 +255,10 @@ class App implements \ArrayAccess
|
||||
} else {
|
||||
// 加载行为扩展文件
|
||||
if (is_file($path . 'tags.php')) {
|
||||
$this->hook->import(include $path . 'tags.php');
|
||||
$tags = include $path . 'tags.php';
|
||||
if (is_array($tags)) {
|
||||
$this->hook->import($tags);
|
||||
}
|
||||
}
|
||||
|
||||
// 加载公共文件
|
||||
@ -265,9 +271,20 @@ class App implements \ArrayAccess
|
||||
include $this->thinkPath . 'helper.php';
|
||||
}
|
||||
|
||||
// 加载中间件
|
||||
if (is_file($path . 'middleware.php')) {
|
||||
$middleware = include $path . 'middleware.php';
|
||||
if (is_array($middleware)) {
|
||||
$this->middleware->import($middleware);
|
||||
}
|
||||
}
|
||||
|
||||
// 注册服务的容器对象实例
|
||||
if (is_file($path . 'provider.php')) {
|
||||
$this->container->bind(include $path . 'provider.php');
|
||||
$provider = include $path . 'provider.php';
|
||||
if (is_array($provider)) {
|
||||
$this->container->bind($provider);
|
||||
}
|
||||
}
|
||||
|
||||
// 自动读取配置文件
|
||||
@ -298,10 +315,10 @@ class App implements \ArrayAccess
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
// 初始化应用
|
||||
$this->initialize();
|
||||
|
||||
try {
|
||||
// 初始化应用
|
||||
$this->initialize();
|
||||
|
||||
if ($this->bind) {
|
||||
// 模块/控制器绑定
|
||||
$this->route->bind($this->bind);
|
||||
@ -313,28 +330,18 @@ class App implements \ArrayAccess
|
||||
}
|
||||
}
|
||||
|
||||
// 读取默认语言
|
||||
$this->lang->range($this->config('app.default_lang'));
|
||||
if ($this->config('app.lang_switch_on')) {
|
||||
// 开启多语言机制 检测当前语言
|
||||
$this->lang->detect();
|
||||
}
|
||||
|
||||
$this->request->langset($this->lang->range());
|
||||
|
||||
// 加载系统语言包
|
||||
$this->lang->load([
|
||||
$this->thinkPath . 'lang/' . $this->request->langset() . '.php',
|
||||
$this->appPath . 'lang/' . $this->request->langset() . '.php',
|
||||
]);
|
||||
|
||||
// 监听app_dispatch
|
||||
$this->hook->listen('app_dispatch');
|
||||
|
||||
// 获取应用调度信息
|
||||
$dispatch = $this->dispatch;
|
||||
if (empty($dispatch)) {
|
||||
// 进行URL路由检测
|
||||
// 路由检测
|
||||
$this->route
|
||||
->lazy($this->config('app.url_lazy_route'))
|
||||
->autoSearchController($this->config('app.controller_auto_search'))
|
||||
->mergeRuleRegex($this->config('app.route_rule_merge'));
|
||||
|
||||
$dispatch = $this->routeCheck();
|
||||
}
|
||||
|
||||
@ -358,14 +365,22 @@ class App implements \ArrayAccess
|
||||
$this->config('app.request_cache_except')
|
||||
);
|
||||
|
||||
// 执行调度
|
||||
$data = $dispatch->run();
|
||||
|
||||
$data = null;
|
||||
} catch (HttpResponseException $exception) {
|
||||
$data = $exception->getResponse();
|
||||
$dispatch = null;
|
||||
$data = $exception->getResponse();
|
||||
}
|
||||
|
||||
$this->middlewareDispatcher->add(function (Request $request, $next) use ($data) {
|
||||
$this->middleware->add(function (Request $request, $next) use ($dispatch, $data) {
|
||||
if (is_null($data)) {
|
||||
try {
|
||||
// 执行调度
|
||||
$data = $dispatch->run();
|
||||
} catch (HttpResponseException $exception) {
|
||||
$data = $exception->getResponse();
|
||||
}
|
||||
}
|
||||
|
||||
// 输出数据到客户端
|
||||
if ($data instanceof Response) {
|
||||
$response = $data;
|
||||
@ -381,7 +396,7 @@ class App implements \ArrayAccess
|
||||
return $response;
|
||||
});
|
||||
|
||||
$response = $this->middlewareDispatcher->dispatch($this->request);
|
||||
$response = $this->middleware->dispatch($this->request);
|
||||
|
||||
// 监听app_end
|
||||
$this->hook->listen('app_end', $response);
|
||||
@ -389,6 +404,24 @@ class App implements \ArrayAccess
|
||||
return $response;
|
||||
}
|
||||
|
||||
protected function loadLangPack()
|
||||
{
|
||||
// 读取默认语言
|
||||
$this->lang->range($this->config('app.default_lang'));
|
||||
if ($this->config('app.lang_switch_on')) {
|
||||
// 开启多语言机制 检测当前语言
|
||||
$this->lang->detect();
|
||||
}
|
||||
|
||||
$this->request->langset($this->lang->range());
|
||||
|
||||
// 加载系统语言包
|
||||
$this->lang->load([
|
||||
$this->thinkPath . 'lang' . DIRECTORY_SEPARATOR . $this->request->langset() . '.php',
|
||||
$this->appPath . 'lang' . DIRECTORY_SEPARATOR . $this->request->langset() . '.php',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置当前请求的调度信息
|
||||
* @access public
|
||||
@ -408,9 +441,9 @@ class App implements \ArrayAccess
|
||||
* @param string $type 信息类型
|
||||
* @return void
|
||||
*/
|
||||
public function log($log, $type = 'info')
|
||||
public function log($msg, $type = 'info')
|
||||
{
|
||||
$this->debug && $this->log->record($log, $type);
|
||||
$this->debug && $this->log->record($msg, $type);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -460,6 +493,10 @@ class App implements \ArrayAccess
|
||||
}
|
||||
}
|
||||
|
||||
if (is_file($this->runtimePath . 'rule_regex.php')) {
|
||||
$this->route->setRuleRegexs(include $this->runtimePath . 'rule_regex.php');
|
||||
}
|
||||
|
||||
// 是否强制路由模式
|
||||
$must = !is_null($this->routeMust) ? $this->routeMust : $this->config('app.url_route_must');
|
||||
|
||||
@ -574,9 +611,9 @@ class App implements \ArrayAccess
|
||||
return $this->__get($class);
|
||||
} elseif ($empty && class_exists($emptyClass = $this->parseClass($module, $layer, $empty, $appendSuffix))) {
|
||||
return $this->__get($emptyClass);
|
||||
} else {
|
||||
throw new ClassNotFoundException('class not exists:' . $class, $class);
|
||||
}
|
||||
|
||||
throw new ClassNotFoundException('class not exists:' . $class, $class);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -718,6 +755,10 @@ class App implements \ArrayAccess
|
||||
*/
|
||||
public function getAppPath()
|
||||
{
|
||||
if (is_null($this->appPath)) {
|
||||
$this->appPath = Loader::getRootPath() . 'application' . DIRECTORY_SEPARATOR;
|
||||
}
|
||||
|
||||
return $this->appPath;
|
||||
}
|
||||
|
||||
|
@ -135,7 +135,7 @@ class Build
|
||||
|
||||
// 创建子目录和文件
|
||||
foreach ($list as $path => $file) {
|
||||
$modulePath = $this->basePath . $module . '/';
|
||||
$modulePath = $this->basePath . $module . DIRECTORY_SEPARATOR;
|
||||
if ('__dir__' == $path) {
|
||||
// 生成子目录
|
||||
foreach ($file as $dir) {
|
||||
@ -187,7 +187,7 @@ class Build
|
||||
* @param string $layer 控制器层目录名
|
||||
* @return string
|
||||
*/
|
||||
public function buildRoute($alias = false, $layer = '')
|
||||
public function buildRoute($suffix = false, $layer = '')
|
||||
{
|
||||
$namespace = $this->app->getNameSpace();
|
||||
$modules = glob($this->basePath . '*', GLOB_ONLYDIR);
|
||||
@ -204,11 +204,8 @@ class Build
|
||||
continue;
|
||||
}
|
||||
|
||||
$controllers = glob($this->basePath . $module . '/' . $layer . '/*.php');
|
||||
|
||||
foreach ($controllers as $controller) {
|
||||
$content .= $this->getControllerRoute($namespace, $module, basename($controller, '.php'), $alias, $layer);
|
||||
}
|
||||
$path = $this->basePath . $module . DIRECTORY_SEPARATOR . $layer . DIRECTORY_SEPARATOR;
|
||||
$content .= $this->buildDirRoute($path, $namespace, $module, $suffix, $layer);
|
||||
}
|
||||
|
||||
$filename = $this->app->getRuntimePath() . 'build_route.php';
|
||||
@ -218,25 +215,61 @@ class Build
|
||||
}
|
||||
|
||||
/**
|
||||
* 生成控制器类的路由规则
|
||||
* 生成子目录控制器类的路由规则
|
||||
* @access protected
|
||||
* @param string $path 控制器目录
|
||||
* @param string $namespace 应用命名空间
|
||||
* @param string $module 模块
|
||||
* @param string $controller 控制器名
|
||||
* @param bool $suffix 类库后缀
|
||||
* @param string $layer 控制器层目录名
|
||||
* @return string
|
||||
*/
|
||||
protected function getControllerRoute($namespace, $module, $controller, $alias = false, $layer = '')
|
||||
protected function buildDirRoute($path, $namespace, $module, $suffix, $layer)
|
||||
{
|
||||
$content = '';
|
||||
$controllers = glob($path . '*.php');
|
||||
|
||||
foreach ($controllers as $controller) {
|
||||
$controller = basename($controller, '.php');
|
||||
|
||||
if ($suffix) {
|
||||
// 控制器后缀
|
||||
$controller = substr($controller, 0, -10);
|
||||
}
|
||||
|
||||
$class = new \ReflectionClass($namespace . '\\' . $module . '\\' . $layer . '\\' . $controller);
|
||||
|
||||
if (strpos($layer, DIRECTORY_SEPARATOR)) {
|
||||
// 多级控制器
|
||||
$level = str_replace(DIRECTORY_SEPARATOR, '.', substr($layer, 11));
|
||||
$controller = $level . '.' . $controller;
|
||||
}
|
||||
|
||||
$content .= $this->getControllerRoute($class, $module, $controller);
|
||||
}
|
||||
|
||||
$subDir = glob($path . '*', GLOB_ONLYDIR);
|
||||
|
||||
foreach ($subDir as $dir) {
|
||||
$content .= $this->buildDirRoute($dir . DIRECTORY_SEPARATOR, $namespace, $module, $suffix, $layer . '\\' . basename($dir));
|
||||
}
|
||||
|
||||
return $content;
|
||||
}
|
||||
|
||||
/**
|
||||
* 生成控制器类的路由规则
|
||||
* @access protected
|
||||
* @param string $class 控制器完整类名
|
||||
* @param string $module 模块名
|
||||
* @param string $controller 控制器名
|
||||
* @return string
|
||||
*/
|
||||
protected function getControllerRoute($class, $module, $controller)
|
||||
{
|
||||
$class = new \ReflectionClass($namespace . '\\' . $module . '\\' . $layer . '\\' . $controller);
|
||||
$content = '';
|
||||
$comment = $class->getDocComment();
|
||||
|
||||
if ($alias) {
|
||||
$controller = substr($controller, 0, -10);
|
||||
}
|
||||
|
||||
if (false !== strpos($comment, '@route(')) {
|
||||
$comment = $this->parseRouteComment($comment);
|
||||
$route = $module . '/' . $controller;
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user