[更新]大版本更新V3,Thinkphp5.1.x

This commit is contained in:
Anyon 2018-03-13 15:37:38 +08:00
parent d65baa4743
commit 07954b47e8
514 changed files with 42932 additions and 39762 deletions

View File

@ -1,6 +1,7 @@
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

View File

@ -1,6 +1,6 @@
ThinkAdmin for PHP
--
* ThinkAdmin 是一个基于 Thinkphp 5.0.x 开发的后台管理系统,集成后台系统常用功能。
* ThinkAdmin 是一个基于 Thinkphp 5.1.x 开发的后台管理系统,集成后台系统常用功能。
* 项目安装及二次开发请参考 ThinkPHP 官方文档及下面的服务环境说明,数据库 sql 文件存放于项目根目录下。
> 注意:项目测试请另行搭建环境并创建数据库(数据库配置 application/database.php, 切勿直接使用测试环境数据!
@ -25,8 +25,8 @@ Module
* 自建秒传文件上载组件本地存储、七牛云存储阿里云OSS存储
* 基站数据服务组件(唯一随机序号、表单更新)
* `Http`服务组件(原生`CURL`封装兼容PHP多版本
* 微信公众号服务组件(基于[wechat-php-sdk](https://github.com/zoujingli/wechat-php-sdk),微信网页授权获取用户信息、已关注粉丝管理、自定义菜单管理等等)
* 微信商户支付服务组件(基于[wechat-php-sdk](https://github.com/zoujingli/wechat-php-sdk)支持JSAPI支付、扫码模式一支付、扫码模式二支付
* 微信公众号服务组件(基于[WeChatDevloper](https://github.com/zoujingli/wechat-devloper),微信网页授权获取用户信息、已关注粉丝管理、自定义菜单管理等等)
* 微信商户支付服务组件(基于[WeChatDevloper](https://github.com/zoujingli/wechat-devloper)支持JSAPI支付、扫码模式一支付、扫码模式二支付
* 测试公众号名称:思过崖思过 (大家可以关注它来进行简单的测试)
* 更多组件开发中...

878
admin_v3.sql Normal file
View File

@ -0,0 +1,878 @@
/*
Navicat MySQL Data Transfer
Source Server : ctolog.com
Source Server Version : 50559
Source Host : ctolog.com:3306
Source Database : admin_v3
Target Server Type : MYSQL
Target Server Version : 50559
File Encoding : 65001
Date: 2018-03-13 15:35:47
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for system_auth
-- ----------------------------
DROP TABLE IF EXISTS `system_auth`;
CREATE TABLE `system_auth` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(20) NOT NULL COMMENT '权限名称',
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '状态(1:禁用,2:启用)',
`sort` smallint(6) unsigned DEFAULT '0' COMMENT '排序权重',
`desc` varchar(255) DEFAULT NULL COMMENT '备注说明',
`create_by` bigint(11) unsigned DEFAULT '0' COMMENT '创建人',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
UNIQUE KEY `index_system_auth_title` (`title`) USING BTREE,
KEY `index_system_auth_status` (`status`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='系统权限表';
-- ----------------------------
-- Records of system_auth
-- ----------------------------
INSERT INTO `system_auth` VALUES ('1', '测试', '1', '1', '测试权限', '0', '2018-01-23 13:28:14');
-- ----------------------------
-- Table structure for system_auth_node
-- ----------------------------
DROP TABLE IF EXISTS `system_auth_node`;
CREATE TABLE `system_auth_node` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`auth` bigint(20) unsigned DEFAULT NULL COMMENT '角色ID',
`node` varchar(200) DEFAULT NULL COMMENT '节点路径',
PRIMARY KEY (`id`),
KEY `index_system_auth_auth` (`auth`) USING BTREE,
KEY `index_system_auth_node` (`node`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=154 DEFAULT CHARSET=utf8 COMMENT='系统角色与节点绑定';
-- ----------------------------
-- Records of system_auth_node
-- ----------------------------
INSERT INTO `system_auth_node` VALUES ('77', '1', 'admin');
INSERT INTO `system_auth_node` VALUES ('78', '1', 'admin/auth');
INSERT INTO `system_auth_node` VALUES ('79', '1', 'admin/auth/index');
INSERT INTO `system_auth_node` VALUES ('80', '1', 'admin/auth/apply');
INSERT INTO `system_auth_node` VALUES ('81', '1', 'admin/auth/add');
INSERT INTO `system_auth_node` VALUES ('82', '1', 'admin/auth/edit');
INSERT INTO `system_auth_node` VALUES ('83', '1', 'admin/auth/forbid');
INSERT INTO `system_auth_node` VALUES ('84', '1', 'admin/auth/resume');
INSERT INTO `system_auth_node` VALUES ('85', '1', 'admin/auth/del');
INSERT INTO `system_auth_node` VALUES ('86', '1', 'admin/config');
INSERT INTO `system_auth_node` VALUES ('87', '1', 'admin/config/index');
INSERT INTO `system_auth_node` VALUES ('88', '1', 'admin/config/file');
INSERT INTO `system_auth_node` VALUES ('89', '1', 'admin/config/sms');
INSERT INTO `system_auth_node` VALUES ('90', '1', 'admin/log');
INSERT INTO `system_auth_node` VALUES ('91', '1', 'admin/log/index');
INSERT INTO `system_auth_node` VALUES ('92', '1', 'admin/log/sms');
INSERT INTO `system_auth_node` VALUES ('93', '1', 'admin/log/del');
INSERT INTO `system_auth_node` VALUES ('94', '1', 'admin/menu');
INSERT INTO `system_auth_node` VALUES ('95', '1', 'admin/menu/index');
INSERT INTO `system_auth_node` VALUES ('96', '1', 'admin/menu/add');
INSERT INTO `system_auth_node` VALUES ('97', '1', 'admin/menu/edit');
INSERT INTO `system_auth_node` VALUES ('98', '1', 'admin/menu/del');
INSERT INTO `system_auth_node` VALUES ('99', '1', 'admin/menu/forbid');
INSERT INTO `system_auth_node` VALUES ('100', '1', 'admin/menu/resume');
INSERT INTO `system_auth_node` VALUES ('101', '1', 'admin/node');
INSERT INTO `system_auth_node` VALUES ('102', '1', 'admin/node/index');
INSERT INTO `system_auth_node` VALUES ('103', '1', 'admin/node/clear');
INSERT INTO `system_auth_node` VALUES ('104', '1', 'admin/node/save');
INSERT INTO `system_auth_node` VALUES ('105', '1', 'admin/user');
INSERT INTO `system_auth_node` VALUES ('106', '1', 'admin/user/index');
INSERT INTO `system_auth_node` VALUES ('107', '1', 'admin/user/auth');
INSERT INTO `system_auth_node` VALUES ('108', '1', 'admin/user/add');
INSERT INTO `system_auth_node` VALUES ('109', '1', 'admin/user/edit');
INSERT INTO `system_auth_node` VALUES ('110', '1', 'admin/user/pass');
INSERT INTO `system_auth_node` VALUES ('111', '1', 'admin/user/del');
INSERT INTO `system_auth_node` VALUES ('112', '1', 'admin/user/forbid');
INSERT INTO `system_auth_node` VALUES ('113', '1', 'admin/user/resume');
INSERT INTO `system_auth_node` VALUES ('114', '1', 'wechat');
INSERT INTO `system_auth_node` VALUES ('115', '1', 'wechat/block');
INSERT INTO `system_auth_node` VALUES ('116', '1', 'wechat/block/index');
INSERT INTO `system_auth_node` VALUES ('117', '1', 'wechat/block/backdel');
INSERT INTO `system_auth_node` VALUES ('118', '1', 'wechat/config');
INSERT INTO `system_auth_node` VALUES ('119', '1', 'wechat/config/index');
INSERT INTO `system_auth_node` VALUES ('120', '1', 'wechat/fans');
INSERT INTO `system_auth_node` VALUES ('121', '1', 'wechat/fans/index');
INSERT INTO `system_auth_node` VALUES ('122', '1', 'wechat/fans/backadd');
INSERT INTO `system_auth_node` VALUES ('123', '1', 'wechat/fans/tagset');
INSERT INTO `system_auth_node` VALUES ('124', '1', 'wechat/fans/tagadd');
INSERT INTO `system_auth_node` VALUES ('125', '1', 'wechat/fans/tagdel');
INSERT INTO `system_auth_node` VALUES ('126', '1', 'wechat/fans/sync');
INSERT INTO `system_auth_node` VALUES ('127', '1', 'wechat/keys');
INSERT INTO `system_auth_node` VALUES ('128', '1', 'wechat/keys/index');
INSERT INTO `system_auth_node` VALUES ('129', '1', 'wechat/keys/add');
INSERT INTO `system_auth_node` VALUES ('130', '1', 'wechat/keys/edit');
INSERT INTO `system_auth_node` VALUES ('131', '1', 'wechat/keys/del');
INSERT INTO `system_auth_node` VALUES ('132', '1', 'wechat/keys/forbid');
INSERT INTO `system_auth_node` VALUES ('133', '1', 'wechat/keys/resume');
INSERT INTO `system_auth_node` VALUES ('134', '1', 'wechat/keys/subscribe');
INSERT INTO `system_auth_node` VALUES ('135', '1', 'wechat/keys/defaults');
INSERT INTO `system_auth_node` VALUES ('136', '1', 'wechat/menu');
INSERT INTO `system_auth_node` VALUES ('137', '1', 'wechat/menu/index');
INSERT INTO `system_auth_node` VALUES ('138', '1', 'wechat/menu/edit');
INSERT INTO `system_auth_node` VALUES ('139', '1', 'wechat/menu/cancel');
INSERT INTO `system_auth_node` VALUES ('140', '1', 'wechat/news');
INSERT INTO `system_auth_node` VALUES ('141', '1', 'wechat/news/index');
INSERT INTO `system_auth_node` VALUES ('142', '1', 'wechat/news/select');
INSERT INTO `system_auth_node` VALUES ('143', '1', 'wechat/news/image');
INSERT INTO `system_auth_node` VALUES ('144', '1', 'wechat/news/add');
INSERT INTO `system_auth_node` VALUES ('145', '1', 'wechat/news/edit');
INSERT INTO `system_auth_node` VALUES ('146', '1', 'wechat/news/del');
INSERT INTO `system_auth_node` VALUES ('147', '1', 'wechat/news/push');
INSERT INTO `system_auth_node` VALUES ('148', '1', 'wechat/tags');
INSERT INTO `system_auth_node` VALUES ('149', '1', 'wechat/tags/index');
INSERT INTO `system_auth_node` VALUES ('150', '1', 'wechat/tags/add');
INSERT INTO `system_auth_node` VALUES ('151', '1', 'wechat/tags/edit');
INSERT INTO `system_auth_node` VALUES ('152', '1', 'wechat/tags/del');
INSERT INTO `system_auth_node` VALUES ('153', '1', 'wechat/tags/sync');
-- ----------------------------
-- Table structure for system_config
-- ----------------------------
DROP TABLE IF EXISTS `system_config`;
CREATE TABLE `system_config` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL COMMENT '配置编码',
`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='系统参数配置';
-- ----------------------------
-- Records of system_config
-- ----------------------------
INSERT INTO `system_config` VALUES ('1', 'app_name', 'ThinkAdmin');
INSERT INTO `system_config` VALUES ('2', 'site_name', 'ThinkAdmin');
INSERT INTO `system_config` VALUES ('3', 'app_version', '3.0 dev');
INSERT INTO `system_config` VALUES ('4', 'site_copy', '&copy;版权所有 2014-2018 楚才科技');
INSERT INTO `system_config` VALUES ('5', 'browser_icon', 'http://service.thinkadmin.top/static/upload/f47b8fe06e38ae99/08e8398da45583b9.png');
INSERT INTO `system_config` VALUES ('6', 'tongji_baidu_key', '');
INSERT INTO `system_config` VALUES ('7', 'miitbeian', '粤ICP备16006642号-2');
INSERT INTO `system_config` VALUES ('8', 'storage_type', 'local');
INSERT INTO `system_config` VALUES ('9', 'storage_local_exts', 'png,jpg,rar,doc,icon,mp4');
INSERT INTO `system_config` VALUES ('10', 'storage_qiniu_bucket', '');
INSERT INTO `system_config` VALUES ('11', 'storage_qiniu_domain', '');
INSERT INTO `system_config` VALUES ('12', 'storage_qiniu_access_key', '');
INSERT INTO `system_config` VALUES ('13', 'storage_qiniu_secret_key', '');
INSERT INTO `system_config` VALUES ('14', 'storage_oss_bucket', 'cuci');
INSERT INTO `system_config` VALUES ('15', 'storage_oss_endpoint', 'oss-cn-beijing.aliyuncs.com');
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 ('19', 'component_appid', 'wx1b8278fa121d8dc6');
INSERT INTO `system_config` VALUES ('20', 'component_appsecret', 'f404e33a75d278d6a0f944229bb84afb');
INSERT INTO `system_config` VALUES ('21', 'component_token', 'P8QHTIxpBEq88IrxatqhgpBm2OAQROkI');
INSERT INTO `system_config` VALUES ('22', 'component_encodingaeskey', 'L5uFIa0U6KLalPyXckyqoVIJYLhsfrg8k9YzybZIHsx');
INSERT INTO `system_config` VALUES ('23', 'wechat_appid', 'wx60a43dd8161666d4');
INSERT INTO `system_config` VALUES ('24', 'wechat_appkey', '67b0056909f8ac5f42add03323d1faa0');
INSERT INTO `system_config` VALUES ('25', 'wuma_appid', '2844152665343808');
INSERT INTO `system_config` VALUES ('26', 'wuma_appkey', '25280e2930a30d81bc93b2bf40a62b48');
INSERT INTO `system_config` VALUES ('27', 'depot_pda_secret_key', 'ACE7041C3204B10736F11309B66E2214');
INSERT INTO `system_config` VALUES ('28', 'storage_oss_is_https', 'http');
INSERT INTO `system_config` VALUES ('29', 'store_title', '商城');
INSERT INTO `system_config` VALUES ('30', 'store_runtime_status', '0');
INSERT INTO `system_config` VALUES ('31', 'store_order_dalay', '1');
INSERT INTO `system_config` VALUES ('32', 'store_order_auto_cancel', '12.00');
INSERT INTO `system_config` VALUES ('33', 'store_order_auto_comfirm', '12.00');
-- ----------------------------
-- Table structure for system_log
-- ----------------------------
DROP TABLE IF EXISTS `system_log`;
CREATE TABLE `system_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` char(15) NOT NULL DEFAULT '' COMMENT '操作者IP地址',
`node` char(200) NOT NULL DEFAULT '' COMMENT '当前操作节点',
`username` varchar(32) NOT NULL DEFAULT '' COMMENT '操作人用户名',
`action` varchar(200) NOT NULL DEFAULT '' COMMENT '操作行为',
`content` text NOT NULL COMMENT '操作内容描述',
`create_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=366 DEFAULT CHARSET=utf8 COMMENT='系统操作日志表';
-- ----------------------------
-- Records of system_log
-- ----------------------------
INSERT INTO `system_log` VALUES ('169', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-25 18:49:05');
INSERT INTO `system_log` VALUES ('170', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-25 18:53:02');
INSERT INTO `system_log` VALUES ('171', '116.21.13.54', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-26 10:28:18');
INSERT INTO `system_log` VALUES ('172', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-26 10:30:21');
INSERT INTO `system_log` VALUES ('173', '113.67.75.233', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-27 10:08:51');
INSERT INTO `system_log` VALUES ('174', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 13:17:51');
INSERT INTO `system_log` VALUES ('175', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 17:41:58');
INSERT INTO `system_log` VALUES ('176', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 17:57:28');
INSERT INTO `system_log` VALUES ('177', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 17:59:01');
INSERT INTO `system_log` VALUES ('178', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 17:59:04');
INSERT INTO `system_log` VALUES ('179', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:01:31');
INSERT INTO `system_log` VALUES ('180', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 18:01:35');
INSERT INTO `system_log` VALUES ('181', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:01:37');
INSERT INTO `system_log` VALUES ('182', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 18:01:43');
INSERT INTO `system_log` VALUES ('183', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:01:56');
INSERT INTO `system_log` VALUES ('184', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 18:02:14');
INSERT INTO `system_log` VALUES ('185', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:02:26');
INSERT INTO `system_log` VALUES ('186', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 18:02:30');
INSERT INTO `system_log` VALUES ('187', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:07:07');
INSERT INTO `system_log` VALUES ('188', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 18:07:50');
INSERT INTO `system_log` VALUES ('189', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:10:34');
INSERT INTO `system_log` VALUES ('190', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-02-28 18:10:38');
INSERT INTO `system_log` VALUES ('191', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:12:41');
INSERT INTO `system_log` VALUES ('192', '113.67.75.233', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 18:22:15');
INSERT INTO `system_log` VALUES ('193', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 19:06:46');
INSERT INTO `system_log` VALUES ('194', '61.140.235.78', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-02-28 20:51:18');
INSERT INTO `system_log` VALUES ('195', '61.140.235.78', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-01 09:15:54');
INSERT INTO `system_log` VALUES ('196', '59.42.236.22', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-01 11:17:00');
INSERT INTO `system_log` VALUES ('197', '113.67.74.221', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-02 10:00:39');
INSERT INTO `system_log` VALUES ('198', '113.67.74.221', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-02 11:09:52');
INSERT INTO `system_log` VALUES ('199', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-02 11:10:47');
INSERT INTO `system_log` VALUES ('200', '113.67.74.221', 'admin/config/index', 'admin', '系统管理', '系统参数配置成功', '2018-03-02 11:39:40');
INSERT INTO `system_log` VALUES ('201', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-02 12:28:13');
INSERT INTO `system_log` VALUES ('202', '113.67.74.221', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-02 12:31:01');
INSERT INTO `system_log` VALUES ('203', '113.67.74.221', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-02 17:33:13');
INSERT INTO `system_log` VALUES ('204', '61.136.79.242', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-05 09:02:47');
INSERT INTO `system_log` VALUES ('205', '113.67.73.37', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-05 13:53:34');
INSERT INTO `system_log` VALUES ('206', '113.67.73.37', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-05 18:40:09');
INSERT INTO `system_log` VALUES ('207', '116.21.13.188', 'admin/config/index', 'admin', '系统管理', '系统参数配置成功', '2018-03-05 20:01:19');
INSERT INTO `system_log` VALUES ('208', '61.140.235.78', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 00:08:40');
INSERT INTO `system_log` VALUES ('209', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 09:48:57');
INSERT INTO `system_log` VALUES ('210', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-03-06 09:51:12');
INSERT INTO `system_log` VALUES ('211', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 09:52:44');
INSERT INTO `system_log` VALUES ('212', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 10:01:02');
INSERT INTO `system_log` VALUES ('213', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-03-06 10:01:09');
INSERT INTO `system_log` VALUES ('214', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 10:01:11');
INSERT INTO `system_log` VALUES ('215', '113.67.73.37', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-03-06 10:48:41');
INSERT INTO `system_log` VALUES ('216', '113.67.73.37', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 10:49:00');
INSERT INTO `system_log` VALUES ('217', '113.67.73.37', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-03-06 10:49:18');
INSERT INTO `system_log` VALUES ('218', '113.67.73.37', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 10:49:45');
INSERT INTO `system_log` VALUES ('219', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-03-06 10:58:05');
INSERT INTO `system_log` VALUES ('220', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 10:58:20');
INSERT INTO `system_log` VALUES ('221', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 11:25:13');
INSERT INTO `system_log` VALUES ('222', '127.0.0.1', 'admin/config/index', 'admin', '系统管理', '系统参数配置成功', '2018-03-06 14:05:44');
INSERT INTO `system_log` VALUES ('223', '127.0.0.1', 'admin/config/index', 'admin', '系统管理', '系统参数配置成功', '2018-03-06 14:05:48');
INSERT INTO `system_log` VALUES ('224', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 14:09:04');
INSERT INTO `system_log` VALUES ('225', '127.0.0.1', 'admin/config/file', 'admin', '系统管理', '系统参数配置成功', '2018-03-06 14:10:11');
INSERT INTO `system_log` VALUES ('226', '127.0.0.1', 'admin/config/index', 'admin', '系统管理', '系统参数配置成功', '2018-03-06 14:10:23');
INSERT INTO `system_log` VALUES ('227', '127.0.0.1', 'admin/config/index', 'admin', '系统管理', '系统参数配置成功', '2018-03-06 14:10:32');
INSERT INTO `system_log` VALUES ('228', '127.0.0.1', 'wechat/tags/sync', 'admin', '微信管理', '同步全部微信粉丝标签成功', '2018-03-06 15:10:31');
INSERT INTO `system_log` VALUES ('229', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:31:09');
INSERT INTO `system_log` VALUES ('230', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:31:30');
INSERT INTO `system_log` VALUES ('231', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:31:54');
INSERT INTO `system_log` VALUES ('232', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:32:15');
INSERT INTO `system_log` VALUES ('233', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:32:35');
INSERT INTO `system_log` VALUES ('234', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:32:57');
INSERT INTO `system_log` VALUES ('235', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:33:18');
INSERT INTO `system_log` VALUES ('236', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:33:37');
INSERT INTO `system_log` VALUES ('237', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:33:57');
INSERT INTO `system_log` VALUES ('238', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:34:17');
INSERT INTO `system_log` VALUES ('239', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:34:35');
INSERT INTO `system_log` VALUES ('240', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:34:55');
INSERT INTO `system_log` VALUES ('241', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:35:14');
INSERT INTO `system_log` VALUES ('242', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:35:34');
INSERT INTO `system_log` VALUES ('243', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:35:55');
INSERT INTO `system_log` VALUES ('244', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:36:15');
INSERT INTO `system_log` VALUES ('245', '127.0.0.1', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-06 15:36:33');
INSERT INTO `system_log` VALUES ('246', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-06 15:37:05');
INSERT INTO `system_log` VALUES ('247', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 10:11:52');
INSERT INTO `system_log` VALUES ('248', '59.42.238.6', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 10:20:48');
INSERT INTO `system_log` VALUES ('249', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:28:36');
INSERT INTO `system_log` VALUES ('250', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:29:09');
INSERT INTO `system_log` VALUES ('251', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:29:13');
INSERT INTO `system_log` VALUES ('252', '127.0.0.1', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:32:28');
INSERT INTO `system_log` VALUES ('253', '127.0.0.1', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:35:52');
INSERT INTO `system_log` VALUES ('254', '127.0.0.1', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:37:08');
INSERT INTO `system_log` VALUES ('255', '127.0.0.1', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:37:35');
INSERT INTO `system_log` VALUES ('256', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:38:48');
INSERT INTO `system_log` VALUES ('257', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 10:38:50');
INSERT INTO `system_log` VALUES ('258', '113.67.75.198', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 11:49:52');
INSERT INTO `system_log` VALUES ('259', '59.42.238.6', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 11:50:08');
INSERT INTO `system_log` VALUES ('260', '59.42.238.6', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 11:50:41');
INSERT INTO `system_log` VALUES ('261', '127.0.0.1', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 12:14:40');
INSERT INTO `system_log` VALUES ('262', '127.0.0.1', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 12:15:27');
INSERT INTO `system_log` VALUES ('263', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 14:26:50');
INSERT INTO `system_log` VALUES ('264', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 14:28:27');
INSERT INTO `system_log` VALUES ('265', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 14:57:32');
INSERT INTO `system_log` VALUES ('266', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 15:02:02');
INSERT INTO `system_log` VALUES ('267', '59.42.238.6', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-07 15:02:04');
INSERT INTO `system_log` VALUES ('268', '127.0.0.1', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-07 15:36:58');
INSERT INTO `system_log` VALUES ('269', '59.42.238.6', 'wechat/news/push', 'admin', '微信管理', '图文[1]推送成功', '2018-03-07 15:38:19');
INSERT INTO `system_log` VALUES ('270', '59.42.238.6', 'wechat/tags/sync', 'admin', '微信管理', '同步全部微信粉丝标签成功', '2018-03-07 15:38:46');
INSERT INTO `system_log` VALUES ('271', '127.0.0.1', 'wechat/tags/sync', 'admin', '微信管理', '同步全部微信粉丝标签成功', '2018-03-07 15:41:43');
INSERT INTO `system_log` VALUES ('273', '175.172.29.18', 'wechat/news/push', 'admin', '微信管理', '图文[1]推送成功', '2018-03-07 15:48:41');
INSERT INTO `system_log` VALUES ('274', '113.67.75.198', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-07 17:59:56');
INSERT INTO `system_log` VALUES ('275', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 18:13:08');
INSERT INTO `system_log` VALUES ('276', '113.67.75.198', 'wechat/tags/sync', 'admin', '微信管理', '同步全部微信粉丝标签成功', '2018-03-07 18:46:16');
INSERT INTO `system_log` VALUES ('280', '59.42.238.6', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-07 23:01:37');
INSERT INTO `system_log` VALUES ('285', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-08 15:30:02');
INSERT INTO `system_log` VALUES ('286', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-08 17:06:28');
INSERT INTO `system_log` VALUES ('287', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-08 18:11:10');
INSERT INTO `system_log` VALUES ('288', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-08 18:40:51');
INSERT INTO `system_log` VALUES ('289', '116.22.196.196', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-08 20:32:32');
INSERT INTO `system_log` VALUES ('291', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 11:25:50');
INSERT INTO `system_log` VALUES ('292', '127.0.0.1', 'admin/login/out', 'admin', '系统管理', '用户退出系统成功', '2018-03-09 14:58:23');
INSERT INTO `system_log` VALUES ('293', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 14:58:46');
INSERT INTO `system_log` VALUES ('294', '59.42.237.151', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:09:15');
INSERT INTO `system_log` VALUES ('295', '59.42.237.151', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-09 15:10:10');
INSERT INTO `system_log` VALUES ('296', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 15:20:55');
INSERT INTO `system_log` VALUES ('297', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 15:21:08');
INSERT INTO `system_log` VALUES ('298', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 15:24:56');
INSERT INTO `system_log` VALUES ('299', '59.42.237.151', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:26:19');
INSERT INTO `system_log` VALUES ('300', '59.42.237.151', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:30:41');
INSERT INTO `system_log` VALUES ('301', '59.42.237.151', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:31:20');
INSERT INTO `system_log` VALUES ('302', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 15:31:24');
INSERT INTO `system_log` VALUES ('303', '127.0.0.1', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:45:34');
INSERT INTO `system_log` VALUES ('304', '127.0.0.1', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:46:11');
INSERT INTO `system_log` VALUES ('305', '127.0.0.1', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:46:31');
INSERT INTO `system_log` VALUES ('306', '127.0.0.1', 'wechat/menu/edit', 'admin', '微信管理', '发布微信菜单成功', '2018-03-09 15:46:43');
INSERT INTO `system_log` VALUES ('307', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 16:21:21');
INSERT INTO `system_log` VALUES ('308', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 16:23:21');
INSERT INTO `system_log` VALUES ('309', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 16:32:09');
INSERT INTO `system_log` VALUES ('310', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 16:32:45');
INSERT INTO `system_log` VALUES ('311', '59.42.237.151', 'wechat/fans/sync', 'admin', '微信管理', '同步全部微信粉丝成功', '2018-03-09 19:35:45');
INSERT INTO `system_log` VALUES ('312', '59.42.237.151', 'wechat/tags/sync', 'admin', '微信管理', '同步全部微信粉丝标签成功', '2018-03-09 19:36:38');
INSERT INTO `system_log` VALUES ('313', '116.22.196.196', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 21:12:54');
INSERT INTO `system_log` VALUES ('314', '116.22.196.196', 'wechat/config/index', 'admin', '微信管理', '修改微信接口参数成功', '2018-03-09 21:23:54');
INSERT INTO `system_log` VALUES ('315', '119.108.225.208', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-09 23:44:25');
INSERT INTO `system_log` VALUES ('316', '119.108.225.208', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-10 02:51:25');
INSERT INTO `system_log` VALUES ('317', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-10 11:06:45');
INSERT INTO `system_log` VALUES ('318', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-10 11:10:15');
INSERT INTO `system_log` VALUES ('319', '59.42.237.151', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-10 11:14:46');
INSERT INTO `system_log` VALUES ('360', '127.0.0.1', 'admin/config/file', 'admin', '系统管理', '系统参数配置成功', '2018-03-13 14:54:30');
INSERT INTO `system_log` VALUES ('361', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-13 14:57:52');
INSERT INTO `system_log` VALUES ('362', '127.0.0.1', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-13 15:04:35');
INSERT INTO `system_log` VALUES ('363', '127.0.0.1', 'admin/config/file', 'admin', '系统管理', '系统参数配置成功', '2018-03-13 15:07:22');
INSERT INTO `system_log` VALUES ('364', '127.0.0.1', 'admin/config/file', 'admin', '系统管理', '系统参数配置成功', '2018-03-13 15:07:25');
INSERT INTO `system_log` VALUES ('365', '127.0.0.1', 'admin/config/index', 'admin', '系统管理', '系统参数配置成功', '2018-03-13 15:07:59');
-- ----------------------------
-- Table structure for system_menu
-- ----------------------------
DROP TABLE IF EXISTS `system_menu`;
CREATE TABLE `system_menu` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`pid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '父id',
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '名称',
`node` varchar(200) NOT NULL DEFAULT '' COMMENT '节点代码',
`icon` varchar(100) NOT NULL DEFAULT '' COMMENT '菜单图标',
`url` varchar(400) NOT NULL DEFAULT '' COMMENT '链接',
`params` varchar(500) DEFAULT '' COMMENT '链接参数',
`target` varchar(20) NOT NULL DEFAULT '_self' COMMENT '链接打开方式',
`sort` int(11) unsigned DEFAULT '0' COMMENT '菜单排序',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态(0:禁用,1:启用)',
`create_by` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建人',
`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='系统菜单表';
-- ----------------------------
-- Records of system_menu
-- ----------------------------
INSERT INTO `system_menu` VALUES ('1', '0', '系统设置', '', '', '#', '', '_self', '9000', '1', '10000', '2018-01-19 15:27:00');
INSERT INTO `system_menu` VALUES ('2', '10', '后台菜单', '', 'fa fa-leaf', 'admin/menu/index', '', '_self', '10', '1', '10000', '2018-01-19 15:27:17');
INSERT INTO `system_menu` VALUES ('3', '10', '系统参数', '', 'fa fa-modx', 'admin/config/index', '', '_self', '20', '1', '10000', '2018-01-19 15:27:57');
INSERT INTO `system_menu` VALUES ('4', '11', '访问授权', '', 'fa fa-group', 'admin/auth/index', '', '_self', '20', '1', '10000', '2018-01-22 11:13:02');
INSERT INTO `system_menu` VALUES ('5', '11', '用户管理', '', 'fa fa-user', 'admin/user/index', '', '_self', '10', '1', '0', '2018-01-23 12:15:12');
INSERT INTO `system_menu` VALUES ('6', '11', '访问节点', '', 'fa fa-fort-awesome', 'admin/node/index', '', '_self', '30', '1', '0', '2018-01-23 12:36:54');
INSERT INTO `system_menu` VALUES ('7', '0', '后台首页', '', '', 'admin/index/main', '', '_self', '1000', '1', '0', '2018-01-23 13:42:30');
INSERT INTO `system_menu` VALUES ('8', '16', '系统日志', '', 'fa fa-code', 'admin/log/index', '', '_self', '10', '1', '0', '2018-01-24 13:52:58');
INSERT INTO `system_menu` VALUES ('9', '10', '文件存储', '', 'fa fa-stop-circle', 'admin/config/file', '', '_self', '30', '1', '0', '2018-01-25 10:54:28');
INSERT INTO `system_menu` VALUES ('10', '1', '系统管理', '', 'fa fa-scribd', '#', '', '_self', '200', '1', '0', '2018-01-25 18:14:28');
INSERT INTO `system_menu` VALUES ('11', '1', '访问权限', '', 'fa fa-anchor', '#', '', '_self', '300', '1', '0', '2018-01-25 18:15:08');
INSERT INTO `system_menu` VALUES ('16', '1', '日志管理', '', 'fa fa-hashtag', '#', '', '_self', '400', '1', '0', '2018-02-10 16:31:15');
INSERT INTO `system_menu` VALUES ('17', '0', '微信管理', '', '', '#', '', '_self', '8000', '1', '0', '2018-03-06 14:42:49');
INSERT INTO `system_menu` VALUES ('18', '17', '公众号配置', '', 'fa fa-cogs', '#', '', '_self', '0', '1', '0', '2018-03-06 14:43:05');
INSERT INTO `system_menu` VALUES ('19', '18', '微信授权绑定', '', 'fa fa-cog', 'wechat/config/index', '', '_self', '0', '1', '0', '2018-03-06 14:43:26');
INSERT INTO `system_menu` VALUES ('20', '18', '关注默认回复', '', 'fa fa-comment-o', 'wechat/keys/subscribe', '', '_self', '0', '1', '0', '2018-03-06 14:44:45');
INSERT INTO `system_menu` VALUES ('21', '18', '无反馈默认回复', '', 'fa fa-commenting', 'wechat/keys/defaults', '', '_self', '0', '1', '0', '2018-03-06 14:45:55');
INSERT INTO `system_menu` VALUES ('22', '18', '微信关键字管理', '', 'fa fa-hashtag', 'wechat/keys/index', '', '_self', '0', '1', '0', '2018-03-06 14:46:23');
INSERT INTO `system_menu` VALUES ('23', '17', '微信服务定制', '', 'fa fa-cubes', '#', '', '_self', '0', '1', '0', '2018-03-06 14:47:11');
INSERT INTO `system_menu` VALUES ('24', '23', '微信菜单管理', '', 'fa fa-gg-circle', 'wechat/menu/index', '', '_self', '0', '1', '0', '2018-03-06 14:47:39');
INSERT INTO `system_menu` VALUES ('25', '23', '微信图文管理', '', 'fa fa-map-o', 'wechat/news/index', '', '_self', '0', '1', '0', '2018-03-06 14:48:14');
INSERT INTO `system_menu` VALUES ('26', '17', '微信粉丝管理', '', 'fa fa-user', '#', '', '_self', '0', '1', '0', '2018-03-06 14:48:33');
INSERT INTO `system_menu` VALUES ('27', '26', '微信粉丝列表', '', 'fa fa-users', 'wechat/fans/index', '', '_self', '20', '1', '0', '2018-03-06 14:49:04');
INSERT INTO `system_menu` VALUES ('28', '26', '微信黑名单管理', '', 'fa fa-user-times', 'wechat/block/index', '', '_self', '30', '1', '0', '2018-03-06 14:49:22');
INSERT INTO `system_menu` VALUES ('29', '26', '微信标签管理', '', 'fa fa-tags', 'wechat/tags/index', '', '_self', '10', '1', '0', '2018-03-06 14:49:39');
-- ----------------------------
-- Table structure for system_node
-- ----------------------------
DROP TABLE IF EXISTS `system_node`;
CREATE TABLE `system_node` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`node` varchar(100) DEFAULT NULL COMMENT '节点代码',
`title` varchar(500) DEFAULT NULL COMMENT '节点标题',
`is_menu` tinyint(1) unsigned DEFAULT '0' COMMENT '是否可设置为菜单',
`is_auth` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启动RBAC权限控制',
`is_login` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启动登录控制',
`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='系统节点表';
-- ----------------------------
-- Records of system_node
-- ----------------------------
INSERT INTO `system_node` VALUES ('1', 'admin', '系统管理', '0', '1', '1', '2018-01-23 12:39:13');
INSERT INTO `system_node` VALUES ('2', 'admin/auth', '权限管理', '0', '1', '1', '2018-01-23 12:39:14');
INSERT INTO `system_node` VALUES ('3', 'admin/auth/index', '权限列表', '1', '1', '1', '2018-01-23 12:39:14');
INSERT INTO `system_node` VALUES ('4', 'admin/auth/apply', '访问授权', '0', '1', '1', '2018-01-23 12:39:19');
INSERT INTO `system_node` VALUES ('5', 'admin/auth/add', '添加权限', '0', '1', '1', '2018-01-23 12:39:22');
INSERT INTO `system_node` VALUES ('6', 'admin/auth/edit', '编辑权限', '0', '1', '1', '2018-01-23 12:39:23');
INSERT INTO `system_node` VALUES ('7', 'admin/auth/forbid', '禁用权限', '0', '1', '1', '2018-01-23 12:39:23');
INSERT INTO `system_node` VALUES ('8', 'admin/auth/resume', '启用权限', '0', '1', '1', '2018-01-23 12:39:24');
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');
INSERT INTO `system_node` VALUES ('16', 'admin/menu/index', '系统菜单列表', '1', '1', '1', '2018-01-23 12:39:31');
INSERT INTO `system_node` VALUES ('17', 'admin/menu/add', '添加系统菜单', '0', '1', '1', '2018-01-23 12:39:31');
INSERT INTO `system_node` VALUES ('18', 'admin/menu/edit', '编辑系统菜单', '0', '1', '1', '2018-01-23 12:39:32');
INSERT INTO `system_node` VALUES ('19', 'admin/menu/del', '删除系统菜单', '0', '1', '1', '2018-01-23 12:39:33');
INSERT INTO `system_node` VALUES ('20', 'admin/menu/forbid', '禁用系统菜单', '0', '1', '1', '2018-01-23 12:39:33');
INSERT INTO `system_node` VALUES ('21', 'admin/menu/resume', '启用系统菜单', '0', '1', '1', '2018-01-23 12:39:34');
INSERT INTO `system_node` VALUES ('22', 'admin/node/index', '系统节点列表', '1', '1', '1', '2018-01-23 12:39:36');
INSERT INTO `system_node` VALUES ('23', 'admin/node/save', '保存节点信息', '0', '1', '1', '2018-01-23 12:39:36');
INSERT INTO `system_node` VALUES ('24', 'admin/user/index', '系统用户列表', '1', '1', '1', '2018-01-23 12:39:37');
INSERT INTO `system_node` VALUES ('25', 'admin/user/auth', '用户授权操作', '0', '1', '1', '2018-01-23 12:39:38');
INSERT INTO `system_node` VALUES ('26', 'admin/user/add', '添加系统用户', '0', '1', '1', '2018-01-23 12:39:39');
INSERT INTO `system_node` VALUES ('27', 'admin/user/edit', '编辑系统用户', '0', '1', '1', '2018-01-23 12:39:39');
INSERT INTO `system_node` VALUES ('28', 'admin/user/pass', '修改用户密码', '0', '1', '1', '2018-01-23 12:39:40');
INSERT INTO `system_node` VALUES ('29', 'admin/user/del', '删除系统用户', '0', '1', '1', '2018-01-23 12:39:41');
INSERT INTO `system_node` VALUES ('30', 'admin/user/forbid', '禁用系统用户', '0', '1', '1', '2018-01-23 12:39:41');
INSERT INTO `system_node` VALUES ('31', 'admin/user/resume', '启用系统用户', '0', '1', '1', '2018-01-23 12:39:42');
INSERT INTO `system_node` VALUES ('32', 'admin/config', '系统配置', '0', '1', '1', '2018-01-23 13:34:37');
INSERT INTO `system_node` VALUES ('33', 'admin/log', '日志管理', '0', '1', '1', '2018-01-23 13:34:48');
INSERT INTO `system_node` VALUES ('34', 'admin/menu', '系统菜单管理', '0', '1', '1', '2018-01-23 13:34:58');
INSERT INTO `system_node` VALUES ('35', 'admin/node', '系统节点管理', '0', '1', '1', '2018-01-23 13:35:17');
INSERT INTO `system_node` VALUES ('36', 'admin/user', '系统用户管理', '0', '1', '1', '2018-01-23 13:35:26');
INSERT INTO `system_node` VALUES ('37', 'wechat', '微信管理', '0', '1', '1', '2018-02-06 11:53:21');
INSERT INTO `system_node` VALUES ('38', 'wechat/config', '公众号对接', '0', '1', '1', '2018-02-06 11:53:32');
INSERT INTO `system_node` VALUES ('39', 'wechat/config/index', '公众号对接', '1', '1', '1', '2018-02-06 11:53:32');
INSERT INTO `system_node` VALUES ('45', 'wechat/block', '黑名单', '0', '1', '1', '2018-03-06 14:37:37');
INSERT INTO `system_node` VALUES ('46', 'wechat/block/index', '黑名单列表', '1', '1', '1', '2018-03-06 14:37:47');
INSERT INTO `system_node` VALUES ('47', 'wechat/block/backdel', '移出黑名单', '0', '1', '1', '2018-03-06 14:37:49');
INSERT INTO `system_node` VALUES ('48', 'wechat/fans', '粉丝管理', '0', '1', '1', '2018-03-06 14:38:06');
INSERT INTO `system_node` VALUES ('49', 'wechat/fans/index', '粉丝列表', '1', '1', '1', '2018-03-06 14:38:25');
INSERT INTO `system_node` VALUES ('50', 'wechat/fans/backadd', '移入黑名单', '0', '1', '1', '2018-03-06 14:38:35');
INSERT INTO `system_node` VALUES ('51', 'wechat/fans/tagset', '标签设置', '0', '1', '1', '2018-03-06 14:38:36');
INSERT INTO `system_node` VALUES ('52', 'wechat/fans/tagadd', '添加标签', '0', '1', '1', '2018-03-06 14:38:37');
INSERT INTO `system_node` VALUES ('53', 'wechat/fans/tagdel', '删除标签', '0', '1', '1', '2018-03-06 14:38:38');
INSERT INTO `system_node` VALUES ('54', 'wechat/fans/sync', '同步粉丝', '0', '1', '1', '2018-03-06 14:38:38');
INSERT INTO `system_node` VALUES ('55', 'wechat/keys', '关键字管理', '0', '1', '1', '2018-03-06 14:39:21');
INSERT INTO `system_node` VALUES ('56', 'wechat/keys/index', '关键字列表', '1', '1', '1', '2018-03-06 14:39:25');
INSERT INTO `system_node` VALUES ('57', 'wechat/keys/add', '添加关键字', '0', '1', '1', '2018-03-06 14:39:27');
INSERT INTO `system_node` VALUES ('58', 'wechat/keys/edit', '编辑关键字', '0', '1', '1', '2018-03-06 14:39:28');
INSERT INTO `system_node` VALUES ('59', 'wechat/keys/del', '删除关键字', '0', '1', '1', '2018-03-06 14:39:42');
INSERT INTO `system_node` VALUES ('60', 'wechat/keys/forbid', '禁用关键字', '0', '1', '1', '2018-03-06 14:39:55');
INSERT INTO `system_node` VALUES ('61', 'wechat/keys/resume', '启用关键字', '0', '1', '1', '2018-03-06 14:40:01');
INSERT INTO `system_node` VALUES ('62', 'wechat/keys/subscribe', '关注默认回复', '1', '1', '1', '2018-03-06 14:40:12');
INSERT INTO `system_node` VALUES ('63', 'wechat/keys/defaults', '无反馈默认回复', '1', '1', '1', '2018-03-06 14:40:27');
INSERT INTO `system_node` VALUES ('64', 'wechat/menu', '微信菜单管理', '0', '1', '1', '2018-03-06 14:40:37');
INSERT INTO `system_node` VALUES ('65', 'wechat/menu/index', '微信菜单管理', '1', '1', '1', '2018-03-06 14:40:41');
INSERT INTO `system_node` VALUES ('66', 'wechat/menu/edit', '编辑发布菜单', '0', '1', '1', '2018-03-06 14:40:53');
INSERT INTO `system_node` VALUES ('67', 'wechat/menu/cancel', '取消发布菜单', '0', '1', '1', '2018-03-06 14:41:01');
INSERT INTO `system_node` VALUES ('68', 'wechat/news', '图文内容管理', '0', '1', '1', '2018-03-06 14:41:13');
INSERT INTO `system_node` VALUES ('69', 'wechat/news/index', '图文内容管理', '1', '1', '1', '2018-03-06 14:41:20');
INSERT INTO `system_node` VALUES ('70', 'wechat/news/select', '图文选择器', '0', '1', '1', '2018-03-06 14:41:22');
INSERT INTO `system_node` VALUES ('71', 'wechat/news/image', '图文选择器', '0', '1', '1', '2018-03-06 14:41:22');
INSERT INTO `system_node` VALUES ('72', 'wechat/news/add', '添加图文', '0', '1', '1', '2018-03-06 14:41:23');
INSERT INTO `system_node` VALUES ('73', 'wechat/news/del', '删除图文', '0', '1', '1', '2018-03-06 14:41:23');
INSERT INTO `system_node` VALUES ('74', 'wechat/news/push', '推荐图文', '0', '1', '1', '2018-03-06 14:41:24');
INSERT INTO `system_node` VALUES ('75', 'wechat/news/edit', '编辑图文', '0', '1', '1', '2018-03-06 14:41:25');
INSERT INTO `system_node` VALUES ('76', 'wechat/tags', '标签管理', '0', '1', '1', '2018-03-06 14:42:06');
INSERT INTO `system_node` VALUES ('77', 'wechat/tags/index', '标签列表', '1', '1', '1', '2018-03-06 14:42:09');
INSERT INTO `system_node` VALUES ('78', 'wechat/tags/add', '添加标签', '0', '1', '1', '2018-03-06 14:42:14');
INSERT INTO `system_node` VALUES ('79', 'wechat/tags/edit', '编辑标签', '0', '1', '1', '2018-03-06 14:42:17');
INSERT INTO `system_node` VALUES ('80', 'wechat/tags/del', '删除标签', '0', '1', '1', '2018-03-06 14:42:20');
INSERT INTO `system_node` VALUES ('81', 'wechat/tags/sync', '同步标签', '0', '1', '1', '2018-03-06 14:42:23');
INSERT INTO `system_node` VALUES ('229', 'admin/node/clear', '清理无效记录', '0', '1', '1', '2018-03-09 12:24:31');
-- ----------------------------
-- Table structure for system_sequence
-- ----------------------------
DROP TABLE IF EXISTS `system_sequence`;
CREATE TABLE `system_sequence` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`type` varchar(20) DEFAULT NULL COMMENT '序号类型',
`sequence` char(50) NOT NULL COMMENT '序号值',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `index_system_sequence_unique` (`type`,`sequence`) USING BTREE,
KEY `index_system_sequence_type` (`type`),
KEY `index_system_sequence_number` (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统序号表';
-- ----------------------------
-- Records of system_sequence
-- ----------------------------
-- ----------------------------
-- Table structure for system_user
-- ----------------------------
DROP TABLE IF EXISTS `system_user`;
CREATE TABLE `system_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL DEFAULT '' COMMENT '用户登录名',
`password` char(32) NOT NULL DEFAULT '' COMMENT '用户登录密码',
`qq` varchar(16) DEFAULT NULL COMMENT '联系QQ',
`mail` varchar(32) DEFAULT NULL COMMENT '联系邮箱',
`phone` varchar(16) DEFAULT NULL COMMENT '联系手机号',
`desc` varchar(255) DEFAULT '' COMMENT '备注说明',
`login_num` bigint(20) unsigned DEFAULT '0' COMMENT '登录次数',
`login_at` datetime DEFAULT NULL,
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态(0:禁用,1:启用)',
`authorize` varchar(255) DEFAULT NULL,
`is_deleted` tinyint(1) unsigned DEFAULT '0' COMMENT '删除状态(1:删除,0:未删)',
`create_by` bigint(20) unsigned DEFAULT NULL COMMENT '创建人',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
UNIQUE KEY `index_system_user_username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COMMENT='系统用户表';
-- ----------------------------
-- Records of system_user
-- ----------------------------
INSERT INTO `system_user` VALUES ('10000', 'admin', '21232f297a57a5a743894a0e4a801fc3', '22222222', 'zoujingli@qq.com', '13617343800', '', '22405', '2018-03-13 15:04:35', '1', '1', '0', null, '2015-11-13 15:14:22');
-- ----------------------------
-- Table structure for wechat_fans
-- ----------------------------
DROP TABLE IF EXISTS `wechat_fans`;
CREATE TABLE `wechat_fans` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`appid` char(50) DEFAULT '' COMMENT '公众号Appid',
`unionid` char(100) DEFAULT '' COMMENT 'unionid',
`openid` char(100) DEFAULT '' COMMENT '用户的标识,对当前公众号唯一',
`spread_openid` char(100) DEFAULT '' COMMENT '推荐人OPENID',
`spread_at` datetime DEFAULT NULL COMMENT '推荐时间',
`tagid_list` varchar(100) DEFAULT '' COMMENT '标签id',
`is_black` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为黑名单用户',
`subscribe` tinyint(1) unsigned DEFAULT '0' COMMENT '用户是否关注该公众号(0:未关注, 1:已关注)',
`nickname` varchar(200) DEFAULT '' COMMENT '用户的昵称',
`sex` tinyint(1) unsigned DEFAULT NULL COMMENT '用户的性别,值为1时是男性,值为2时是女性,值为0时是未知',
`country` varchar(50) DEFAULT '' COMMENT '用户所在国家',
`province` varchar(50) DEFAULT '' COMMENT '用户所在省份',
`city` varchar(50) DEFAULT '' COMMENT '用户所在城市',
`language` varchar(50) DEFAULT '' COMMENT '用户的语言,简体中文为zh_CN',
`headimgurl` varchar(500) DEFAULT '' COMMENT '用户头像',
`subscribe_time` bigint(20) unsigned DEFAULT '0' COMMENT '用户关注时间',
`subscribe_at` datetime DEFAULT NULL COMMENT '关注时间',
`remark` varchar(50) DEFAULT '' COMMENT '备注',
`expires_in` bigint(20) unsigned DEFAULT '0' COMMENT '有效时间',
`refresh_token` varchar(200) DEFAULT '' COMMENT '刷新token',
`access_token` varchar(200) DEFAULT '' COMMENT '访问token',
`subscribe_scene` varchar(200) DEFAULT '' COMMENT '扫码关注场景',
`qr_scene` varchar(100) DEFAULT '' COMMENT '二维码场景值',
`qr_scene_str` varchar(200) DEFAULT '' COMMENT '二维码场景内容',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `index_wechat_fans_spread_openid` (`spread_openid`) USING BTREE,
KEY `index_wechat_fans_openid` (`openid`) USING BTREE,
KEY `index_wechat_fans_unionid` (`unionid`),
KEY `index_wechat_fans_is_back` (`is_black`),
KEY `index_wechat_fans_subscribe` (`subscribe`)
) ENGINE=InnoDB AUTO_INCREMENT=2324 DEFAULT CHARSET=utf8 COMMENT='微信粉丝';
-- ----------------------------
-- Records of wechat_fans
-- ----------------------------
INSERT INTO `wechat_fans` VALUES ('2227', 'wx60a43dd8161666d4', 'oGsrkszQSaou6tKM-4c2Tl625Ta8', 'o38gps8yp0qvO2Oa0OelGA66uX8k', '', null, '2', '0', '1', '\\ud83d\\ude36 夏俊杰', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLAWLLrYeJLDoL7FaicsJ2zbI92l04ibMIk8ym62Unzg9ZhatQDXqicXkXjjVDbicN9dK5GRVz2Pcfv7JA/132', '1484634161', '2017-01-17 14:22:41', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2228', 'wx60a43dd8161666d4', 'oGsrks1qovmJUGycmiAKSry3ISp4', 'o38gps4pJjHGkXVGe1aXxgzKJ7u4', '', null, '', '0', '1', 'Y.c', '1', '中国', '贵州', '贵阳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhXkkCBI9xTlsSFWhic9MhhoVcFsjR7AS1u3sOQCQdZYpt4MIaIvulmZhibBT9ibmuPiby7Qdic1NPjnnQ/132', '1517301228', '2018-01-30 16:33:48', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2229', 'wx60a43dd8161666d4', 'oGsrks9XUFq6O6g2len8l2TaS6dA', 'o38gps5khVMMG2trfekmkNX13VOI', '', null, '2', '0', '1', '成哲', '1', '中国', '福建', '泉州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM5BicBM70CuKklke6GvFFGzPibK60aR42zibKfpOe6xzwJFlUreOmTtagKXYyK6p2tlqaKAx3ISMyaCw/132', '1497508654', '2017-06-15 14:37:34', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2230', 'wx60a43dd8161666d4', 'oGsrks9i1WGC341Sw8YSzLh_L-ws', 'o38gps-IeXhG6ghhF1oUHmPrC4mw', '', null, '', '0', '1', '胜!!!', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKqWzwNeqjpichF75WDj9sib9oexCiaU8sY3fZtmNUA3Qnc7wDKG3csRuIrN5wbfospITr4icqa89IGUruHOHQstdEy4/132', '1499953283', '2017-07-13 21:41:23', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2231', 'wx60a43dd8161666d4', 'oGsrkswZ9aRbMxNeADBiIoFs7Ixs', 'o38gps5cxg7TIJjhW40hcfx3ceM0', '', null, '', '0', '1', '大豪', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKqWzwNeqjpichAgPGia3yWJjWELUkZB1ZeNLiaA5FUtiaicc4t1nicDW8j7bllJVnAlKNYOD3hrXiaricadxuzTUveqIghR/132', '1501054131', '2017-07-26 15:28:51', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2232', 'wx60a43dd8161666d4', 'oGsrkszCVFA8v-3_FGYhmTRiURlc', 'o38gpsza67FfLSapYrfBTo1Zu5zw', '', null, '', '0', '1', '杨永安', '1', '中国', '陕西', '汉中', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnjFHIKUiabCChkMVagHWKWmHrtxcgfrSRM9SrYjhcXvXTIuTwcfoT2g2HjdckiaxUyicU2T6hcKazca6IzF1vKz2Jic/132', '1514250857', '2017-12-26 09:14:17', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2233', 'wx60a43dd8161666d4', 'oGsrks8FUHqgI4nOt8JJP8qd8ioE', 'o38gps7jMkHnBSV6JN-Rpgog6lu0', '', null, '', '0', '1', '生命精神', '1', '中国', '浙江', '杭州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1nJzR8unwfcHwsPJh1P5SWGcxK4tCMh0to6KrsRCzWn8MZLibmeD6bMgItT1bs8ROmrNahJib2lDhAQ/132', '1476402502', '2016-10-14 07:48:22', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2234', 'wx60a43dd8161666d4', 'oGsrks2Mv-0flhVG8Oi-bZZSdRFE', 'o38gps1COGG9--oRbPIazGFPmtcE', '', null, '2', '0', '1', 'Howard', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnjFHIKUiabCChlvlBvNO4ItvQANPqmdKRIoDJTXm56vaS0ic2luQH0MwyMglnuYJlrVHNJp78RhYkknibSZI68RvZp/132', '1466066875', '2016-06-16 16:47:55', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2235', 'wx60a43dd8161666d4', 'oGsrks5PzhNfMRmV1E5dL6Ydsm4A', 'o38gps9lnht0uxYR6cTlnntT6bA0', '', null, '', '0', '1', '_Xiαпg™', '1', '中国', '广东', '深圳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1mkKSyWyia8EEvwt23OaKQmcibicbzKmyDHP8HNeHEHqc552NUtZeoTZ4PhBNYWvYyae5WeSa6KRoq4gtwciamjI9DI/132', '1496038821', '2017-05-29 14:20:21', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2236', 'wx60a43dd8161666d4', 'oGsrks9Sl2pcIhFCLoXBwxFi5P8w', 'o38gps2DCEuBJkh-5i9kGg7lxNsE', '', null, '', '0', '1', '在路上', '1', '中国', '上海', '浦东新区', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCicuAKzkTwgEBjApfbJO4leQhpxR3kLsszfu3qcNaIzAsod4jW06HasuBCgFURe13b1NiabBHblpcQ/132', '1496907572', '2017-06-08 15:39:32', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2237', 'wx60a43dd8161666d4', 'oGsrks7bq2oijI9rA38zZ1KxTHyA', 'o38gps1-O1OEFn6Fle0jQGoDuDdg', '', null, '', '0', '1', '无形…', '1', '中国', '四川', '成都', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFlqFUCaneic7zYBL9qFNibfCSyyTxQfRwlmYGE7EL54lHJ6DbuWUqfbvTLnWqiaMYzGSiatDNqwKwuE2z1OLKygepqe/132', '1510799509', '2017-11-16 10:31:49', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2238', 'wx60a43dd8161666d4', 'oGsrks68g1elLyggOA9wUXezjkVY', 'o38gps-clgtfbM1BjVHTV7OdQTiY', '', null, '', '0', '1', '瓦力', '1', '中国', '河南', '洛阳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCM2O5qico9GsVRoicn1HHh6BXuyJ1xUkjuc0icq1e1DN6hh87P5KchiblFkpYic9cHmlcQwBXdwKebQBg/132', '1498804317', '2017-06-30 14:31:57', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2239', 'wx60a43dd8161666d4', 'oGsrksydSQWBQZBegH8J5u6CM8Jc', 'o38gpszDg5iN-1GlAObk6Lj4RhfM', '', null, '2', '0', '1', '一卡易|谢永发', '1', '中国', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1mnLu0ourZB5uibPZM6m9cCXO2AmPTHHciaMjgLbibRTjpjKwrbFmhqfPKkXbttWZj8uGibcaphnicibSng/132', '1492329188', '2017-04-16 15:53:08', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2240', 'wx60a43dd8161666d4', 'oGsrks-mJu7hqiRMhNDPVGR0Fu9o', 'o38gpszLGFY86inXygfs3klN5QMI', '', null, '', '0', '1', '叫我小周', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEIxKQLuhIBibnLUkbHjfyiaKXBWaZcWbS6vibLAiaicFDkMWyxia4Mt75pUMp0WiczciaEUM8keeQg71D7X6A/132', '1461314119', '2016-04-22 16:35:19', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2241', 'wx60a43dd8161666d4', 'oGsrks0Q0Q5WAT-aSKHuJsmXjojU', 'o38gps_d4aGPEpf6eyRH73SAuCuY', '', null, '', '0', '1', '李彦18127877079微商系统一站通', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1mkKSyWyia8EEquArYSyUgT9dHEUBrFMvuUVWTAQMVcTpicEUicafhGqzYHyslrvLUvZ5TziaEKJvcYQkq6hOBw5qNk/132', '1501207299', '2017-07-28 10:01:39', '', '0', '', '', 'ADD_SCENE_PROFILE_CARD', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2242', 'wx60a43dd8161666d4', 'oGsrks1_4lRQum_CKGWAVsDZxYps', 'o38gps33cPD8u2cxNx5evYBYIVs8', '', null, '', '0', '1', '逸尘', '1', '中国', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLBia7xaYiafnETkiczAxjqJsAuyEiapPbjcEFqO3HWtPC2Ekny5jY1Dq8dPCLDRZGFoxBy1ELOia1hLkDg/132', '1520303270', '2018-03-06 10:27:50', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2243', 'wx60a43dd8161666d4', 'oGsrksx8x7WPo5hELWahpPnbDcKw', 'o38gps1OSpEMht-JsrSZ2-WwqZpY', '', null, '2', '0', '1', '蚊子', '1', '中国', '浙江', '杭州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM6W7naf6WCsmEcEKXZ7EDlHR4RtbKzvfAOxDf4ZicAZ9yRU0MA3icVW0PSmgHR7hd7AR8JZQcumBKxw/132', '1499867678', '2017-07-12 21:54:38', '', '0', '', '', 'ADD_SCENE_PROFILE_CARD', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2244', 'wx60a43dd8161666d4', 'oGsrks6zpXTf3A9n6hJeElMM1CF0', 'o38gps31jfVXc2XAHI-kkkb68btw', '', null, '', '0', '1', '辫子编程', '1', '中国', '河北', '石家庄', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1lKOpDLzcicpHdUPtFHovDeujrfCwD1ibRplDic3W5aaziaZAFoX22085f82zl9FGmjGIADnPsKIgGaSg/132', '1505962042', '2017-09-21 10:47:22', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2245', 'wx60a43dd8161666d4', 'oGsrks7b6Vr4xR5zEfUxfkocvpFs', 'o38gps1zUbMdHqVrneOcRX2s9w-Y', '', null, '', '0', '1', '叫我小贤\\ue131', '2', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaa2ZABsHxhbDstmoknTNNDJ5UaLHQsbkvpjJUAT2yBtrgS9VA8v5CbmDsHKKiam8FNDuDqHudfVtBPIYcw3eicw4/132', '1500262365', '2017-07-17 11:32:45', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2246', 'wx60a43dd8161666d4', 'oGsrks1-omPbZPIyJjqDHGrJ2uNU', 'o38gpszg_-jIQYq6Iy2zBj3N5ndM', '', null, '', '0', '1', '周峥宇\\ud83e\\udd20我又胖了', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEJDT62uNn5Apd4hOGVbkYLIr0JeCuZiakMRYnpqcEibwbJhgd6tKLiba66NFNsFbWibshGup3ITAKsUhA/132', '1500284215', '2017-07-17 17:36:55', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2247', 'wx60a43dd8161666d4', 'oGsrks3xwnOorGl_tvt9oupQLxwY', 'o38gps8HQRZr3mk32MdM-KCm1rAI', '', null, '2', '0', '1', 'Aries', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaa2ZABsHxhbMBdNOwMpBIJNI4IguZ4d6BzQ6yKVxHWJmvNNZzjrMbloHj0Tm65p996cWmgib51WkLzxQiaNZ3gtl/132', '1499998442', '2017-07-14 10:14:02', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2248', 'wx60a43dd8161666d4', 'oGsrksxL7JHpBw-JQkzZlkoSKL_E', 'o38gps-YmcToFI9KPCIU50EzyApM', '', null, '', '0', '1', '动感排骨', '1', '阿拉伯联合酋长国', '迪拜', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1licrjBnJJkGRAIetAibGZMqsdFpIBUqjsL0CpTbTLWJwz48FHKZNj5VTOeQBBlJ8ufib3Qb3pLYvYfA/132', '1493167619', '2017-04-26 08:46:59', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2249', 'wx60a43dd8161666d4', 'oGsrks_ReHkrfr-fHmd9CROHrX7k', 'o38gps3KOfAj3hqGaLuYdi-F8Pcw', '', null, '', '0', '1', '(´-ι_-)', '1', '中国', '湖北', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM5Ba4Ha2y7wJQ5pH33bxJOCJXW4kHY48gwN2iaNB5L1Vib8eHxAzTnticHb9g2aLpEjAcRzqOknMNlMw/132', '1495683774', '2017-05-25 11:42:54', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2250', 'wx60a43dd8161666d4', 'oGsrks4vN3pEBSCIwOB8_Juat5l0', 'o38gpswFGKNyVQe8WEiEPj5V_o-E', '', null, '2', '0', '1', '喧气...炎魔', '0', '', '', '', 'zh_CN', '', '1467451373', '2016-07-02 17:22:53', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2251', 'wx60a43dd8161666d4', 'oGsrks8wZprONrqzxV50sUxsbyEM', 'o38gps6H7P1RE2pkvyLgHhK5X5yQ', '', null, '', '0', '1', '小朋', '1', '中国', '陕西', '西安', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKpZfaTicicM8gaa6Zyz3ZB4pLv8YZbq0yN35tS2H27fdAkkQIA1FlmHKr4c0Uz6G8nR3zLxNsPia2qzRNjygD57ia6s/132', '1461829132', '2016-04-28 15:38:52', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2252', 'wx60a43dd8161666d4', 'oGsrks5h-iq2PsHWnomgbHQW7cbI', 'o38gps2gTDZrgo7xDQcBnOv6kSCw', '', null, '', '0', '1', '', '1', '中国', '北京', '昌平', 'zh_TW', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM6P5wB3cJN5SkRHzwKTJ8Ixtyk8LDcA6zvTPTdkaBMicypiaxOTVYH2P1nib8wwmCIkrUkvskut1sVXQ/132', '1511144044', '2017-11-20 10:14:04', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2253', 'wx60a43dd8161666d4', 'oGsrks-4KSMJUTVBrkiZwmKFnKkw', 'o38gpsyHiwv9XeLT7FnB-X-wXnrY', '', null, '2', '0', '1', '杨志斌', '1', '中国', '江西', '吉安', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFnfDEMRYcBCAVHLhWduAGWWh1SmEfGnth6Qpibvzhiax5tUePAVg6w3CjbibUrACRrG9HxegTt0zCJ6A/132', '1468834443', '2016-07-18 17:34:03', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2254', 'wx60a43dd8161666d4', 'oGsrksx6pGST6OZpQd3kxVDVe0-4', 'o38gpsxqDndY2CNb-wKqzfQOCxOs', '', null, '', '0', '0', '.', '1', '阿鲁巴', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1ktoYc3JFOdy0UBggCicqR6QMCp09kTIhG96h6dRwLAI4CrTJ7AKR95n8CVKUjt1pftol3Sias1WFvQ/132', '1506388223', '2017-09-26 09:10:23', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2255', 'wx60a43dd8161666d4', 'oGsrks_ByPI_LoQcutU_Efgh9VFo', 'o38gps-hP-kkUfiDRrPNNgHt-2sk', '', null, '2', '0', '1', '李兴宇(大宇)', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaa2ZABsHxhbH3GFewwtabnLnd1dFvjVwvH232efzzR96aia0iaur7EhEC1NEuTQRKcbfiaVYNxt0Wplkj4nkEU1sw/132', '1466065790', '2016-06-16 16:29:50', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2256', 'wx60a43dd8161666d4', 'oGsrks33jf6hGYbr-fN4hl2O3t2E', 'o38gps0VZNX4tMBGf9wc62ze50iY', '', null, '', '0', '1', 'clement', '1', '中国', '河南', '郑州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFnStnyIWbGOSib3R3feZytljzGuMh82Q9oXLJejdDoXGhJjGtRXicXVJcAmc8KRBQOIL7dMKp41YXVw/132', '1501581665', '2017-08-01 18:01:05', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2257', 'wx60a43dd8161666d4', 'oGsrks0JJffPwk-8i9k1omC812ho', 'o38gpswRdt7MOJ0qTYkvcTzLVOL0', '', null, '', '0', '1', '孙海锋', '1', '中国', '四川', '达州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLDpWmRlKAcow16dZuXYKokRyX8kiazDtWEjXXOiaYaAXRjdrLribt8eB7pEodKzWqJ0gmdfoqlDbIG5g/132', '1499827720', '2017-07-12 10:48:40', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2258', 'wx60a43dd8161666d4', 'oGsrksy8u0sYaQ3n1oYliCkMzC68', 'o38gps2Tx8cdNfGzaEis2Mc4pvTI', '', null, '2', '0', '1', '周星星', '1', '中国', '陕西', '西安', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKpZfaTicicM8gaXUd33E2xm49mibmfE14cLwH2ROdxK7kI8vsVeVPOUvKZgE6JcwUmX0ZXWAVP44dKeFLUIz4zDWtia/132', '1498098232', '2017-06-22 10:23:52', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2259', 'wx60a43dd8161666d4', 'oGsrks23Z-JsvGGn9rFSNqBnW9ik', 'o38gps2HY7h23CJoVvk5PM303kNY', '', null, '', '0', '1', 'hxxx', '1', '中国', '广东', '深圳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaa2ZABsHxhbOOaHOUFD9B5wSic3q3icK8EE58G8PY0f4nALGOWdia25Z7wqSSanlfK6tBGuysyTenTLSJCBLSVnXF/132', '1506316538', '2017-09-25 13:15:38', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2260', 'wx60a43dd8161666d4', 'oGsrks_hP6tLtqnPLDO2c2mdCiKU', 'o38gpsyh30CKHUULhEf4ILUQqZ5s', '', null, '', '0', '1', 'Promise', '1', '中国', '广东', '深圳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKpZfaTicicM8gaUeOuxB80yqBYX6YiaYUkIS54eEmUpelLPvFd0uXfeoreo5wdb4uxSeYEaia5IYw2tiaS98Pg0Q64XK/132', '1509438514', '2017-10-31 16:28:34', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2261', 'wx60a43dd8161666d4', 'oGsrks8MgmWGcHiTXw8-MVOud_jk', 'o38gps3vNdCqaggFfrBRCRikwlWY', '', null, '2,195', '0', '1', 'Anyon', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKpZfaTicicM8gabdQdx2gUg5S8g0bpwruPiccFZRPhicvIiazQISqcia9kKQBETsYnJiakE1DSFhUN7t529jXh7iaibBjB5z/132', '1520407544', '2018-03-07 15:25:44', '', '0', '', '', 'ADD_SCENE_QR_CODE', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2262', 'wx60a43dd8161666d4', 'oGsrksyuQFA4llVF36HPs5Gv2UMQ', 'o38gps-uNjXogTeIcCq_Fs5d_J6E', '', null, '', '0', '1', '晨曦记忆,过往云烟', '1', '中国', '广西', '南宁', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1kJibfasazNpwQbdwJo28iaYfQRg5b7mPTQib52JHUSjrIaZ4uTO3HfriaAM6v9T8fpr3tpenv5mI9y8Q/132', '1497952981', '2017-06-20 18:03:01', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2263', 'wx60a43dd8161666d4', 'oGsrks9yOCbqOASjxEwfMwVNildI', 'o38gps79rC4d7rwnfhmWnxXi_1i8', '', null, '', '0', '1', '狒狒', '2', '中国', '湖南', '长沙', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaa2ZABsHxhbGVF36I9BzRtZKsHVnr8ucPeqwR03EAYXMLC36aN71dNJLc8axpaMkpDCepQLmltyZibjtZYeqfwe/132', '1461593762', '2016-04-25 22:16:02', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2264', 'wx60a43dd8161666d4', 'oGsrkszZVl6PTAtbzrmfkUl4KyLM', 'o38gpsxFtOXxBpZ9AjXs5RkEfPj0', '', null, '', '0', '1', 'Chen', '1', '中国', '广西', '南宁', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/QxhD6QevWDypRKO3jAbt91libGBOUmV1GibwYNJ7mQmP5xkdUDVoVXvN36bYeicD71pTFL4SgTbeqhe8DVvibt3uL6adwOt8J8bH/132', '1500003321', '2017-07-14 11:35:21', '', '0', '', '', 'ADD_SCENE_QR_CODE', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2265', 'wx60a43dd8161666d4', 'oGsrks7qKxIVsxToJYHuRANPEFB8', 'o38gps83KBbjv_gvAA41Hf2JTBDI', '', null, '', '0', '1', '谈德茂', '1', '中国', '湖北', '武汉', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFn6rUOLzb2HTQSoVHmHiaicqz45Td0ocFib53iaAzFicpuFwR9QAt8X87eotIhib1s69T8syxMxibiatJibGQw/132', '1504061982', '2017-08-30 10:59:42', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2266', 'wx60a43dd8161666d4', 'oGsrks_Yf9S9KemX-5shUhvPkWSk', 'o38gps_3EjXgILhDBDRhhrD7DMkk', '', null, '', '0', '1', 'NH', '2', '中国', '陕西', '西安', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaELPibepDuGJ8xMgJCJRvBfwjVyq390nibich61YlXNFFia4aibvA4jibvcQtwLiczucKrdOpC25RHrReDSUA/132', '1461314624', '2016-04-22 16:43:44', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2267', 'wx60a43dd8161666d4', 'oGsrksxRpWEHDH9IdIxdus8_h57g', 'o38gpswZkDihqLaHEIgCYg2rDFek', '', null, '', '0', '1', '梁金城', '1', '中国', '广东', '湛江', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaa2ZABsHxhbKOjhibtPQbN6WE2l1hqFEjZYPlHxMeEjoXiaP8lnbyTmzRUxgWGcgwibTcthlLdyAAs4pwhsgFYpIc/132', '1509860364', '2017-11-05 13:39:24', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2268', 'wx60a43dd8161666d4', 'oGsrksxKC6HssWvXSv2hHXNFHf6M', 'o38gps4ssW_HpC_wiML44kJDPObo', '', null, '', '0', '1', '山里人', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/QxhD6QevWDypRKO3jAbt90Hc72JgV7Go0ygPRztzQXn5OBn4sTD7icSJTzrUsiaE9gGE7oPaNRmXicZsd2OVQAbZN83VswO2rmd/132', '1497665032', '2017-06-17 10:03:52', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2269', 'wx60a43dd8161666d4', 'oGsrks3QCAmS0w84Rz-vEId_vEjE', 'o38gpsyhNsz9oufVc9cJWX8YTkTE', '', null, '', '0', '1', 'Biao', '1', '中国', '广西', '南宁', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFnLq4hSElRXEqHibwT5P6gee7Q9dk9ca8icSCBhHnTNbh9KteCYKgepTUar9USzJlZLX3TvvpFVCsU3fNXyby3Bky/132', '1505788891', '2017-09-19 10:41:31', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2270', 'wx60a43dd8161666d4', 'oGsrks6H0hBnuX9dRGeqNQmoFm_Y', 'o38gps0ZJKvxjEc0N2BOgR-T1doM', '', null, '', '0', '1', 'hhaoqin', '1', '安道尔', '', '', 'en', 'http://thirdwx.qlogo.cn/mmopen/KULsUKmynFu6SiahhNaO6M5RmJZYJTEM8TcsuiaUiaDuUh6NuQzx17CZ0JrU3XD8vzUvCdhPfT8Hcxhian6kY96ZqIgOfta4Vv5Z/132', '1513841189', '2017-12-21 15:26:29', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2271', 'wx60a43dd8161666d4', 'oGsrksynwJRL7pBTOshy-iMzFwOc', 'o38gps-4TexA575MN0Qy_x7hPeGU', '', null, '2,195', '0', '1', '黑马\\ue419青田嗨购', '1', '中国', '浙江', '丽水', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEKDmibBPic7ia9uCAznbmiacpXjlPLbK8RO6DunGb4BKLlaK9szMae6p64xtmkN1hIAmiaHWwEyeKBEjZ3GJo7bUc0AqovWRn16icSL4/132', '1520417834', '2018-03-07 18:17:14', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2272', 'wx60a43dd8161666d4', 'oGsrks68I0iO8K1a-ovuXlQbe6ek', 'o38gps35ZFbur02-CpnFoCJ-a_BM', '', null, '', '0', '1', '代号为纯洁\\ud83d\\ude43', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKrBw3cFObrgH5sPDvLic7on8pdfrgRSVXicBEiaJ8XXsrojeAma7SHIL4vWAibnYhpRYYzklVO5OhhQ3Yjngr2mp3Ag/132', '1487058795', '2017-02-14 15:53:15', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2273', 'wx60a43dd8161666d4', 'oGsrks5oAnVDeARhvzJsXkv9cwj0', 'o38gps2FSyO8uilTJiC5RqaqPptQ', '', null, '', '0', '1', 'Miranda', '2', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlK9MUdQ3sMKzPChibZRlLKNDfZQRU2OUshtAyFsUZL0BhxbrR09zrH1p1QFRb67gbKm0oaG6GSl6y/132', '1461418982', '2016-04-23 21:43:02', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2274', 'wx60a43dd8161666d4', 'oGsrksw6We2OFFxFcjtKgvHK9f10', 'o38gpszO1lJ05I_jRV0vUNmFzZR4', '', null, '', '0', '0', '衣先生', '1', '中国', '山东', '青岛', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFmr7dAfxG0unedyDjK6rjffLsvEPGZHqWptiac60Y4Ts0U8IibDvGzic4iaNaO4Hx5RzPGlM0gkLPnolyzSUIMsDj2k/132', '1520302268', '2018-03-06 10:11:08', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2275', 'wx60a43dd8161666d4', 'oGsrks_cMX730air6ZKOSPhUv5bI', 'o38gps5zUa08f5ivxsv10AqPVTM8', '', null, '', '0', '1', '阿科', '1', '中国', '湖北', '荆州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlCrtvWZCGVUsTQpZzGR53Ykyg1rjg5jTWiaEDQKdtsewAwEXFavouZcwfOAF390ibDC9MXWOdoDwicy/132', '1517735573', '2018-02-04 17:12:53', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2276', 'wx60a43dd8161666d4', 'oGsrks43DcAGrJnOczRRYbEywK_A', 'o38gps-K1CBkMth56oq0YpiP7z6s', '', null, '', '0', '0', '叶之伟', '1', '中国', '山东', '济南', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/KULsUKmynFu6SiahhNaO6M0NicAD2zcuYiaCLolMdp0YicmTqjzoHTst50GQJtjxBRKpG4SKP7yFzhpVYx4FQA0MguicpXwnwUJca/132', '1515672598', '2018-01-11 20:09:58', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2277', 'wx60a43dd8161666d4', 'oGsrks6KXJGK44csA7Ye6kIfbLn4', 'o38gps2fH8aFwmFhFhU4Aurv18os', '', null, '', '0', '1', 'UM - 15524468881', '1', '中国', '辽宁', '沈阳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFmr7dAfxG0unQpG2L0JFNuvwW19VD6ZuhR3ycpbk1SjIp4daCm9sdrzWI7E4ZjlXbibRcvy1JKHYc9U7XPAQ3W8V/132', '1516189815', '2018-01-17 19:50:15', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2278', 'wx60a43dd8161666d4', 'oGsrksyJ9EZJAjlzQdZnGByZiwyE', 'o38gps9GErwzTtZPTiNPC9f8ay1s', '', null, '', '0', '1', '', '2', '中国', '吉林', '长春', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/KULsUKmynFu6SiahhNaO6M3MunrZR1ACAIalhmLGWSs4RHhY6d4ibglDGJXypxhmpDrcgb50muM37bR3wZTcpjzlGP3LQ2KFJR/132', '1511158120', '2017-11-20 14:08:40', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2279', 'wx60a43dd8161666d4', 'oGsrkswvewcgA2obzWXeCj_yIHzs', 'o38gpsycVcwBKD3CfXL4hhzvOgt4', '', null, '', '0', '1', 'linf', '1', '中国', '上海', '青浦', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlNiaEKOh52TwmbCSiaUavoqRAGZvgjlcEbgibZlHUODepwaicMcME7EYD5q7wicOPKBKtEIYzFicibES4gK/132', '1495794329', '2017-05-26 18:25:29', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2280', 'wx60a43dd8161666d4', 'oGsrks2xiOxVbOWvaJYHEWkGxzWk', 'o38gps-cq3BpRloot4Zn_SgkERIU', '', null, '', '0', '1', '瑋瑋', '2', '中国', '湖南', '衡阳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1mWdjxsYDFxLgNia0zvtXj9NTLNic1btoLLpIGVu6CviafENqODPtZ4icH7YL07ImRciaEc6BwlJRmDxVfxic2pIiaeOTL/132', '1472542553', '2016-08-30 15:35:53', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2281', 'wx60a43dd8161666d4', 'oGsrksyLTQeGsy4ePCY_yKfBYMF8', 'o38gps2VZzGMKIpQyebRKfv--5Gk', '', null, '', '0', '1', 'lemon', '1', '中国', '湖北', '武汉', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlKfwQcmu0EqdAzpibIiao3Sr8oHbBt2sObibUHOJj2errQyfbRW29TTTooI4eCJWiafPXAh9rUntlFQT/132', '1508837682', '2017-10-24 17:34:42', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2282', 'wx60a43dd8161666d4', 'oGsrks0jW9y25wKFxLurrUPrxvFw', 'o38gps-VE_f7mOEfN5NRf9fzYLNg', '', null, '2', '0', '1', '暴躁的jk苏', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1mWdjxsYDFxLjE1gRKdbiaibvesz4iaXN4wCEJX49wKuVUhjic57UicRjT6mbaEFVeFUvwQUkffRjP7za5ezHicNCr0WZ/132', '1476260898', '2016-10-12 16:28:18', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2283', 'wx60a43dd8161666d4', 'oGsrksxKqIJpVprxJUsbAdZZ5tjU', 'o38gps9nSy6jFfqk8dS5QhtPh8nc', '', null, '', '0', '1', 'JHChan', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/bnoQ9ztOjnTj93lo94aVb4ZIwA4m2jKBZnqVpcjm7fKqua8fkgp8mIRwicl68uGpxZ65GibLCzJoNcbOVWbpQRYWib1D6VCGSrC/132', '1508309343', '2017-10-18 14:49:03', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2284', 'wx60a43dd8161666d4', 'oGsrks8ZUdqV1DJ7nAqWXCtli5YI', 'o38gps14GCla4tRvK5vLpYWyYeQU', '', null, '', '0', '1', 'fantasticcat', '1', '中国', '四川', '成都', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKpT2WiaPkStSibc7ROfOldhenn4G8hJMsL3Ga3q63ia3vEibytQF1IRqo7flfI62iaUuOIP3OECU217Cfib6icnxBSDGsC/132', '1504289794', '2017-09-02 02:16:34', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2285', 'wx60a43dd8161666d4', 'oGsrks3bi69ROBM7wdcnwLiCJN7g', 'o38gps0kRV2gBR97_kn69yXfiQ4o', '', null, '', '0', '1', '༄ེིོུ張偉ཉ྄ིོུ', '1', '中国', '江苏', '南京', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlPKWmdmurlyTJvu98zJvDCfmfvHQUjPhackiatOzWQbHHGntrocpaicEwNtmNAtVuCEkAZ9okPyaWf/132', '1512742506', '2017-12-08 22:15:06', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2286', 'wx60a43dd8161666d4', 'oGsrksy0OwP1IYm09qo_kaXyCxgc', 'o38gps76Z2Pn1Iv6y85sDS0jIgG0', '', null, '', '0', '1', '.', '1', '中国', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM7rYo6NN0asQjBKCjlPibyyxichoibBXLY1VeKHDw7dmdJLGHJzQtbqOgTdpsj9GGBLu77Ef2ezFp6g8qgDuhfKCQte5LcECqlPtw/132', '1503387391', '2017-08-22 15:36:31', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2287', 'wx60a43dd8161666d4', 'oGsrks8wNGTqTCcLsqXSLYAVeio8', 'o38gpsyU0XajgtHzkCbd5tGhTdEc', '', null, '', '0', '1', '劲松', '1', '中国', '湖北', '武汉', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlMDlhvyJq18DBIrKUJ5Fu2ibCeltbQAPEtvloLd1qornF5zHrzR4hODCuHxoYUk0daLOhsQd4WaSS/132', '1519129201', '2018-02-20 20:20:01', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2288', 'wx60a43dd8161666d4', 'oGsrks--NFosz0qEXlty29HMvDhU', 'o38gps_VXV82i7k-aDEBxf73_wqc', '', null, '', '0', '1', 'xuhf', '1', '中国', '安徽', '合肥', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlPV94mAf8GIAficLU4icVjqbaRicBnUjry0qLk9tNvfibKcWsiba4fWObiaYs06bKK3mrd2KwpQN4ibKticR/132', '1498359038', '2017-06-25 10:50:38', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2289', 'wx60a43dd8161666d4', 'oGsrks9HRARkEHMSqsZKh5L0kfhw', 'o38gps-a5LvX7yhK_q0RMmavHLZs', '', null, '', '0', '1', '柯靖', '1', '中国', '重庆', '江北', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1mcAn4p8XickiciclKy1eG2Jxl41kaBGbib75xg8ocqKSAVuytCTKKbNoibARg3GPQDQyzjp5coqdZNBQiaEAWGtIgo9p/132', '1499769194', '2017-07-11 18:33:14', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2290', 'wx60a43dd8161666d4', 'oGsrksxBQW56NSMZvXuBDIDJh1iM', 'o38gps2sIrPg2g74VLwGgY-FRQz4', '', null, '', '0', '1', '二流子', '1', '中国', '四川', '成都', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM7sk1IrZ7LEPG52cktWKpB0f2xYzsxWJOBibfS6Ct9R2ZGyL61h43Y2gibLmNsf3pACIRomicqicdV14jzKZia4sibQhUBhUIAsmqtNc/132', '1502625756', '2017-08-13 20:02:36', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2291', 'wx60a43dd8161666d4', 'oGsrks4gMjJSBSWQbtyxwJiZQj18', 'o38gps0Trh8Ggyc7mwBH2XIRIAEc', '', null, '', '0', '1', 'Mr. La', '1', '中国', '青海', '西宁', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlIw66OXtcgoHictuwB6ZyWRQGOkSeEuibMytbxyZvPmM6r1HJHdia4Hgr07toMBj4PczIlfjnIVAtaB/132', '1516598324', '2018-01-22 13:18:44', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2292', 'wx60a43dd8161666d4', 'oGsrks5EfMlOFmfmwTwYG6WFlGCw', 'o38gps3PQyzns75wVKupe_8zQN14', '', null, '2', '0', '1', '杨翊(yì)', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFlhdxossu0UW6MKUKGvJObib9TXaNibDInOkPticBCeCTRl8HOibh8e0SLmFvusIspPuJU5EdRFnyKTibZOUCzB6ibk2G/132', '1464141541', '2016-05-25 09:59:01', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2293', 'wx60a43dd8161666d4', 'oGsrks5arhP8js3-C_Mc2tLOaB34', 'o38gps5soAzcDO6PvbTz3XE88VIY', '', null, '2', '0', '1', 'WGZXU', '2', '中国', '广东', '梅州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlHPCX0qeQZpGxaJRlwA7GjjKY30Rr4HpW9GwibzqdV2mSiaYYypDbqLDZyRWQiatcP8YoGD552mYgiaH/132', '1472019816', '2016-08-24 14:23:36', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2294', 'wx60a43dd8161666d4', 'oGsrks9Bl7SPEjPgN-ui3eFMhDog', 'o38gpszG6ZnGcvNV7feJnT70MCkI', '', null, '', '0', '1', 'piu piu', '1', '澳大利亚', '堪培拉', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFmr7dAfxG0unZbrGAx1eB9WAn3A6qlRrC6v49zINA1Om1zibUsQuR48enw1iajve86lEiciaWiboKzGaqTSSPF0HSRpO/132', '1496744829', '2017-06-06 18:27:09', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2295', 'wx60a43dd8161666d4', 'oGsrkszhE3kIdWyYlN4E_zgLWdUk', 'o38gpsyVfsO9gDNPoRDvsme8n3FE', '', null, '', '0', '1', 'A鼎盛电脑科技', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniataKbRtW1icXGOBCSkhgGs9MUyKylzOuWvqOoyX1OM8aXtTRKLek8yssWialQhneHdxBnl9vbU6OrJ6PaRQHuGm2/132', '1514213921', '2017-12-25 22:58:41', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2296', 'wx60a43dd8161666d4', 'oGsrks1Wd6i5m0YalfiuXg6X6a40', 'o38gpswc8aL1dUFMb2TcABmsksDw', '', null, '2', '0', '1', 'Adrian、', '1', '中国', '广东', '江门', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/6x8XdQdSNbyAXStw8vdF2G8hVk7RzNjpvZjExn3l7s7xLqlsL5unJvShahZ67kZXeytfxvySU1VXZ5JfGBvGOriahadYe9qtib/132', '1495683769', '2017-05-25 11:42:49', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2297', 'wx60a43dd8161666d4', 'oGsrks_nMhj7vI10yWxY8GzscIx0', 'o38gps4zEPecqw8rdL1b9d1D1YPo', '', null, '', '0', '1', '麦客', '1', '中国', '广东', '东莞', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLAiapCVthUgNysHHjeyicsQ8FtMhhjkcSOMX3yZaAK2IdRCsMO9J8H0ApicOvlZUsiaMiaibcouAftEwstiaTMQkMg5YB4YVicGIt8lGEc/132', '1493125763', '2017-04-25 21:09:23', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2298', 'wx60a43dd8161666d4', 'oGsrkswo8fDPab1lg_UXQkK6kOFA', 'o38gps74mjt-oVMudAu7zHmD70Jk', '', null, '', '0', '1', 'Simon', '1', '中国', '云南', '昆明', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhmHmkWasbv8O5rEkY908OEKxibG9wgn22GbG7W8zmEiaia5rvuQggGlnWOGs5aFc34E8UG6dx01Iicg9ZDlvsyyE2V/132', '1506754302', '2017-09-30 14:51:42', '', '0', '', '', 'ADD_SCENE_QR_CODE', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2299', 'wx60a43dd8161666d4', 'oGsrks1Vd2boIxw3KjWdfrgD2XjY', 'o38gps1Unf64JOTdxNdd424lsEmM', '', null, '2,195', '0', '1', 'SuperX', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/tqRiaNianNl1m81icHORPw7chvQ4c1V0mJibS5Iia6elg2nJFpfmDvtibbEFvC9wIQaI4kibEybHnl2gwChAqQUBHlnh4eDKkOv7QPm/132', '1520409810', '2018-03-07 16:03:30', '', '0', '', '', 'ADD_SCENE_QR_CODE', '0', '测试', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2300', 'wx60a43dd8161666d4', 'oGsrkszrkFk55kOq6LCuEA-IttMQ', 'o38gpsxVkzZd6UY_3c6qAN-LiUw8', '', null, '195,2', '0', '1', '姜敏', '1', '中国', '上海', '浦东新区', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFmr7dAfxG0unXubkwiblxic68V1gx9oz6nJww5MtFOGnmlEu6fxDRUicLOlZBf16XOPiaaSWJSaXjlibshibQib0pic2ic07/132', '1520561646', '2018-03-09 10:14:06', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2301', 'wx60a43dd8161666d4', 'oGsrks5mX7Kr6b1guI9ecDgrXJVE', 'o38gps1tvPvDBPeMXFTZkFvBMxjU', '', null, '', '0', '1', '刘彪', '1', '中国', '广东', '深圳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFme3s8TLGP6cciaxANiaJdtJVZiaibE3x4QDqpFTsM0Hm4ibHR3bX0klc8QWNdbq2nLoRgdXo2sMGVxCnbfnb28TOMHB/132', '1515404964', '2018-01-08 17:49:24', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2302', 'wx60a43dd8161666d4', 'oGsrks6bAMKwkxgHnQtwZzrw7HH0', 'o38gps-kWCJNweHtom-Ur6-_7ipU', '', null, '', '0', '1', '郭树峰', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhmWzkEyg0xZlcRFJ9uzsHwpkn6mKuBCtRs8pO2wACy20joQ9fSwolf3Ny0achnCyUbKGn5ibpgJNDMkADy12ianZ/132', '1515727836', '2018-01-12 11:30:36', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2303', 'wx60a43dd8161666d4', 'oGsrks-n2GxjfG75V5EjcwK3k7Ks', 'o38gpsx-lvKmbJE0YkySrWWgYCuA', '', null, '', '0', '1', 'Mr.L', '1', '中国', '重庆', '两江新区', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlEOfjomrweTyEuy1DEoMscI3m4srjIZBxYNia59E6rLAaTbibxc1E2RrWraqoDz1eImc3fXEnwMD8a/132', '1510220091', '2017-11-09 17:34:51', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2304', 'wx60a43dd8161666d4', 'oGsrks93peyNDIECPpLAppB-kFvU', 'o38gps-4z7nkOJ9VljnrjZ1hJs9Q', '', null, '', '0', '1', '刘鹏飞', '1', '中国', '河南', '郑州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKoicF6Kjzex0vJFrqTpJK7MOEVJgLwLz3f08sMEQLxMcwCKsJibmR4KCd9NPvTycT7w6TZ0ib1aehnt8PO2kkIWRDx/132', '1498788522', '2017-06-30 10:08:42', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2305', 'wx60a43dd8161666d4', 'oGsrks89DGZXf8VfajzOVlbAQ3z8', 'o38gps8K3eiJ3cNAU0TKkAs2a9CU', '', null, '2', '0', '1', 'Johnny Y.', '1', '中国', '湖南', '长沙', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnia6pYhZ3PxuJ0XM46qfibjVS4Y4R4qMm5N4fosz9JWP8NibNO4tjI0eWDpojgkw73WKFovI5O0wW14LnEgcT1oQ2ib/132', '1460548852', '2016-04-13 20:00:52', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2306', 'wx60a43dd8161666d4', 'oGsrks3ubNH4NlW9vTethfs9Yfk8', 'o38gps4yFLVFKQ5TRwRJF-gxhoFE', '', null, '', '0', '1', 'Colin', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKqWzwNeqjpichLW6UrpKOcr0ct9y2nEAxfnhTWQMj6luiaMO8KYL4de5pAMoJyiaGrLaYiaH9liaIzvRhlXADgPqicyzu/132', '1513856956', '2017-12-21 19:49:16', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2307', 'wx60a43dd8161666d4', 'oGsrks7YjGV_35_A98qIyanIXx4s', 'o38gpswjzR0S7wMTdDI-lF6kvYaU', '', null, '', '0', '1', '卡卡', '1', '中国', '江苏', '苏州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlFh2E95z0gvulwLNVERZelr67hKMYGxCwbCMsaBapwt2Ef3a0ibLAicVtAzhVgOIvL3UGQTQOWwnq8/132', '1512692256', '2017-12-08 08:17:36', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2308', 'wx60a43dd8161666d4', 'oGsrksxkol9l-RayJxFnhi8ARb6E', 'o38gps0aBICw5jkQ9fYU77T2e-ig', '', null, '', '0', '1', '小时候', '1', '中国', '湖南', '长沙', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFnLhucNNeBTibnMkOfiaSPNXDl1c0ia74NCqHuk3GJO23PFy1wzFibIJCBLl1ibAxyWguBSPPAocQicelEBy8icoN163ZZ/132', '1513565731', '2017-12-18 10:55:31', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2309', 'wx60a43dd8161666d4', 'oGsrkswYnd9qL8EdvS-ABl55wb-I', 'o38gps6_chW-YV83sCx9fm_LOids', '', null, '2', '0', '1', '盼盼\\ud83d\\udd30雅滋美特®总部', '2', '中国', '陕西', '西安', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKpbjOibFLiaRzBwY2ia7XH9Ive6oCQiazl8hRBQr8WORSph7a5swBFoCy9ZewOMqExx7wGQzt4z5Tehoa7qulnEXdO4/132', '1462429726', '2016-05-05 14:28:46', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2310', 'wx60a43dd8161666d4', 'oGsrksylW6rvVpCOTMgBwVeA7mXM', 'o38gps_lFGor-5-sQAxuYCOq4H98', '', null, '', '0', '0', '阿莫', '1', '中国', '广东', '东莞', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKoPVFiceZY7rlfDWxiawIiboh9NjbRlWCugJzgkUtgEqZiaemqhmicWPWu6aBxqBDq4WhSMS67eWxLOFyOQIxT3ME6tO/132', '1508999198', '2017-10-26 14:26:38', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2311', 'wx60a43dd8161666d4', 'oGsrks-DFJgLi94eTz9bR9b6hukU', 'o38gpsw8os7p6RnIW9zDF5INjd58', '', null, '2', '0', '1', '瑋瑋', '2', '中国', '湖南', '衡阳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSngWiakNf5LZdzibaJ2Bzhc39n1crMbeqG55dylBrCwxX5ubpqIxaepRGiayic3xBC8tcTiaVP0I7pdxb3AZQKRtXwf7E/132', '1472105946', '2016-08-25 14:19:06', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2312', 'wx60a43dd8161666d4', 'oGsrksxHmXVcZMJeySQ37uDytOmg', 'o38gpsxjv6TDDkmlPpOCybQ9tjJ0', '', null, '2', '0', '1', '        ', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKqHxl82Xol99xTovqtPdth2ulKkXk8Ckibwop7NqC4SASx0iaFNB0FxtgF9ubk9xPWSDW1OLd7RNZibfp0XMJpIecia/132', '1491880522', '2017-04-11 11:15:22', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2313', 'wx60a43dd8161666d4', 'oGsrks8AQ_mp1XePvYuUDAJ7oBJg', 'o38gpswwa0WyHEKVXaHtF0kcjoJk', '', null, '2', '0', '1', '堂堂', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKp5nibynO469KphibAhuVZ1ZWA5hR79YlLUT9l8ic4ckibpgkPlC0zm1Rwem9kLsN3kPBAhibfIWo7gBmPSvSsLjQKuE/132', '1467771020', '2016-07-06 10:10:20', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2314', 'wx60a43dd8161666d4', 'oGsrkszEXoNDqIw5Og2WBNAiP2D0', 'o38gps4gSFILIoalRs0PP8FfSir8', '', null, '', '0', '1', '老何', '1', '中国', '福建', '福州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/wLcWG0U6YFmr7dAfxG0unZegKCys0B6beoZrQBibU8vppYRwDfx10zxiaA7W7BSuFl0GN0lOjfpleP9h2MPpl2zOib7ZycbMCGh/132', '1502371948', '2017-08-10 21:32:28', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2315', 'wx60a43dd8161666d4', 'oGsrks71BIPANqZDyv4B64e4Eozg', 'o38gps7sSKAiIosZcPtvDCIp5iqg', '', null, '', '0', '1', '风⃢染⃢季⃢末', '1', '北马里亚纳群岛', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnhlmkw5WDLWlMqlYggVlxQQjEz0gI06NiaiciaLd1jFpjMmj6lc4SlQicuPtSAdmfXAoEhQeCIqY9cU7Agp8gYUYLAT/132', '1508379559', '2017-10-19 10:19:19', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2316', 'wx60a43dd8161666d4', 'oGsrks22hZFbB-J-Y98nM-h_9uMM', 'o38gps2Fh1GdM5rQkC3_Bckn3iEY', '', null, '', '0', '1', '永圣', '1', '中国', '陕西', '西安', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEI86EI2Ha7IFPfp74kFRMzpgYKMwSialEYlhQrD2xKePzDU27MCmZhYayYAJ1gmsrsuBzVkfgeXl3F0k2dMElMEcNaKtRHZduxc/132', '1462429914', '2016-05-05 14:31:54', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2317', 'wx60a43dd8161666d4', 'oGsrks6Y0TUcHa-IhfxS0Me6gl4c', 'o38gps08RgM4pxI5aKCMvAC6iQNw', '', null, '', '0', '1', '麻水劲松_楚鸟', '1', '中国', '湖北', '荆州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/KULsUKmynFu6SiahhNaO6MwjVAA8Bb0TUf0aaElVVYCibMLqI5BNclYGhGM9Lgict7uI2UOxnfuricfcdUIa1SWb0tfBW1uqYewF/132', '1495687411', '2017-05-25 12:43:31', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2318', 'wx60a43dd8161666d4', 'oGsrks4by1arcjSIeWdtWVKx_Vjc', 'o38gps8JDZdTpmnyBzrXqfabhdTw', '', null, '', '0', '0', 'i', '1', '中国', '广东', '深圳', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM7rYo6NN0asQjBKCjlPibyyxEMD3benk5akljSsj7SljY8OsKVbdGQrejeOFGOMdhgNotpnX9yPCKIjnDO51RmeIWpjgFLUrlvY/132', '1510584392', '2017-11-13 22:46:32', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2319', 'wx60a43dd8161666d4', 'oGsrks9nEbjHQbOOgKFjvgpw4qj4', 'o38gps4Awds1FrY2N9HAidN0FF8Q', '', null, '', '0', '1', '网络共享吧', '0', '', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSnjjBLgK5sTicJaDCncHEGHdj3fPwCIicWXGcljtxrdvh5ugHped5smMamcCIAM133yic1ZsymQgrSWzx2ptyahBy5R/132', '1509361509', '2017-10-30 19:05:09', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2320', 'wx60a43dd8161666d4', 'oGsrksxKTwgEWj0ApQlblA_V9NEo', 'o38gps9mF9Em-CTs7aV9B88DuTpw', '', null, '', '0', '1', 'yyhhyj', '0', '', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaZgJibibxOwB5fygtmZ1JTrNYwqxKRPBPJYhSmibVzibKeuhQxbT8r9QLk4y9ro0ictValBGaibxIOiaQHW1RbgjFViahM/132', '1503323592', '2017-08-21 21:53:12', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2321', 'wx60a43dd8161666d4', 'oGsrks0mBGjUxYLw1GGbQgNdaN4s', 'o38gpszoJoC9oJYz3UHHf6bEp0Lo', '', null, '', '0', '1', '伟红', '0', '', '', '', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/lQEcz8ricSniaaiciciagbYiahct41to1c8qKJJq00odyYm1kskyE6og7ic0VSnuWankib2DOUZuHvkicGc9XZUN8c55uRb5PMMQmhlrT/132', '1514285567', '2017-12-26 18:52:47', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2322', 'wx60a43dd8161666d4', 'oGsrksxawVziyr-ePlU6nOxALYgA', 'o38gps47H7kIFrv0pQ15ODVQR1mA', '', null, '2', '0', '1', '才子佳人', '1', '中国', '广东', '广州', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKqWzwNeqjpichC3NRcX3D5LVKUapG9XE3xzbt2jdh0qlRYiabia541bkdsY81ICFWrcKhicbAOic4iatlKts4nSVosACa/132', '1461809072', '2016-04-28 10:04:32', '', '0', '', '', 'ADD_SCENE_OTHERS', '0', '', '2018-03-10 17:42:18');
INSERT INTO `wechat_fans` VALUES ('2323', 'wx60a43dd8161666d4', 'oGsrks3twpOdvQ0N61bJ53UYU0nI', 'o38gps_jAAYPzd6xmE_eNFiecVQA', '', null, '', '0', '0', '上帝抬了我一手。', '1', '中国', '湖北', '宜昌', 'zh_CN', 'http://thirdwx.qlogo.cn/mmopen/cXaM0LzKLKruLDwc9TvAZ4gZmrzr9FLUhOYKtpkbj3xvyt6IXeT38WG2X7dCvABefB3JOkl6svZjjvxoaH2Z6eb0wW1ZLGur/132', '1520905980', '2018-03-13 09:53:00', '', '0', '', '', 'ADD_SCENE_SEARCH', '0', '', '2018-03-13 09:53:02');
-- ----------------------------
-- Table structure for wechat_fans_tags
-- ----------------------------
DROP TABLE IF EXISTS `wechat_fans_tags`;
CREATE TABLE `wechat_fans_tags` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '标签ID',
`appid` char(50) DEFAULT NULL COMMENT '公众号APPID',
`name` varchar(35) DEFAULT NULL COMMENT '标签名称',
`count` int(11) unsigned DEFAULT NULL COMMENT '总数',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
KEY `index_wechat_fans_tags_id` (`id`) USING BTREE,
KEY `index_wechat_fans_tags_appid` (`appid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8 COMMENT='微信会员标签';
-- ----------------------------
-- Records of wechat_fans_tags
-- ----------------------------
INSERT INTO `wechat_fans_tags` VALUES ('2', 'wx60a43dd8161666d4', '星标组', '20', '2018-03-12 09:55:32');
INSERT INTO `wechat_fans_tags` VALUES ('195', 'wx60a43dd8161666d4', '新增标签', '0', '2018-03-12 09:55:32');
-- ----------------------------
-- Table structure for wechat_keys
-- ----------------------------
DROP TABLE IF EXISTS `wechat_keys`;
CREATE TABLE `wechat_keys` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`appid` char(100) DEFAULT '' COMMENT '公众号APPID',
`type` varchar(20) DEFAULT '' COMMENT '类型text 文件消息image 图片消息news 图文消息',
`keys` varchar(100) DEFAULT NULL COMMENT '关键字',
`content` text COMMENT '文本内容',
`image_url` varchar(255) DEFAULT '' COMMENT '图片链接',
`voice_url` varchar(255) DEFAULT '' COMMENT '语音链接',
`music_title` varchar(100) DEFAULT '' COMMENT '音乐标题',
`music_url` varchar(255) DEFAULT '' COMMENT '音乐链接',
`music_image` varchar(255) DEFAULT '' COMMENT '音乐缩略图链接',
`music_desc` varchar(255) DEFAULT '' COMMENT '音乐描述',
`video_title` varchar(100) DEFAULT '' COMMENT '视频标题',
`video_url` varchar(255) DEFAULT '' COMMENT '视频URL',
`video_desc` varchar(255) DEFAULT '' COMMENT '视频描述',
`news_id` bigint(20) unsigned DEFAULT NULL COMMENT '图文ID',
`sort` bigint(20) unsigned DEFAULT '0' COMMENT '排序字段',
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '0 禁用1 启用',
`create_by` bigint(20) unsigned DEFAULT NULL COMMENT '创建人',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `index_wechat_keys_appid` (`appid`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='微信关键字';
-- ----------------------------
-- Records of wechat_keys
-- ----------------------------
INSERT INTO `wechat_keys` VALUES ('1', '', 'news', '测试', '说点什么吧', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', '', '音乐标题', '', 'http://plugs.ctolog.com/theme/default/img/image.png', '音乐描述', '视频标题', '', '视频描述', '3', '0', '1', null, '2018-03-12 10:52:03');
INSERT INTO `wechat_keys` VALUES ('2', '', 'news', 'default', '说点什么吧', 'http://plugs.ctolog.com/theme/default/img/image.png', '', '音乐标题', '', 'http://plugs.ctolog.com/theme/default/img/image.png', '音乐描述', '视频标题', '', '视频描述', '1', '0', '1', null, '2018-03-07 15:16:20');
INSERT INTO `wechat_keys` VALUES ('3', '', 'news', 'default', '说点什么吧', 'http://plugs.ctolog.com/theme/default/img/image.png', '', '音乐标题', '', 'http://plugs.ctolog.com/theme/default/img/image.png', '音乐描述', '视频标题', '', '视频描述', '1', '0', '1', null, '2018-03-06 22:16:23');
INSERT INTO `wechat_keys` VALUES ('4', '', 'text', 'default', '说点什么吧', 'http://plugs.ctolog.com/theme/default/img/image.png', '', '音乐标题', '', 'http://plugs.ctolog.com/theme/default/img/image.png', '音乐描述', '视频标题', '', '视频描述', '0', '0', '1', null, '2018-03-06 22:22:31');
INSERT INTO `wechat_keys` VALUES ('5', '', 'text', 'default', '说点什么吧', 'http://plugs.ctolog.com/theme/default/img/image.png', '', '音乐标题', '', 'http://plugs.ctolog.com/theme/default/img/image.png', '音乐描述', '视频标题', '', '视频描述', '0', '0', '1', null, '2018-03-06 22:22:52');
INSERT INTO `wechat_keys` VALUES ('6', '', 'text', 'default', '说点什么吧', 'http://plugs.ctolog.com/theme/default/img/image.png', '', '音乐标题', '', 'http://plugs.ctolog.com/theme/default/img/image.png', '音乐描述', '视频标题', '', '视频描述', '0', '0', '1', null, '2018-03-06 22:23:39');
INSERT INTO `wechat_keys` VALUES ('7', '', 'news', 'subscribe', '说点什么吧', 'http://thinkagent.data.cuci.cc/static/upload/1325ee90939a1545/05e10b79fd70fa3a.jpg', '', '音乐标题', '', 'http://plugs.ctolog.com/theme/default/img/image.png', '音乐描述', '视频标题', '', '视频描述', '4', '0', '1', null, '2018-03-12 14:17:05');
-- ----------------------------
-- Table structure for wechat_menu
-- ----------------------------
DROP TABLE IF EXISTS `wechat_menu`;
CREATE TABLE `wechat_menu` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`index` bigint(20) DEFAULT NULL,
`pindex` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '父id',
`type` varchar(24) NOT NULL DEFAULT '' COMMENT '菜单类型 null主菜单 link链接 keys关键字',
`name` varchar(256) NOT NULL DEFAULT '' COMMENT '菜单名称',
`content` text NOT NULL COMMENT '文字内容',
`sort` bigint(20) unsigned DEFAULT '0' COMMENT '排序',
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '状态(0禁用1启用)',
`create_by` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建人',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `index_wechat_menu_pindex` (`pindex`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=150 DEFAULT CHARSET=utf8 COMMENT='微信菜单配置';
-- ----------------------------
-- Records of wechat_menu
-- ----------------------------
INSERT INTO `wechat_menu` VALUES ('134', '1', '0', 'miniprogram', '一级菜单', ',,', '0', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('135', '11', '1', 'text', '二级菜单', '13412,41234,413241', '0', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('136', '12', '1', 'text', '二级菜单', '请输入内容1', '1', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('137', '13', '1', 'text', '二级菜单', '请输入内容2', '2', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('138', '14', '1', 'text', '二级菜单', '请输入内容3', '3', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('139', '15', '1', 'text', '二级菜单', '请输入内容4', '4', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('140', '2', '0', 'text', '一级菜单', '', '1', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('141', '21', '2', 'text', '二级菜单', '请输入内容5', '0', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('142', '22', '2', 'text', '二级菜单', '请输入内容6', '1', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('143', '23', '2', 'text', '二级菜单', '请输入内容7', '2', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('144', '24', '2', 'text', '二级菜单', '请输入内容8', '3', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('145', '25', '2', 'text', '二级菜单', '请输入内容9', '4', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('146', '3', '0', 'text', '一级菜单', '', '2', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('147', '31', '3', 'text', '二级菜单', '请输入内容11', '0', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('148', '32', '3', 'text', '二级菜单', '请输入内容22', '1', '1', '0', '2018-03-09 15:46:41');
INSERT INTO `wechat_menu` VALUES ('149', '33', '3', 'text', '二级菜单', '请输入内容33', '2', '1', '0', '2018-03-09 15:46:41');
-- ----------------------------
-- Table structure for wechat_news
-- ----------------------------
DROP TABLE IF EXISTS `wechat_news`;
CREATE TABLE `wechat_news` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`media_id` varchar(100) DEFAULT '' COMMENT '永久素材MediaID',
`local_url` varchar(300) DEFAULT '' COMMENT '永久素材显示URL',
`article_id` varchar(60) DEFAULT '' COMMENT '关联图文ID号做分割',
`is_deleted` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`create_by` bigint(20) DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`),
KEY `index_wechat_news_artcle_id` (`article_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='微信图文表';
-- ----------------------------
-- Records of wechat_news
-- ----------------------------
INSERT INTO `wechat_news` VALUES ('1', 'Bw3hChJY74VW97EwV7b79bU_PgbaoLQzuoxw0LRfTk0', '', '2,11', '0', '2018-03-06 22:07:37', '10000');
INSERT INTO `wechat_news` VALUES ('2', '', '', '3', '0', '2018-03-12 10:24:35', '10000');
INSERT INTO `wechat_news` VALUES ('3', '', '', '4,5,10', '0', '2018-03-12 10:24:55', '10000');
INSERT INTO `wechat_news` VALUES ('4', 'Bw3hChJY74VW97EwV7b79ZM2QqCSN9e5d0-uucJ9Dno', '', '6,7,8,9', '0', '2018-03-12 10:25:42', '10000');
-- ----------------------------
-- Table structure for wechat_news_article
-- ----------------------------
DROP TABLE IF EXISTS `wechat_news_article`;
CREATE TABLE `wechat_news_article` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(50) DEFAULT '' COMMENT '素材标题',
`local_url` varchar(300) DEFAULT '' COMMENT '永久素材显示URL',
`show_cover_pic` tinyint(4) unsigned DEFAULT '0' COMMENT '是否显示封面 0不显示1 显示',
`author` varchar(20) DEFAULT '' COMMENT '作者',
`digest` varchar(300) DEFAULT '' COMMENT '摘要内容',
`content` longtext COMMENT '图文内容',
`content_source_url` varchar(200) DEFAULT '' COMMENT '图文消息原文地址',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`create_by` bigint(20) DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='微信素材表';
-- ----------------------------
-- Records of wechat_news_article
-- ----------------------------
INSERT INTO `wechat_news_article` VALUES ('2', '测试商户', 'http://api.cuci.cc/static/upload/f47b8fe06e38ae99/08e8398da45583b9.png', '0', '3412', '文章内容不能留空,请输入内容!', '&lt;p&gt;421341234&lt;/p&gt;', '', '2018-03-12 10:26:17', '10000');
INSERT INTO `wechat_news_article` VALUES ('3', '测试图文', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', '0', 'test', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:24:36', '10000');
INSERT INTO `wechat_news_article` VALUES ('4', '测试商户', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', '0', '系统', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:25:58', '10000');
INSERT INTO `wechat_news_article` VALUES ('5', '数码管理', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', '0', '系统', '文章内容不能留空,请输入内容!', '&amp;lt;p&amp;gt;文章内容不能留空,请输入内容!&amp;lt;/p&amp;gt;', '', '2018-03-12 10:25:58', '10000');
INSERT INTO `wechat_news_article` VALUES ('6', '测试商户', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', '0', '系统', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:54:39', '10000');
INSERT INTO `wechat_news_article` VALUES ('7', '测试商户', 'http://thinkagent.data.cuci.cc/static/upload/1325ee90939a1545/05e10b79fd70fa3a.jpg', '0', '系统', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:54:39', '10000');
INSERT INTO `wechat_news_article` VALUES ('8', '测试商户2', 'http://api.cuci.cc/static/upload/f47b8fe06e38ae99/08e8398da45583b9.png', '0', '系统', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:54:39', '10000');
INSERT INTO `wechat_news_article` VALUES ('9', '数码管理', 'http://thinkagent.data.cuci.cc/static/upload/1325ee90939a1545/05e10b79fd70fa3a.jpg', '0', '系统', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:54:39', '10000');
INSERT INTO `wechat_news_article` VALUES ('10', '测试商户2', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', '0', '系统', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:25:58', '10000');
INSERT INTO `wechat_news_article` VALUES ('11', '商户管理', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', '0', '系统', '文章内容不能留空,请输入内容!', '&lt;p&gt;文章内容不能留空,请输入内容!&lt;/p&gt;', '', '2018-03-12 10:26:17', '10000');
-- ----------------------------
-- Table structure for wechat_news_image
-- ----------------------------
DROP TABLE IF EXISTS `wechat_news_image`;
CREATE TABLE `wechat_news_image` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`md5` varchar(32) DEFAULT '' COMMENT '文件md5',
`local_url` varchar(300) DEFAULT '' COMMENT '本地文件链接',
`media_url` varchar(300) DEFAULT '' COMMENT '远程图片链接',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `index_wechat_news_image_md5` (`md5`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='微信服务器图片';
-- ----------------------------
-- Records of wechat_news_image
-- ----------------------------
INSERT INTO `wechat_news_image` VALUES ('2', '27a5a7e3d00175ebda58a90276cba129', 'http://api.cuci.cc/static/upload/f47b8fe06e38ae99/08e8398da45583b9.png', 'http://mmbiz.qpic.cn/mmbiz_png/nMCGwywCQYKJ9J6w993p5zaZUOwkXQaZBgicxicRu0zRfyDJicGQg2eMmiabM59NH8bYvjl8QdAoSV0YialSfdatfVQ/0', '2018-03-06 13:35:55');
-- ----------------------------
-- Table structure for wechat_news_media
-- ----------------------------
DROP TABLE IF EXISTS `wechat_news_media`;
CREATE TABLE `wechat_news_media` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`appid` varchar(100) DEFAULT '' COMMENT '公众号ID',
`md5` varchar(32) DEFAULT '' COMMENT '文件md5',
`type` varchar(20) DEFAULT '' COMMENT '媒体类型',
`media_id` varchar(100) DEFAULT '' COMMENT '永久素材MediaID',
`local_url` varchar(300) DEFAULT '' COMMENT '本地文件链接',
`media_url` varchar(300) DEFAULT '' COMMENT '远程图片链接',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 COMMENT='微信素材表';
-- ----------------------------
-- Records of wechat_news_media
-- ----------------------------
INSERT INTO `wechat_news_media` VALUES ('1', 'wx60a43dd8161666d4', '27a5a7e3d00175ebda58a90276cba129', 'image', 'Bw3hChJY74VW97EwV7b79dmVQNeSJ6cdRZwS7yiTM28', 'http://api.cuci.cc/static/upload/f47b8fe06e38ae99/08e8398da45583b9.png', 'http://mmbiz.qpic.cn/mmbiz_png/nMCGwywCQYKJ9J6w993p5zaZUOwkXQaZBgicxicRu0zRfyDJicGQg2eMmiabM59NH8bYvjl8QdAoSV0YialSfdatfVQ/0?wx_fmt=png', '2018-03-06 13:52:52');
INSERT INTO `wechat_news_media` VALUES ('28', 'wx60a43dd8161666d4', 'c9f9f81deb548d98d74096ed8a7aa758', 'image', 'Bw3hChJY74VW97EwV7b79ZwhaEkwVSoga0nSVUMFwYs', 'http://thinkagent.data.cuci.cc/static/upload/1325ee90939a1545/05e10b79fd70fa3a.jpg', 'http://mmbiz.qpic.cn/mmbiz_jpg/nMCGwywCQYKeUibetjDUAsfnuwoamicmavX8Y52qvIK2l6YUykc8QzUufYkDAK60Y47zgtTnVttgMs42TBM6UWjA/0?wx_fmt=jpeg', '2018-03-10 11:13:48');
INSERT INTO `wechat_news_media` VALUES ('29', 'wx60a43dd8161666d4', 'cc6967059b91b21a8c4164652cfa739d', 'image', 'Bw3hChJY74VW97EwV7b79YJXRuN8mmUIhRwfLmr0SN0', 'http://thinkagent.data.cuci.cc/static/upload/aca8c68f0d1c0d24/0e2af8e0ac440157.jpg', 'http://mmbiz.qpic.cn/mmbiz_jpg/nMCGwywCQYKeUibetjDUAsfnuwoamicmav2cCibv6JyY315bSeXDAxLSMWfAJGCmFk1032lhAo8Y2KIr75odJTWibA/0?wx_fmt=jpeg', '2018-03-10 20:34:56');

1
application/.htaccess Normal file
View File

@ -0,0 +1 @@
deny from all

View File

@ -38,6 +38,11 @@ class Auth extends BasicAdmin
/**
* 权限列表
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function index()
{
@ -48,26 +53,30 @@ class Auth extends BasicAdmin
/**
* 权限授权
* @return string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function apply()
{
$this->title = '节点授权';
$auth_id = $this->request->get('id', '0');
$method = '_apply_' . strtolower($this->request->get('action', '0'));
if (method_exists($this, $method)) {
return $this->$method($auth_id);
}
$this->assign('title', '节点授权');
return $this->_form($this->table, 'apply');
}
/**
* 读取授权节点
* @param $auth_id
* @param string $auth
*/
protected function _apply_getnode($auth_id)
protected function _apply_getnode($auth)
{
$nodes = NodeService::get();
$checked = Db::name('SystemAuthNode')->where(['auth' => $auth_id])->column('node');
$checked = Db::name('SystemAuthNode')->where(['auth' => $auth])->column('node');
foreach ($nodes as &$node) {
$node['checked'] = in_array($node['node'], $checked);
}
@ -77,15 +86,17 @@ class Auth extends BasicAdmin
/**
* 保存授权节点
* @param $auth_id
* @param string $auth
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
protected function _apply_save($auth_id)
protected function _apply_save($auth)
{
list($data, $post) = [[], $this->request->post()];
foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
$data[] = ['auth' => $auth_id, 'node' => $node];
$data[] = ['auth' => $auth, 'node' => $node];
}
Db::name('SystemAuthNode')->where(['auth' => $auth_id])->delete();
Db::name('SystemAuthNode')->where(['auth' => $auth])->delete();
Db::name('SystemAuthNode')->insertAll($data);
$this->success('节点授权更新成功!', '');
}
@ -98,9 +109,9 @@ class Auth extends BasicAdmin
*/
protected function _apply_filter($nodes, $level = 1)
{
foreach ($nodes as $key => &$node) {
foreach ($nodes as $key => $node) {
if (!empty($node['_sub_']) && is_array($node['_sub_'])) {
$node['_sub_'] = $this->_apply_filter($node['_sub_'], $level + 1);
$node[$key]['_sub_'] = $this->_apply_filter($node['_sub_'], $level + 1);
}
}
return $nodes;
@ -108,6 +119,11 @@ class Auth extends BasicAdmin
/**
* 权限添加
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function add()
{
@ -116,6 +132,11 @@ class Auth extends BasicAdmin
/**
* 权限编辑
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function edit()
{
@ -124,6 +145,8 @@ class Auth extends BasicAdmin
/**
* 权限禁用
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function forbid()
{
@ -135,6 +158,8 @@ class Auth extends BasicAdmin
/**
* 权限恢复
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function resume()
{
@ -146,12 +171,14 @@ class Auth extends BasicAdmin
/**
* 权限删除
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function del()
{
if (DataService::update($this->table)) {
$id = $this->request->post('id');
Db::name('SystemAuthNode')->where(['auth' => $id])->delete();
$where = ['auth' => $this->request->post('id')];
Db::name('SystemAuthNode')->where($where)->delete();
$this->success("权限删除成功!", '');
}
$this->error("权限删除失败,请稍候再试!");

View File

@ -38,35 +38,50 @@ class Config extends BasicAdmin
* 当前页面标题
* @var string
*/
public $title = '网站参数配置';
public $title = '系统参数配置';
/**
* 显示系统常规配置
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function index()
{
if (!$this->request->isPost()) {
return view('', ['title' => $this->title]);
if ($this->request->isGet()) {
return $this->fetch('', ['title' => $this->title]);
}
foreach ($this->request->post() as $key => $vo) {
sysconf($key, $vo);
if ($this->request->isPost()) {
foreach ($this->request->post() as $key => $vo) {
sysconf($key, $vo);
}
LogService::write('系统管理', '系统参数配置成功');
$this->success('系统参数配置成功!', '');
}
LogService::write('系统管理', '系统参数配置成功');
$this->success('系统参数配置成功!', '');
}
/**
* 文件存储配置
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function file()
{
$alert = [
'type' => 'danger',
'title' => '操作安全警告(默认使用本地服务存储)',
'content' => '请根据实际情况配置存储引擎,合理做好站点下载分流。建议尽量使用云存储服务,同时保证文件访问协议与网站访问协议一致!'
];
$this->title = '文件存储配置';
$this->assign('alert', $alert);
return $this->index();
}
/**
* 短信参数配置
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function sms()
{
$this->title = '短信服务配置';
$this->assign('result', ExtendService::querySmsBalance());
return $this->index();
}

View File

@ -18,8 +18,8 @@ use controller\BasicAdmin;
use service\DataService;
use service\NodeService;
use service\ToolsService;
use think\App;
use think\Db;
use think\View;
/**
* 后台入口
@ -33,14 +33,16 @@ class Index extends BasicAdmin
/**
* 后台框架布局
* @return View
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function index()
{
NodeService::applyAuthNode();
$list = (array) Db::name('SystemMenu')->where(['status' => '1'])->order('sort asc,id asc')->select();
$menus = $this->_filterMenuData(ToolsService::arr2tree($list), NodeService::get(), !!session('user'));
return view('', ['title' => '系统管理', 'menus' => $menus]);
$list = (array)Db::name('SystemMenu')->where(['status' => '1'])->order('sort asc,id asc')->select();
$menus = $this->buildMenuData(ToolsService::arr2tree($list), NodeService::get(), !!session('user'));
return $this->fetch('', ['title' => '系统管理', 'menus' => $menus]);
}
/**
@ -50,10 +52,10 @@ class Index extends BasicAdmin
* @param bool $isLogin 是否已经登录
* @return array
*/
private function _filterMenuData($menus, $nodes, $isLogin)
private function buildMenuData($menus, $nodes, $isLogin)
{
foreach ($menus as $key => &$menu) {
!empty($menu['sub']) && $menu['sub'] = $this->_filterMenuData($menu['sub'], $nodes, $isLogin);
!empty($menu['sub']) && $menu['sub'] = $this->buildMenuData($menu['sub'], $nodes, $isLogin);
if (!empty($menu['sub'])) {
$menu['url'] = '#';
} elseif (preg_match('/^https?\:/i', $menu['url'])) {
@ -75,16 +77,26 @@ class Index extends BasicAdmin
/**
* 主机信息显示
* @return View
* @return string
*/
public function main()
{
$_version = Db::query('select version() as ver');
return view('', ['mysql_ver' => array_pop($_version)['ver'], 'title' => '后台首页']);
return $this->fetch('', [
'title' => '后台首页',
'think_ver' => App::VERSION,
'mysql_ver' => array_pop($_version)['ver'],
]);
}
/**
* 修改密码
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
public function pass()
{
@ -111,6 +123,11 @@ class Index extends BasicAdmin
/**
* 修改资料
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function info()
{

View File

@ -37,6 +37,10 @@ class Log extends BasicAdmin
/**
* 日志列表
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function index()
{
@ -49,8 +53,8 @@ class Log extends BasicAdmin
foreach (['action', 'content', 'username'] as $key) {
(isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%");
}
if (isset($get['date']) && $get['date'] !== '') {
list($start, $end) = explode('-', str_replace(' ', '', $get['date']));
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);
@ -59,6 +63,7 @@ class Log extends BasicAdmin
/**
* 列表数据处理
* @param array $data
* @throws \Exception
*/
protected function _index_data_filter(&$data)
{
@ -66,12 +71,38 @@ class Log extends BasicAdmin
foreach ($data as &$vo) {
$result = $ip->btreeSearch($vo['ip']);
$vo['isp'] = isset($result['region']) ? $result['region'] : '';
$vo['isp'] = str_replace(['|0|0|0|0', '0', '|'], ['', '', ' '], $vo['isp']);
$vo['isp'] = str_replace(['内网IP', '0', '|'], '', $vo['isp']);
}
}
/**
* 短信发送记录
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function sms()
{
// 日志数据库对象
$this->title = '短信发送日志';
$get = $this->request->get();
$db = Db::name('MemberSmsHistory');
foreach (['phone', 'content', 'result'] as $key) {
(isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%");
}
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('id desc'));
}
/**
* 日志删除操作
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function del()
{

View File

@ -32,9 +32,9 @@ class Login extends BasicAdmin
/**
* 控制器基础方法
*/
public function _initialize()
public function initialize()
{
if (session('user') && $this->request->action() !== 'out') {
if (session('user.id') && $this->request->action() !== 'out') {
$this->redirect('@admin');
}
}
@ -42,6 +42,11 @@ class Login extends BasicAdmin
/**
* 用户登录
* @return string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
public function index()
{
@ -72,11 +77,9 @@ class Login extends BasicAdmin
*/
public function out()
{
if (session('user')) {
LogService::write('系统管理', '用户退出系统成功');
}
session('user', null);
session_destroy();
session('user') && LogService::write('系统管理', '用户退出系统成功');
!empty($_SESSION) && $_SESSION = [];
[session_unset(), session_destroy()];
$this->success('退出登录成功!', '@admin/login');
}

View File

@ -38,10 +38,15 @@ class Menu extends BasicAdmin
/**
* 菜单列表
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function index()
{
$this->title = '系统菜单管理';
$this->title = '后台菜单管理';
$db = Db::name($this->table)->order('sort asc,id asc');
return parent::_list($db, false);
}
@ -61,6 +66,11 @@ class Menu extends BasicAdmin
/**
* 添加菜单
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function add()
{
@ -69,6 +79,11 @@ class Menu extends BasicAdmin
/**
* 编辑菜单
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function edit()
{
@ -78,6 +93,9 @@ class Menu extends BasicAdmin
/**
* 表单数据前缀方法
* @param array $vo
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _form_filter(&$vo)
{
@ -106,13 +124,18 @@ class Menu extends BasicAdmin
unset($nodes[$key]);
}
}
$this->assign('nodes', array_column($nodes, 'node'));
$this->assign('menus', $menus);
// 设置上级菜单
if (!isset($vo['pid']) && $this->request->get('pid', '0')) {
$vo['pid'] = $this->request->get('pid', '0');
}
$this->assign(['nodes' => array_column($nodes, 'node'), 'menus' => $menus]);
}
}
/**
* 删除菜单
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function del()
{
@ -124,6 +147,8 @@ class Menu extends BasicAdmin
/**
* 菜单禁用
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function forbid()
{
@ -135,6 +160,8 @@ class Menu extends BasicAdmin
/**
* 菜单禁用
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function resume()
{

View File

@ -18,6 +18,7 @@ use controller\BasicAdmin;
use service\DataService;
use service\NodeService;
use service\ToolsService;
use think\Db;
/**
* 系统功能节点管理
@ -37,36 +38,47 @@ class Node extends BasicAdmin
/**
* 显示节点列表
* @return string
*/
public function index()
{
$alert = [
'type' => 'danger',
'title' => '操作安全警告(默认新节点所有人可以访问,请勾选登录控制)',
'content' => '结构为系统自动生成,其权限各选项直接影响到不同权限用户的访问及操作,请勿随意修改数据!'
];
$nodes = ToolsService::arr2table(NodeService::get(), 'node', 'pnode');
return view('', ['title' => '系统节点管理', 'nodes' => $nodes, 'alert' => $alert]);
return $this->fetch('', ['title' => '系统节点管理', 'nodes' => $nodes]);
}
/**
* 清理无效的节点记录
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function clear()
{
$nodes = array_keys(NodeService::get());
if (false !== Db::name($this->table)->whereNotIn('node', $nodes)->delete()) {
$this->success('清理无效节点记录成功!', '');
}
$this->error('清理无效记录失败,请稍候再试!');
}
/**
* 保存节点变更
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function save()
{
if ($this->request->isPost()) {
list($data, $post) = [[], $this->request->post()];
if (isset($post['list'])) {
foreach ($post['list'] as $vo) {
list($post, $data) = [$this->request->post(), []];
foreach ($post['list'] as $vo) {
if (!empty($vo['node'])) {
$data['node'] = $vo['node'];
$data[$vo['name']] = $vo['value'];
}
!empty($data) && DataService::save($this->table, $data, 'node');
$this->success('参数保存成功!', '');
}
} else {
$this->error('访问异常,请重新进入...');
!empty($data) && DataService::save($this->table, $data, 'node');
$this->success('参数保存成功!', '');
}
$this->error('访问异常,请重新进入...');
}
}

View File

@ -29,7 +29,9 @@ class Plugs extends BasicAdmin
/**
* 文件上传
* @return \think\response\View
* @return mixed
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function upfile()
{
@ -41,28 +43,31 @@ class Plugs extends BasicAdmin
$types = $this->request->get('type', 'jpg,png');
$this->assign('mimes', FileService::getFileMine($types));
$this->assign('field', $this->request->get('field', 'file'));
return view('', ['mode' => $mode, 'types' => $types, 'uptype' => $uptype]);
return $this->fetch('', ['mode' => $mode, 'types' => $types, 'uptype' => $uptype]);
}
/**
* 通用文件上传
* @return \think\response\Json
* @throws \think\Exception
* @throws \think\exception\PDOException
* @throws \OSS\Core\OssException
*/
public function upload()
{
$file = $this->request->file('file');
$ext = strtolower(pathinfo($file->getInfo('name'), 4));
$md5 = str_split($this->request->post('md5'), 16);
$filename = join('/', $md5) . ".{$ext}";
if (!in_array($ext, explode(',', strtolower(sysconf('storage_local_exts'))))) {
if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
return json(['code' => 'ERROR', 'msg' => '文件上传类型受限']);
}
$ext = strtolower(pathinfo($file->getInfo('name'), 4));
$names = str_split($this->request->post('md5'), 16);
$filename = "{$names[0]}/{$names[1]}.{$ext}";
// 文件上传Token验证
if ($this->request->post('token') !== md5($filename . session_id())) {
return json(['code' => 'ERROR', 'msg' => '文件上传验证失败']);
}
// 文件上传处理
if (($info = $file->move('static' . DS . 'upload' . DS . $md5[0], $md5[1], true))) {
if (($info = $file->move("static/upload/{$names[0]}", "{$names[1]}.{$ext}", true))) {
if (($site_url = FileService::getFileUrl($filename, 'local'))) {
return json(['data' => ['site_url' => $site_url], 'code' => 'SUCCESS', 'msg' => '文件上传成功']);
}
@ -72,11 +77,14 @@ class Plugs extends BasicAdmin
/**
* 文件状态检查
* @throws \OSS\Core\OssException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function upstate()
{
$post = $this->request->post();
$filename = join('/', str_split($post['md5'], 16)) . '.' . pathinfo($post['filename'], 4);
$filename = join('/', str_split($post['md5'], 16)) . '.' . strtolower(pathinfo($post['filename'], 4));
// 检查文件是否已上传
if (($site_url = FileService::getFileUrl($filename))) {
$this->result(['site_url' => $site_url], 'IS_FOUND');
@ -84,22 +92,22 @@ class Plugs extends BasicAdmin
// 需要上传文件,生成上传配置参数
$config = ['uptype' => $post['uptype'], 'file_url' => $filename];
switch (strtolower($post['uptype'])) {
case 'qiniu':
$config['server'] = FileService::getUploadQiniuUrl(true);
$config['token'] = $this->_getQiniuToken($filename);
break;
case 'local':
$config['server'] = FileService::getUploadLocalUrl();
$config['token'] = md5($filename . session_id());
break;
case 'qiniu':
$config['server'] = FileService::getUploadQiniuUrl(true);
$config['token'] = $this->_getQiniuToken($filename);
break;
case 'oss':
$time = time() + 3600;
$policyText = [
'expiration' => date('Y-m-d', $time) . 'T' . date('H:i:s', $time) . '.000Z',
'conditions' => [['content-length-range', 0, 1048576000]],
];
$config['policy'] = base64_encode(json_encode($policyText));
$config['server'] = FileService::getUploadOssUrl();
$config['policy'] = base64_encode(json_encode($policyText));
$config['site_url'] = FileService::getBaseUriOss() . $filename;
$config['signature'] = base64_encode(hash_hmac('sha1', $config['policy'], sysconf('storage_oss_secret'), true));
$config['OSSAccessKeyId'] = sysconf('storage_oss_keyid');
@ -111,17 +119,18 @@ class Plugs extends BasicAdmin
* 生成七牛文件上传Token
* @param string $key
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
protected function _getQiniuToken($key)
{
$host = sysconf('storage_qiniu_domain');
$baseUrl = FileService::getBaseUriQiniu();
$bucket = sysconf('storage_qiniu_bucket');
$accessKey = sysconf('storage_qiniu_access_key');
$secretKey = sysconf('storage_qiniu_secret_key');
$protocol = sysconf('storage_qiniu_is_https') ? 'https' : 'http';
$params = [
"scope" => "{$bucket}:{$key}", "deadline" => 3600 + time(),
"returnBody" => "{\"data\":{\"site_url\":\"{$protocol}://{$host}/$(key)\",\"file_url\":\"$(key)\"}, \"code\": \"SUCCESS\"}",
"returnBody" => "{\"data\":{\"site_url\":\"{$baseUrl}/$(key)\",\"file_url\":\"$(key)\"}, \"code\": \"SUCCESS\"}",
];
$data = str_replace(['+', '/'], ['-', '_'], base64_encode(json_encode($params)));
return $accessKey . ':' . str_replace(['+', '/'], ['-', '_'], base64_encode(hash_hmac('sha1', $data, $secretKey, true))) . ':' . $data;
@ -134,7 +143,7 @@ class Plugs extends BasicAdmin
public function icon()
{
$field = $this->request->get('field', 'icon');
return view('', ['field' => $field]);
return $this->fetch('', ['field' => $field]);
}
}

View File

@ -36,25 +36,33 @@ class User extends BasicAdmin
/**
* 用户列表
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function index()
{
$this->title = '系统用户管理';
$get = $this->request->get();
$db = Db::name($this->table)->where(['is_deleted' => '0']);
list($get, $db) = [$this->request->get(), Db::name($this->table)];
foreach (['username', 'phone', 'mail'] as $key) {
(isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%");
}
if (isset($get['date']) && $get['date'] !== '') {
list($start, $end) = explode('-', str_replace(' ', '', $get['date']));
list($start, $end) = explode(' - ', $get['date']);
$db->whereBetween('login_at', ["{$start} 00:00:00", "{$end} 23:59:59"]);
}
return parent::_list($db);
return parent::_list($db->where(['is_deleted' => '0']));
}
/**
* 授权管理
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function auth()
{
@ -63,6 +71,11 @@ class User extends BasicAdmin
/**
* 用户添加
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function add()
{
@ -71,6 +84,11 @@ class User extends BasicAdmin
/**
* 用户编辑
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function edit()
{
@ -79,6 +97,12 @@ class User extends BasicAdmin
/**
* 用户密码修改
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
public function pass()
{
@ -100,6 +124,9 @@ class User extends BasicAdmin
/**
* 表单数据默认处理
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function _form_filter(&$data)
{
@ -120,6 +147,8 @@ class User extends BasicAdmin
/**
* 删除用户
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function del()
{
@ -134,6 +163,8 @@ class User extends BasicAdmin
/**
* 用户禁用
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function forbid()
{
@ -148,6 +179,8 @@ class User extends BasicAdmin
/**
* 用户禁用
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function resume()
{

View File

@ -1,92 +0,0 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-modal='{:url("$classuri/add")}' data-title="添加权限" class='layui-btn layui-btn-small'>
<i class='fa fa-plus'></i> 添加权限
</button>
<button data-update data-field='delete' data-action='{:url("$classuri/del")}'
class='layui-btn layui-btn-small layui-btn-danger'>
<i class='fa fa-remove'></i> 删除权限
</button>
</div>
{/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" lay-size="sm">
<thead>
<tr>
<th class='list-table-check-td'>
<input data-none-auto="" 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-mini"> </button>
</th>
<th class='text-center'>权限名称</th>
<th class='text-center'>权限描述</th>
<th class='text-center'>状态</th>
<th class='text-center'>添加时间</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.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-center'>{$vo.title}</td>
<td class='text-center'>{$vo.desc|default="<span style='color:#ccc'>没有写描述哦!</span>"}</td>
<td class='text-center'>
{if $vo.status eq 0}
<span>已禁用</span>
{elseif $vo.status eq 1}
<span style="color:#090">使用中</span>
{/if}
</td>
<td class="text-center nowrap">{$vo.create_at|format_datetime}</td>
<td class='text-center nowrap'>
{if auth("$classuri/edit")}
<span class="text-explode">|</span>
<a data-modal='{:url("$classuri/edit")}?id={$vo.id}' href="javascript:void(0)">编辑</a>
{/if}
{if auth("$classuri/apply")}
<span class="text-explode">|</span>
<a data-open='{:url("$classuri/apply")}?id={$vo.id}' href="javascript:void(0)">授权</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")}'
href="javascript:void(0)">禁用</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")}'
href="javascript:void(0)">启用</a>
{/if}
{if auth("$classuri/del")}
<span class="text-explode">|</span>
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("$classuri/del")}'
href="javascript:void(0)">删除</a>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
{/if}
</form>
{/block}

View File

@ -1,36 +1,22 @@
{extend name='extra@admin/content'}
{extend name='admin@public/content'}
{block name="content"}
<style>
ul.ztree li span.button.switch{margin-right:5px}
ul.ztree ul ul li{display:inline-block;white-space:normal}
ul.ztree>li>ul>li{padding:5px}
ul.ztree>li{background: #dae6f0}
ul.ztree>li:nth-child(even)>ul>li:nth-child(even){background: #eef5fa}
ul.ztree>li:nth-child(even)>ul>li:nth-child(odd){background: #f6fbff}
ul.ztree>li:nth-child(odd)>ul>li:nth-child(even){background: #eef5fa}
ul.ztree>li:nth-child(odd)>ul>li:nth-child(odd){background: #f6fbff}
ul.ztree>li>ul{margin-top:12px}
ul.ztree>li{padding:15px;padding-right:25px}
ul.ztree li{white-space:normal!important}
ul.ztree>li>a>span{font-size:15px;font-weight:700}
</style>
<ul id="zTree" class="ztree loading">
<li style="height:100px;"></li>
<li></li>
</ul>
<div class="hr-line-dashed"></div>
<div class="layui-form-item text-center">
<button class="layui-btn" data-submit-role type='button'>保存数据</button>
<button class="layui-btn layui-btn-danger" type='button' onclick="window.history.back()">取消编辑</button>
</div>
{/block}
{block name="script"}
<link href="__STATIC__/plugs/ztree/zTreeStyle/zTreeStyle.css" rel="stylesheet" type="text/css">
<script src="__STATIC__/plugs/ztree/jquery.ztree.all.min.js" type="text/javascript">;</script>
<script>
require(['jquery.ztree'], function () {
function showTree() {
$(function () {
window.roleForm = new function () {
this.data = {};
this.ztree = null;
this.setting = {
@ -44,18 +30,16 @@
window.roleForm.ztree.expandNode(treeNode);
}
return false;
}}};
this.listen();
}
showTree.prototype = {
constructor: showTree,
listen: function () {
this.getData(this);
},
getData: function (self) {
$.msg.loading();
}
}
};
this.getData = function (self) {
var index = $.msg.loading();
jQuery.get('{:url()}?id={$vo.id}', {action: 'getNode'}, function (ret) {
$.msg.close();
$.msg.close(index);
self.data = renderChildren(ret.data, 1);
self.showTree();
function renderChildren(data, level) {
var childrenData = [];
for (var i in data) {
@ -69,15 +53,13 @@
}
return childrenData;
}
self.data = renderChildren(ret.data, 1);
self.showTree();
}, 'JSON');
},
showTree: function () {
};
this.showTree = function () {
this.ztree = jQuery.fn.zTree.init(jQuery("#zTree"), this.setting, this.data);
while (true) {
var reNodes = this.ztree.getNodesByFilter(function (node) {
return (!node.node && node.children.length < 1);
return (!node.node && node.children.length < 1);
});
if (reNodes.length < 1) {
break;
@ -86,20 +68,56 @@
this.ztree.removeNode(reNodes[i]);
}
}
},
submit: function () {
};
this.submit = function () {
var nodes = [];
var data = this.ztree.getCheckedNodes(true);
for (var i in data) {
(data[i].node) && nodes.push(data[i].node);
}
$.form.load('{:url()}?id={$vo.id}&action=save', {nodes: nodes}, 'POST');
}};
window.roleForm = new showTree();
$.form.load('{:url()}?id={$vo.id}&action=save', {nodes: nodes}, 'post');
};
this.getData(this);
};
$('[data-submit-role]').on('click', function () {
window.roleForm.submit();
});
});
</script>
{/block}
{block name="style"}
<style>
ul.ztree li {
white-space: normal !important
}
ul.ztree li span.button.switch {
margin-right: 5px
}
ul.ztree ul ul li {
display: inline-block;
white-space: normal
}
ul.ztree > li {
padding: 15px 25px 15px 15px;
}
ul.ztree > li > ul {
margin-top: 12px;
border-top: 1px solid rgba(0, 0, 0, .1);
}
ul.ztree > li > ul > li {
padding: 5px
}
ul.ztree > li > a > span {
font-size: 15px;
font-weight: 700
}
</style>
{/block}

View File

@ -1,4 +1,4 @@
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="__SELF__" data-auto="true" method="post">
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
<div class="layui-form-item">
<label class="layui-form-label">权限名称</label>
@ -17,7 +17,7 @@
<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}
{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>

View File

@ -0,0 +1,82 @@
{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="" 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'>名称</th>
<th class='text-left'>描述</th>
<th class='text-center'>状态</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'>
<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'>{$vo.title}</td>
<td class='text-left'>{$vo.desc|default="<span class='color-desc'>没有写描述哦!</span>"}</td>
<td class='text-center'>
{if $vo.status eq 0}<span>已禁用</span>{elseif $vo.status eq 1}<span class="color-green">使用中</span>{/if}
</td>
<td class="text-left nowrap">{$vo.create_at|format_datetime}</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 auth("$classuri/apply")}
<span class="text-explode">|</span>
<a data-open='{:url("$classuri/apply")}?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}

View File

@ -1,244 +0,0 @@
{extend name="extra@admin/content"}
{block name="content"}
<form onsubmit="return false;" action="__SELF__" data-auto="true" method="post" class='form-horizontal layui-form' style='padding-top:20px'>
<div class="form-group">
<label class="col-sm-2 control-label label-required">Storage <span class="nowrap">(存储引擎)</span></label>
<div class='col-sm-8'>
<label class="think-radio">
<!--{if sysconf('storage_type') eq 'local'}-->
<input checked type="radio" name="storage_type" value="local" title="本地服务器" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_type" value="local" title="本地服务器" lay-ignore>
<!--{/if}-->
本地服务器
</label>
<label class="think-radio">
<!--{if sysconf('storage_type') eq 'qiniu'}-->
<input checked type="radio" name="storage_type" value="qiniu" title="七牛云存储" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_type" value="qiniu" title="七牛云存储" lay-ignore>
<!--{/if}-->
七牛云存储
</label>
<label class="think-radio">
<!--{if sysconf('storage_type') eq 'oss'}-->
<input checked type="radio" name="storage_type" value="oss" title="AliOSS存储" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_type" value="oss" title="AliOSS存储" lay-ignore>
<!--{/if}-->
AliOSS存储
</label>
<div class="help-block" data-storage-type="local">
文件将存储在本地服务器,请确保服务器的 ./static/upload 目录有写入权限
</div>
<div class="help-block" data-storage-type="qiniu">
若还没有七牛云帐号,请点击
<a target="_blank" href="https://portal.qiniu.com/signup?code=3lhz6nmnwbple">免费申请10G存储空间</a>,
申请成功后添加公开bucket空间
</div>
<div class="help-block" data-storage-type="oss">
若还没有AliOSS存储账号, 请点击 <a target="_blank" href="https://oss.console.aliyun.com">创建AliOSS存储空间</a>,
目前仅支持公开空间URL访问, 另外还需要配置AliOSS跨域策略
</div>
</div>
</div>
<div class="hr-line-dashed" data-storage-type="qiniu"></div>
<div class="hr-line-dashed" data-storage-type="oss"></div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">Region <span class="nowrap">(存储区域)</span></label>
<div class='col-sm-8'>
<label class="think-radio">
<!--{if sysconf('storage_qiniu_region') eq '华东'}-->
<input checked type="radio" name="storage_qiniu_region" value="华东" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_qiniu_region" value="华东" lay-ignore>
<!--{/if}-->
华东
</label>
<label class="think-radio">
<!--{if sysconf('storage_qiniu_region') eq '华北'}-->
<input checked type="radio" name="storage_qiniu_region" value="华北" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_qiniu_region" value="华北" lay-ignore>
<!--{/if}-->
华北
</label>
<label class="think-radio">
<!--{if sysconf('storage_qiniu_region') eq '华南'}-->
<input checked type="radio" name="storage_qiniu_region" value="华南" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_qiniu_region" value="华南" lay-ignore>
<!--{/if}-->
华南
</label>
<label class="think-radio">
<!--{if sysconf('storage_qiniu_region') eq '北美'}-->
<input checked type="radio" name="storage_qiniu_region" value="北美" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_qiniu_region" value="北美" lay-ignore>
<!--{/if}-->
北美
</label>
<p class="help-block">七牛云存储空间所在区域,需要严格对应储存所在区域才能上传文件</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">Protocol <span class="nowrap">(访问协议)</span></label>
<div class='col-sm-8'>
<!--{if sysconf('storage_qiniu_is_https')!=='1'}-->
<label class="think-radio">
<input checked type="radio" name="storage_qiniu_is_https" value="0" lay-ignore> http
</label>
<label class="think-radio">
<input type="radio" name="storage_qiniu_is_https" value="1" lay-ignore> https
</label>
<!--{else}-->
<label class="think-radio">
<input type="radio" name="storage_qiniu_is_https" value="0" lay-ignore> http
</label>
<label class="think-radio">
<input checked type="radio" name="storage_qiniu_is_https" value="1" lay-ignore> https
</label>
<!--{/if}-->
<p class="help-block">七牛云资源访问协议http httpshttps 需要配置证书才能使用</p>
</div>
</div>
<div class="form-group" data-storage-type="local">
<label class="col-sm-2 control-label">AllowExts <span class="nowrap">(允许类型)</span></label>
<div class='col-sm-8'>
<input type="text" name="storage_local_exts" required="required" value="{:sysconf('storage_local_exts')}"
title="请输入系统文件上传后缀" placeholder="请输入系统文件上传后缀" class="layui-input">
<p class="help-block">设置系统允许上传文件的后缀多个以英文逗号隔开。如png,jpg,rar,doc</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">Bucket <span class="nowrap">(空间名称)</span></label>
<div class='col-sm-8'>
<input type="text" name="storage_qiniu_bucket" required="required" value="{:sysconf('storage_qiniu_bucket')}"
title="请输入七牛云存储 Bucket (空间名称)" placeholder="请输入七牛云存储 Bucket (空间名称)" class="layui-input">
<p class="help-block">填写七牛云存储空间名称static</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">Domain <span class="nowrap">(访问域名)</span></label>
<div class='col-sm-8'>
<input type="text" name="storage_qiniu_domain" required="required" value="{:sysconf('storage_qiniu_domain')}"
title="请输入七牛云存储 Domain (访问域名)" placeholder="请输入七牛云存储 Domain (访问域名)" class="layui-input">
<p class="help-block">填写七牛云存储访问域名static.ctolog.cc</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">AccessKey <span class="nowrap">(访问密钥)</span></label>
<div class='col-sm-8'>
<input type="text" name="storage_qiniu_access_key" required="required" value="{:sysconf('storage_qiniu_access_key')}"
title="请输入七牛云 AccessKey (访问密钥)" placeholder="请输入七牛云 AccessKey (访问密钥)" class="layui-input">
<p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到访问密钥</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">SecretKey <span class="nowrap">(安全密钥)</span></label>
<div class='col-sm-8'>
<input type="password" name="storage_qiniu_secret_key" required="required" value="{:sysconf('storage_qiniu_secret_key')}" maxlength="43"
title="请输入七牛云 SecretKey (安全密钥)" placeholder="请输入七牛云 SecretKey (安全密钥)" class="layui-input">
<p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到安全密钥</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">Protocol <span class="nowrap">(访问协议)</span></label>
<div class='col-sm-8'>
<!--{if sysconf('storage_oss_is_https')!=='1'}-->
<label class="think-radio">
<input checked type="radio" name="storage_oss_is_https" value="0" lay-ignore> http
</label>
<label class="think-radio">
<input type="radio" name="storage_oss_is_https" value="1" lay-ignore> https
</label>
<!--{else}-->
<label class="think-radio">
<input type="radio" name="storage_oss_is_https" value="0" lay-ignore> http
</label>
<label class="think-radio">
<input checked type="radio" name="storage_oss_is_https" value="1" lay-ignore> https
</label>
<!--{/if}-->
<p class="help-block">AliOSS资源访问协议http httpshttps 需要配置证书才能使用</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">Bucket <span class="nowrap">(空间名称)</span></label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_bucket" required="required" value="{:sysconf('storage_oss_bucket')}"
title="请输入AliOSS Bucket (空间名称)" placeholder="请输入AliOSS Bucket (空间名称)" class="layui-input">
<p class="help-block">填写OSS存储空间名称static</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">Domain <span class="nowrap">(访问域名)</span></label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_domain" required="required" value="{:sysconf('storage_oss_domain')}"
title="请输入AliOSS存储 Domain (访问域名)" placeholder="请输入AliOSS存储 Domain (访问域名)" class="layui-input">
<p class="help-block">填写OSS存储外部访问域名static.ctolog.cc</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">AccessKey <span class="nowrap">(访问密钥)</span></label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_keyid" required="required" value="{:sysconf('storage_oss_keyid')}" maxlength="16"
title="请输入16位AliOSS AccessKey (访问密钥)" placeholder="请输入AliOSS AccessKey (访问密钥)" class="layui-input">
<p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到访问密钥</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">SecretKey <span class="nowrap">(安全密钥)</span></label>
<div class='col-sm-8'>
<input type="password" name="storage_oss_secret" required="required" value="{:sysconf('storage_oss_secret')}" maxlength="30"
title="请输入30位AliOSS SecretKey (安全密钥)" placeholder="请输入AliOSS SecretKey (安全密钥)" class="layui-input">
<p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到安全密钥</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="col-sm-4 col-sm-offset-2">
<div class="layui-form-item text-center">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}
{block name="script"}
<script>
(function () {
window.form.render();
buildForm('{:sysconf("storage_type")}');
$('[name=storage_type]').on('click', function () {
buildForm($('[name=storage_type]:checked').val())
});
// 表单显示编译
function buildForm(value) {
var $tips = $("[data-storage-type='" + value + "']");
$("[data-storage-type]").not($tips.show()).hide();
}
})();
</script>
{/block}

View File

@ -1,68 +0,0 @@
{extend name="extra@admin/content"}
{block name="content"}
<form onsubmit="return false;" action="__SELF__" data-auto="true" method="post" class='form-horizontal' style='padding-top:20px'>
<div class="form-group">
<label class="col-sm-2 control-label">SiteName <span class="nowrap">(网站名称)</span></label>
<div class='col-sm-8'>
<input type="text" name="site_name" required="required" title="请输入网站名称" placeholder="请输入网站名称" value="{:sysconf('site_name')}" class="layui-input">
<p class="help-block">网站名称,显示在浏览器标签上</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Copyright <span class="nowrap">(版权信息)</span></label>
<div class='col-sm-8'>
<input type="text" name="site_copy" required="required" title="请输入版权信息" placeholder="请输入版权信息" value="{:sysconf('site_copy')}" class="layui-input">
<p class="help-block">程序的版权信息设置,在后台登录页面显示</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">AppName <span class="nowrap">(程序名称)</span></label>
<div class='col-sm-8'>
<input type="text" name="app_name" required="required" title="请输入程序名称" placeholder="请输入程序名称" value="{:sysconf('app_name')}" class="layui-input">
<p class="help-block">当前程序名称,在后台主标题上显示</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">AppVersion <span class="nowrap">(程序版本)</span></label>
<div class='col-sm-8'>
<input type="text" name="app_version" required="required" title="请输入程序版本" placeholder="请输入程序版本" value="{:sysconf('app_version')}" class="layui-input">
<p class="help-block">当前程序版本号,在后台主标题上标显示</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Baidu <span class="nowrap">(百度统计)</span></label>
<div class='col-sm-8'>
<input type="text" name="tongji_baidu_key" maxlength="32" pattern="^[0-9a-z]{32}$" title="请输入32位百度统计应用ID" placeholder="请输入32位百度统计应用ID" value="{:sysconf('tongji_baidu_key')}" class="layui-input">
<p class="help-block">百度统计应用ID可以在<a target="_blank" href="https://tongji.baidu.com">百度网站统计</a>申请并获取</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">BrowserIcon <span class="nowrap">(浏览器图标)</span></label>
<div class='col-sm-8'>
<img data-tips-image style="height:auto;max-height:32px;min-width:32px" src="{:sysconf('browser_icon')}"/>
<input type="hidden" name="browser_icon" onchange="$(this).prev('img').attr('src', this.value)"
value="{:sysconf('browser_icon')}" class="layui-input">
<a class="btn btn-link" data-file="one" data-type="ico,png" data-field="browser_icon">上传图片</a>
<p>建议上传ICO图标的尺寸为128x128px此图标用于网站标题前ICON在线制作。</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="col-sm-4 col-sm-offset-2">
<div class="layui-form-item text-center">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}

View File

@ -0,0 +1,228 @@
{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-required">
Storage<br><span class="nowrap color-desc">存储引擎</span>
</label>
<div class='col-sm-8'>
{foreach ['local'=>'本地服务器存储','qiniu'=>'七牛云存储','oss'=>'阿里云OSS存储'] as $k=>$v}
<label class="think-radio">
<!--{if sysconf('storage_type') eq $k}-->
<input checked type="radio" name="storage_type" value="{$k}" title="{$v}" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_type" value="{$k}" title="{$v}" lay-ignore>
<!--{/if}-->
{$v}
</label>
{/foreach}
<div class="help-block" data-storage-type="local">
文件存储在本地服务器,请确保服务器的 ./static/upload/ 目录有写入权限
</div>
<div class="help-block" data-storage-type="qiniu">
若还没有七牛云帐号,可<a target="_blank" href="https://portal.qiniu.com/signup?code=3lhz6nmnwbple">免费申请10G存储</a>申请成功后添加公开bucket。
</div>
<div class="help-block" data-storage-type="oss">
若还没有OSS存储账号, <a target="_blank" href="https://oss.console.aliyun.com">创建阿里云OSS存储</a>需要配置OSS公开访问及跨域策略。
</div>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group" data-storage-type="local">
<label class="col-sm-2 control-label">
AllowExts<br><span class="nowrap color-desc">允许类型</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_local_exts" required="required" value="{:sysconf('storage_local_exts')}"
title="请输入系统文件上传后缀" placeholder="请输入系统文件上传后缀" class="layui-input">
<p class="help-block">设置系统允许上传文件的后缀多个以英文逗号隔开。如png,jpg,rar,doc</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label label-required">
Region<br><span class="nowrap color-desc">存储区域</span>
</label>
<div class='col-sm-8'>
{foreach ['华东','华北','华南','北美'] as $area}
<label class="think-radio">
<!--{if sysconf('storage_qiniu_region') eq $area}-->
<input checked type="radio" name="storage_qiniu_region" value="{$area}" lay-ignore>
<!--{else}-->
<input type="radio" name="storage_qiniu_region" value="{$area}" lay-ignore>
<!--{/if}-->
{$area}
</label>
{/foreach}
<p class="help-block">七牛云存储空间所在区域,需要严格对应储存所在区域才能上传文件。</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label label-required">
Protocol<br><span class="nowrap color-desc">访问协议</span>
</label>
<div class='col-sm-8'>
<!--{foreach ['http','https','auto'] as $pro}-->
<label class="think-radio">
<!--{if sysconf('storage_qiniu_is_https') eq $pro}-->
<input checked type="radio" name="storage_qiniu_is_https" value="{$pro}" lay-ignore> {$pro}
<!--{else}-->
<input type="radio" name="storage_qiniu_is_https" value="{$pro}" lay-ignore> {$pro}
<!--{/if}-->
</label>
<!--{/foreach}-->
<p class="help-block">七牛云存储访问协议http、https、auto其中 https 需要配置证书才能使用auto 为相对协议自动根据域名切换http与https。</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">
Bucket<br><span class="nowrap color-desc">空间名称</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_qiniu_bucket" required="required" value="{:sysconf('storage_qiniu_bucket')}"
title="请输入七牛云存储 Bucket (空间名称)" placeholder="请输入七牛云存储 Bucket (空间名称)" class="layui-input">
<p class="help-block">填写七牛云存储空间名称static</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">
Domain<br><span class="nowrap color-desc">访问域名</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_qiniu_domain" required="required" value="{:sysconf('storage_qiniu_domain')}"
title="请输入七牛云存储 Domain (访问域名)" placeholder="请输入七牛云存储 Domain (访问域名)" class="layui-input">
<p class="help-block">填写七牛云存储访问域名static.ctolog.cc</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">
AccessKey<br><span class="nowrap color-desc">访问密钥</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_qiniu_access_key" required="required" value="{:sysconf('storage_qiniu_access_key')}"
title="请输入七牛云 AccessKey (访问密钥)" placeholder="请输入七牛云 AccessKey (访问密钥)" class="layui-input">
<p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到访问密钥。</p>
</div>
</div>
<div class="form-group" data-storage-type="qiniu">
<label class="col-sm-2 control-label">
SecretKey<br><span class="nowrap color-desc">安全密钥</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_qiniu_secret_key" required="required" value="{:sysconf('storage_qiniu_secret_key')}" maxlength="43"
title="请输入七牛云 SecretKey (安全密钥)" placeholder="请输入七牛云 SecretKey (安全密钥)" class="layui-input">
<p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到安全密钥。</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label label-required">
Protocol<br><span class="nowrap color-desc">访问协议</span>
</label>
<div class='col-sm-8'>
<!--{foreach ['http','https','auto'] as $pro}-->
<label class="think-radio">
<!--{if sysconf('storage_oss_is_https') eq $pro}-->
<input checked type="radio" name="storage_oss_is_https" value="{$pro}" lay-ignore> {$pro}
<!--{else}-->
<input type="radio" name="storage_oss_is_https" value="{$pro}" lay-ignore> {$pro}
<!--{/if}-->
</label>
<!--{/foreach}-->
<p class="help-block">阿里云对象存储访问协议http、https、auto其中 https 需要配置证书才能使用auto 为相对协议自动根据域名切换http与https。</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">
Bucket<br><span class="nowrap color-desc">空间名称</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_bucket" required="required" value="{:sysconf('storage_oss_bucket')}"
title="请输入OSS Bucket (空间名称)" placeholder="请输入OSS Bucket (空间名称)" class="layui-input">
<p class="help-block">填写OSS存储空间名称think-admin-oss</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">
EndPoint<br><span class="nowrap color-desc">数据中心</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_endpoint" required="required" value="{:sysconf('storage_oss_endpoint')}"
title="请输入OSS数据中心访问域名 (访问域名)" placeholder="请输入OSS数据中心访问域名 (访问域名)" class="layui-input">
<p class="help-block">填写OSS数据中心访问域名oss-cn-shenzhen.aliyuncs.com</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">
Domain<br><span class="nowrap color-desc">访问域名</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_domain" required="required" value="{:sysconf('storage_oss_domain')}"
title="请输入OSS存储 Domain (访问域名)" placeholder="请输入OSS存储 Domain (访问域名)" class="layui-input">
<p class="help-block">填写OSS存储外部访问域名think-admin-oss.oss-cn-shenzhen.aliyuncs.com</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">
AccessKey<br><span class="nowrap color-desc">访问密钥</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_keyid" required="required" value="{:sysconf('storage_oss_keyid')}" maxlength="16"
title="请输入16位OSS AccessKey (访问密钥)" placeholder="请输入OSS AccessKey (访问密钥)" class="layui-input">
<p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到访问密钥。</p>
</div>
</div>
<div class="form-group" data-storage-type="oss">
<label class="col-sm-2 control-label">
SecretKey<br><span class="nowrap color-desc">安全密钥</span>
</label>
<div class='col-sm-8'>
<input type="text" name="storage_oss_secret" required="required" value="{:sysconf('storage_oss_secret')}" maxlength="30"
title="请输入30位OSS SecretKey (安全密钥)" placeholder="请输入OSS SecretKey (安全密钥)" class="layui-input">
<p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到安全密钥。</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="col-sm-4 col-sm-offset-2">
<div class="layui-form-item text-center">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}
{block name="script"}
<script>
(function () {
window.form.render();
buildForm('{:sysconf("storage_type")}');
$('[name=storage_type]').on('click', function () {
buildForm($('[name=storage_type]:checked').val())
});
// 表单显示编译
function buildForm(value) {
var $tips = $("[data-storage-type='" + value + "']");
$("[data-storage-type]").not($tips.show()).hide();
}
})();
</script>
{/block}

View 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">
AppName<br><span class="nowrap color-desc">程序名称</span>
</label>
<div class='col-sm-8'>
<input name="app_name" required="required" title="请输入程序名称" placeholder="请输入程序名称" value="{:sysconf('app_name')}" class="layui-input">
<p class="help-block">当前程序名称,在后台主标题上显示</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">
AppVersion<br><span class="nowrap color-desc">程序版本</span>
</label>
<div class='col-sm-8'>
<input name="app_version" required="required" title="请输入程序版本" placeholder="请输入程序版本" value="{:sysconf('app_version')}" class="layui-input">
<p class="help-block">当前程序版本号,在后台主标题上标显示</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<label class="col-sm-2 control-label">
SiteName<br><span class="nowrap color-desc">网站名称</span>
</label>
<div class='col-sm-8'>
<input name="site_name" required="required" title="请输入网站名称" placeholder="请输入网站名称" value="{:sysconf('site_name')}" class="layui-input">
<p class="help-block">网站名称,显示在浏览器标签上</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">
Copyright<br><span class="nowrap color-desc">版权信息</span>
</label>
<div class='col-sm-8'>
<input name="site_copy" required="required" title="请输入版权信息" placeholder="请输入版权信息" value="{:sysconf('site_copy')}" class="layui-input">
<p class="help-block">程序的版权信息设置,在后台登录页面显示</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<label class="col-sm-2 control-label">
Browser<br><span class="nowrap color-desc">浏览器图标</span>
</label>
<div class='col-sm-8'>
<img data-tips-image style="height:auto;max-height:32px;min-width:32px" src="{:sysconf('browser_icon')}"/>
<input type="hidden" name="browser_icon" onchange="$(this).prev('img').attr('src', this.value)" value="{:sysconf('browser_icon')}" class="layui-input">
<a class="btn btn-link" data-file="one" data-uptype="local" data-type="ico,png" data-field="browser_icon">上传图片</a>
<p class="help-block">建议上传ICO图标的尺寸为128x128px此图标用于网站标题前ICON在线制作</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">
Miitbeian<br><span class="nowrap color-desc">网站备案</span>
</label>
<div class='col-sm-8'>
<input name="miitbeian" title="请输入网站备案号" placeholder="请输入网站备案号" value="{:sysconf('miitbeian')}" class="layui-input">
<p class="help-block">网站备案号,可以在<a target="_blank" href="http://www.miitbeian.gov.cn">备案管理中心</a>查询获取</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="col-sm-4 col-sm-offset-2">
<div class="layui-form-item text-center">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}

View File

@ -0,0 +1,41 @@
{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-30'>
<div class="form-group">
<label class="col-sm-2 control-label">State <span class="nowrap">(账号状态)</span></label>
<div class='col-sm-8'>
<input disabled class="layui-input layui-bg-gray" value="{if $result.code}账号正常,短信剩余 {$result.num}{else}{$result.msg}{/if}">
<p class="help-block">肋通SMS接口状态若短信剩余条数不足时请提前充值。</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Username <span class="nowrap">(平台账号)</span></label>
<div class='col-sm-8'>
<input type="text" name="sms_username" autocomplete="off" required="required" value="{:sysconf('sms_username')}"
title="请输入助通SMS接口平台账号" placeholder="请输入助通SMS接口平台账号" class="layui-input">
<p class="help-block">助通SMS接口平台账号平台管理 <a target="_blank" href="http://client.ztsms.cn">登录平台</a></p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Password <span class="nowrap">(平台密码)</span></label>
<div class='col-sm-8'>
<input type="text" name="sms_password" autocomplete="off" required="required" value="{:sysconf('sms_password')}"
title="请输入助通SMS接口平台密码" placeholder="请输入助通SMS接口平台密码" class="layui-input">
<p class="help-block">助通SMS接口平台密码需要在助通平台修改。</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="col-sm-4 col-sm-offset-2">
<div class="layui-form-item text-center">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}

View File

@ -1,9 +0,0 @@
{extend name="extra@admin/main"}
{block name='body'}
{include file="extra@admin/main/top"}
<div class="framework-body framework-sidebar-mini">
{include file="extra@admin/main/left"}
<div class="framework-container" style="left:0"></div>
</div>
{/block}

View File

@ -1,115 +0,0 @@
{extend name='extra@admin/content'}
{block name="content"}
<div class="row">
<div class="col-lg-6">
<table class="layui-box layui-table" lay-even lay-skin="line">
<colgroup>
<col width="30%">
<col>
</colgroup>
<thead>
<tr>
<th class="text-left" colspan="2">系统信息</th>
</tr>
</thead>
<tbody>
<tr>
<td>ThinkAdmin 版本</td>
<td>{:sysconf('app_version')}</td>
</tr>
<tr>
<td>ThinkPHP 版本</td>
<td>{$Think.const.THINK_VERSION}</td>
</tr>
<tr>
<td>服务器操作系统</td>
<td>{:php_uname('s')}</td>
</tr>
<tr>
<td>WEB运行环境</td>
<td>{:php_sapi_name()}</td>
</tr>
<tr>
<td>MySQL数据库版本</td>
<td>{$mysql_ver}</td>
</tr>
<tr>
<td>运行PHP版本</td>
<td>{:phpversion()}</td>
</tr>
<tr>
<td>上传大小限制</td>
<td>{:ini_get('upload_max_filesize')}</td>
</tr>
<tr>
<td>POST大小限制</td>
<td>{:ini_get('post_max_size')}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-lg-6">
<table class="layui-box layui-table" lay-even lay-skin="line">
<colgroup>
<col width="30%">
<col>
</colgroup>
<thead>
<tr>
<th class="text-left" colspan="2">产品团队</th>
</tr>
</thead>
<tbody>
<tr>
<td>产品名称</td>
<td>ThinkAdmin 管理框架</td>
</tr>
<tr>
<td>产品研发团队</td>
<td>广州楚才信息科技有限公司</td>
</tr>
<tr>
<td>产品DEMO体验</td>
<td>
<a target="_blank" href="https://think.ctolog.com">https://think.ctolog.com</a>
</td>
</tr>
<tr>
<td>官方QQ群</td>
<td>
<a href="http://shang.qq.com/wpa/qunwpa?idkey=ae25cf789dafbef62e50a980ffc31242f150bc61a61164458216dd98c411832a">
<img src="//pub.idqqimg.com/wpa/images/group.png" style="height:18px;width:auto"
target="_blank">
</a>
</td>
</tr>
<tr>
<td>BUG反馈</td>
<td>
<a target="_blank" href="https://github.com/zoujingli/ThinkAdmin/issues">
https://github.com/zoujingli/ThinkAdmin/issues
</a>
</td>
</tr>
<tr>
<td>项目地址</td>
<td>
<a target="_blank" href="https://github.com/zoujingli/ThinkAdmin">
https://github.com/zoujingli/ThinkAdmin
</a>
</td>
</tr>
<tr>
<td>公司官网</td>
<td><a target="_blank" href="http://www.cuci.cc">http://www.cuci.cc</a></td>
</tr>
<tr>
<td>公司地址</td>
<td>广东省 广州市 海珠区 世港国际公寓E1栋</td>
</tr>
</tbody>
</table>
</div>
</div>
{/block}

View File

@ -0,0 +1,83 @@
{extend name="admin@public/main"}
{block name='body'}
<!-- 顶部菜单区域 开始 -->
<div class="framework-topbar">
<div class="topbar-head pull-left">
<a href="{:url('@')}" class="topbar-logo pull-left">{:sysconf('app_name')} <sup>{:sysconf('app_version')}</sup></a>
</div>
<!--{foreach $menus as $oneMenu}-->
<a data-menu-node="m-{$oneMenu.id}" data-open="{$oneMenu.url}" class="topbar-btn pull-left transition">
{notempty name='oneMenu.icon'}<span class='font-s13 {$oneMenu.icon}'></span>&nbsp;{/notempty}
{$oneMenu.title|default=''}
</a>
<!--{/foreach}-->
<div class="pull-right">
<!--{if session('user.id')}-->
<div class="dropdown">
<a href="#" class="dropdown-toggle topbar-btn text-center transition" data-toggle="dropdown">
<span class="glyphicon glyphicon-user font-s13"></span>
{:session('user.username')}
<span class="toggle-icon glyphicon glyphicon-menu-up transition font-s13"></span>
</a>
<ul class="dropdown-menu">
<li class="topbar-btn"><a data-modal="{:url('admin/index/pass')}?id={:session('user.id')}" data-title="修改密码"><i class="glyphicon glyphicon-lock"></i> 修改密码</a></li>
<li class="topbar-btn"><a data-modal="{:url('admin/index/info')}?id={:session('user.id')}" data-title="修改资料"><i class="glyphicon glyphicon-edit"></i> 修改资料</a></li>
<li class="topbar-btn">
<a data-load="{:url('admin/login/out')}" data-confirm="确定要退出登录吗?"><i class="glyphicon glyphicon-log-out"></i> 退出登录</a>
</li>
</ul>
</div>
<!--{else}-->
<div class="topbar-info-item">
<a data-href="{:url('@admin/login')}" data-toggle="dropdown" class=" topbar-btn text-center">
<span class='glyphicon glyphicon-user'></span> 立即登录 </span>
</a>
</div>
<!--{/if}-->
</div>
<a class="topbar-btn pull-right transition" data-tips-text="刷新" data-reload="true" style="width:50px"><span class="glyphicon glyphicon-refresh font-s12"></span></a>
</div>
<!-- 顶部菜单区域 结束 -->
<!-- 左则菜单区域 开始 -->
<div class="framework-leftbar">
{foreach $menus as $oneMenu}
<!--{notempty name='$oneMenu.sub'}-->
<div class="leftbar-container hide notselect" data-menu-layout="m-{$oneMenu.id}">
<div class="line-top">
<i class="layui-icon font-s12">&#xe65f;</i>
</div>
{foreach $oneMenu.sub as $twoMenu}
<!--{empty name='$twoMenu.sub'}-->
<a class='transition' data-menu-node="m-{$oneMenu.id}-{$twoMenu.id}" data-open="{$twoMenu.url}">
{notempty name='twoMenu.icon'}<span class='{$twoMenu.icon} font-icon'></span>&nbsp;{/notempty}
{$twoMenu.title}
</a>
<!--{else}-->
<div data-submenu-layout='m-{$oneMenu.id}-{$twoMenu.id}'>
<a class='menu-title transition'>
{notempty name='twoMenu.icon'}<span class='{$twoMenu.icon} font-icon'></span>&nbsp;{/notempty}
{$twoMenu.title} <i class='layui-icon pull-right font-s12 transition'>&#xe619;</i>
</a>
<div>
{foreach $twoMenu.sub as $thrMenu}
<a class='transition' data-open="{$thrMenu.url}" data-menu-node="m-{$oneMenu.id}-{$twoMenu.id}-{$thrMenu.id}">
{notempty name='thrMenu.icon'}<span class='{$thrMenu.icon} font-icon'></span>{/notempty} {$thrMenu.title}
</a>
{/foreach}
</div>
</div>
<!--{/empty}-->
{/foreach}
</div>
<!--{/notempty}-->
{/foreach}
</div>
<!-- 左则菜单区域 结束 -->
<!-- 右则内容区域 开始 -->
<div class="framework-body"></div>
<!-- 右则内容区域 结束 -->
{/block}

View File

@ -0,0 +1,145 @@
{extend name='admin@public/content'}
{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%">
<col width="30%">
<col width="20%">
<col width="30%">
</colgroup>
<thead>
<tr>
<th class="text-left" colspan="2">系统信息</th>
<th class="text-left" colspan="2">产品团队</th>
</tr>
</thead>
<tbody>
<tr>
<td style="max-width:200px" class="nowrap">ThinkAdmin 版本</td>
<td class="nowrap">{:sysconf('app_version')}</td>
<td style="max-width:200px" class="nowrap">产品名称</td>
<td class="nowrap">ThinkAdmin 管理框架</td>
</tr>
<tr>
<td class="nowrap">ThinkPHP 版本</td>
<td class="nowrap">{$think_ver}</td>
<td class="nowrap">产品名称</td>
<td class="nowrap">ThinkAdmin 管理框架</td>
</tr>
<tr>
<td class="nowrap">服务器操作系统</td>
<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>
</td>
</tr>
<tr>
<td class="nowrap">WEB运行环境</td>
<td class="nowrap">{:php_sapi_name()}</td>
<td class="nowrap">官方QQ群</td>
<td class="nowrap">
<a href="http://shang.qq.com/wpa/qunwpa?idkey=ae25cf789dafbef62e50a980ffc31242f150bc61a61164458216dd98c411832a">
<img src="//pub.idqqimg.com/wpa/images/group.png" style="height:18px;width:auto" target="_blank">
</a>
</td>
</tr>
<tr>
<td class="nowrap">MySQL数据库版本</td>
<td class="nowrap">{$mysql_ver}</td>
<td class="nowrap">BUG反馈</td>
<td class="nowrap">
<a target="_blank" href="https://github.com/zoujingli/ThinkAdmin/issues">
https://github.com/zoujingli/ThinkAdmin/issues
</a>
</td>
</tr>
<tr>
<td class="nowrap">运行PHP版本</td>
<td class="nowrap">{$Think.PHP_VERSION}</td>
<td class="nowrap">项目地址</td>
<td class="nowrap">
<a target="_blank" href="https://github.com/zoujingli/ThinkAdmin">
https://github.com/zoujingli/ThinkAdmin
</a>
</td>
</tr>
<tr>
<td class="nowrap">上传大小限制</td>
<td class="nowrap">{:ini_get('upload_max_filesize')}</td>
<td class="nowrap">公司官网</td>
<td class="nowrap"><a target="_blank" href="http://www.cuci.cc">http://www.cuci.cc</a></td>
</tr>
<tr>
<td class="nowrap">POST大小限制</td>
<td class="nowrap">{:ini_get('post_max_size')}</td>
<td class="nowrap">公司地址</td>
<td class="nowrap">广州市天河区东圃一横路东泷商贸中心C座316</td>
</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}

View File

@ -1,99 +1,96 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right margin-top-10" style="margin-top:10px">
{if auth("$classuri/del")}
<button data-update data-field='delete' data-action='{:url("$classuri/del")}' class='layui-btn layui-btn-small layui-btn-danger'>
<i class='fa fa-remove'></i> 删除日志
</button>
{/if}
</div>
{/block}
{block name="content"}
<!-- 表单搜索 开始 -->
<form class="layui-form layui-form-pane form-search" action="__SELF__" 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="username" value="{$Think.get.username|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">
<select name='action' class='layui-select' lay-search="">
<option value=''> - 所有记录 -</option>
<!--{foreach $actions as $action}-->
<!--{if $action===$Think.get.action}-->
<option selected="selected" value='{$action}'>{$action}</option>
<!--{else}-->
<option value='{$action}'>{$action}</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label">操作内容</label>
<div class="layui-input-inline">
<input name="content" value="{$Think.get.content|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|default=''}"
placeholder="请选择操作时间" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
</div>
</form>
<!-- 表单搜索 结束 -->
<form onsubmit="return false;" data-auto="true" method="post">
<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-none-auto="" data-check-target='.list-check-box' type='checkbox'/>
</th>
<th class='text-center'>操作者</th>
<th class='text-left'>节点</th>
<th class='text-left'>行为</th>
<th class='text-left'>操作内容</th>
<th class='text-left'>操作位置</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='text-center'>{$vo.username}</td>
<td class='text-left'>{$vo.node}</td>
<td class='text-left'>{$vo.action}</td>
<td class='text-left'>{$vo.content}</td>
<td class='text-left'>{$vo.isp|default=$vo.ip}</td>
<td class='text-left'>{$vo.create_at|format_datetime}</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
<script>
window.form.render();
window.laydate.render({range: true, elem: '#range-date', format: 'yyyy/MM/dd'});
</script>
</form>
{extend name='admin@public/content'}
{block name="button"}
<!--{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="username" value="{$Think.get.username|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">
<select name='action' class='layui-select' lay-search="">
<option value=''> - 所有记录 -</option>
<!--{foreach $actions as $action}-->
<!--{if $action===$Think.get.action}-->
<option selected="selected" value='{$action}'>{$action}</option>
<!--{else}-->
<option value='{$action}'>{$action}</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label">操作内容</label>
<div class="layui-input-inline">
<input name="content" value="{$Think.get.content|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="create_at" id='create_at' value="{$Think.get.create_at|default=''}" placeholder="请选择操作时间" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
</div>
</form>
<script>
window.form.render();
window.laydate.render({range: true, elem: '#create_at'});
</script>
<!-- 表单搜索 结束 -->
<form onsubmit="return false;" data-auto="true" method="post">
<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'>
</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 nowrap'>操作位置</th>
<th class='text-left nowrap'>操作时间</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='text-left nowrap'>{$vo.username}</td>
<td class='text-left nowrap'>{$vo.node}</td>
<td class='text-left nowrap'>{$vo.action}</td>
<td class='text-left nowrap'>{$vo.content}</td>
<td class='text-left nowrap'>{$vo.isp|default=$vo.ip}</td>
<td class='text-left nowrap'>{$vo.create_at|format_datetime}</td>
</tr>
<!--{/foreach}-->
</tbody>
</table>
{if isset($page)}<p>{$page|raw}</p>{/if}
</form>
{/block}

View File

@ -0,0 +1,76 @@
{extend name='admin@public/content'}
{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="phone" value="{$Think.get.phone|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="content" value="{$Think.get.content|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="result" value="{$Think.get.result|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|default=''}" placeholder="请选择发送时间" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
</div>
</form>
<!-- 表单搜索 结束 -->
<form onsubmit="return false;" data-auto="true" method="post">
<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'/>
</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>
</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='text-left nowrap'>{$vo.phone}</td>
<td class='text-left nowrap'>{$vo.content}</td>
<td class='text-left nowrap'>{$vo.result}</td>
<td class='text-left nowrap'>{$vo.create_at|format_datetime}</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
<script>
window.form.render();
window.laydate.render({range: true, elem: '#range-date'});
</script>
</form>
{/block}

View File

@ -1,89 +1,87 @@
{extend name="extra@admin/main"}
{block name="style"}
<link rel="stylesheet" href="__STATIC__/theme/default/css/login.css">
{/block}
{block name="body"}
<div class="login-container full-height">
<!-- 动态云层动画 开始 -->
<div class="clouds-container">
<div class="clouds clouds-footer"></div>
<div class="clouds"></div>
<div class="clouds clouds-fast"></div>
</div>
<!-- 动态云层动画 结束 -->
<!-- 顶部导航条 开始 -->
<div class="header">
<span class="title notselect">
欢迎登录 {:sysconf('app_name')} 后台管理 <sup>{:sysconf('app_version')}</sup>
</span>
<ul>
<!--<li class="notselect"><a href="javascript:void(0)" target="_blank">帮助</a></li>-->
<li class="notselect">
<a href="http://sw.bos.baidu.com/sw-search-sp/software/4bcf5e4f1835b/ChromeStandalone_54.0.2840.99_Setup.exe">
<b>推荐使用谷歌浏览器</b>
</a>
</li>
</ul>
</div>
<!-- 顶部导航条 结束 -->
<!-- 页面表单主体 开始 -->
<div class="container" style="top:50%;margin-top:-300px">
<form onsubmit="return false;" data-time="0.001" data-auto="true" method="post"
class="content layui-form animated fadeInDown">
<div class="people">
<div class="tou"></div>
<div id="left-hander" class="initial_left_hand transition"></div>
<div id="right-hander" class="initial_right_hand transition"></div>
</div>
<ul>
<li>
<input name='username' class="hide"/>
<input required="required" pattern="^\S{4,}$" value="admin" name="username"
autofocus="autofocus" autocomplete="off" class="login-input username"
title="请输入4位及以上的字符" placeholder="请输入用户名/手机号码"/>
</li>
<li>
<input name='password' class="hide"/>
<input required="required" pattern="^\S{4,}$" value="admin" name="password"
type="password" autocomplete="off" class="login-input password"
title="请输入4位及以上的字符" placeholder="请输入密码"/>
</li>
<li class="text-center">
<button type="submit" class="layui-btn layui-disabled" data-form-loaded="立 即 登 入"> </button>
<!--<a style="position:absolute;display:block;right:0" href="javascript:void(0)">忘记密码?</a>-->
</li>
</ul>
</form>
</div>
<!-- 页面表单主体 结束 -->
<!-- 底部版权信息 开始 -->
{if sysconf('site_copy')}
<div class="footer notselect">{:sysconf('site_copy')}</div>
{/if}
<!-- 底部版本信息 结束 -->
</div>
{/block}
{block name="script"}
<script>
if (window.location.href.indexOf('#') > -1) {
window.location.href = window.location.href.split('#')[0];
}
require(['jquery'], function ($) {
$('[name="password"]').on('focus', function () {
$('#left-hander').removeClass('initial_left_hand').addClass('left_hand');
$('#right-hander').removeClass('initial_right_hand').addClass('right_hand')
}).on('blur', function () {
$('#left-hander').addClass('initial_left_hand').removeClass('left_hand');
$('#right-hander').addClass('initial_right_hand').removeClass('right_hand')
});
});
</script>
{extend name="admin@public/main"}
{block name="style"}
<link href="__STATIC__/theme/css/login.css" rel="stylesheet">
{/block}
{block name="body"}
<div class="login-container">
<!-- 动态云层动画 开始 -->
<div class="clouds-container">
<div class="clouds clouds-footer"></div>
<div class="clouds"></div>
<div class="clouds clouds-fast"></div>
</div>
<!-- 动态云层动画 结束 -->
<!-- 顶部导航条 开始 -->
<div class="header notselect">
<span class="title notselect">{:sysconf('app_name')} <sup>{:sysconf('app_version')}</sup></span>
<ul>
<li><a href="javascript:void(0)" target="_blank">帮助</a></li>
<li>
<a href="http://sw.bos.baidu.com/sw-search-sp/software/9e6bc213b9d0b/ChromeStandalone_63.0.3239.132_Setup.exe">推荐使用谷歌浏览器</a>
</li>
</ul>
</div>
<!-- 顶部导航条 结束 -->
<!-- 页面表单主体 开始 -->
<div class="container">
<form onsubmit="return false;" data-time="0.001" data-auto="true" method="post" class="content layui-form animated fadeInDown">
<div class="people">
<div class="tou"></div>
<div id="left-hander" class="initial_left_hand transition"></div>
<div id="right-hander" class="initial_right_hand transition"></div>
</div>
<ul>
<li class="username">
<i></i>
<input required pattern="^\S{4,}$" name="username" 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="请输入密码">
</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>
</div>
<!-- 页面表单主体 结束 -->
<!-- 底部版权信息 开始 -->
{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}
</div>
{/if}
<!-- 底部版本信息 结束 -->
</div>
{/block}
{block name="script"}
<script>
if (window.location.href.indexOf('#') > -1) {
window.location.href = window.location.href.split('#')[0];
}
$(function () {
$('[name="password"]').on('focus', function () {
$('#left-hander').removeClass('initial_left_hand').addClass('left_hand');
$('#right-hander').removeClass('initial_right_hand').addClass('right_hand')
}).on('blur', function () {
$('#left-hander').addClass('initial_left_hand').removeClass('left_hand');
$('#right-hander').addClass('initial_right_hand').removeClass('right_hand')
});
});
</script>
{/block}

View File

@ -1,80 +0,0 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-modal='{:url("$classuri/add")}' data-title="添加菜单" class='layui-btn layui-btn-small'><i
class='fa fa-plus'></i> 添加菜单
</button>
<button data-update data-field='delete' data-action='{:url("$classuri/del")}'
class='layui-btn layui-btn-small layui-btn-danger'><i class='fa fa-remove'></i> 删除菜单
</button>
</div>
{/block}
{block name="content"}
<form onsubmit="return false;" data-auto="true" method="post">
<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-none-auto="" 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-mini"> </button>
</th>
<th class='text-center'></th>
<th>菜单名称</th>
<th class='visible-lg'>菜单链接</th>
<th class='text-center'>状态</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-center'>
<i style="font-size:18px;" class="{$vo.icon}"></i>
</td>
<td>{$vo.spl}{$vo.title}</td>
<td class='visible-lg'>{$vo.url}</td>
<td class='text-center'>
{if $vo.status eq 0}
<span>已禁用</span>
{elseif $vo.status eq 1}
<span style="color:#090">使用中</span>
{/if}
</td>
<td class='text-center nowrap'>
{if auth("$classuri/edit")}
<span class="text-explode">|</span>
<a data-modal='{:url("$classuri/edit")}?id={$vo.id}' href="javascript:void(0)">编辑</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")}'
href="javascript:void(0)">禁用</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")}'
href="javascript:void(0)">启用</a>
{/if}
{if auth("$classuri/del")}
<span class="text-explode">|</span>
<a data-update="{$vo.ids}" data-field='delete' data-action='{:url("$classuri/del")}'
href="javascript:void(0)">删除</a>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
</form>
{/block}

View File

@ -1,14 +1,14 @@
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="__SELF__" data-auto="true" method="post">
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' 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' style='display:block'>
<select name='pid' class='layui-select full-width' lay-ignore>
<!--{foreach $menus as $menu}-->
<!--{eq name='menu.id' value='$vo.pid|default=0'}-->
<option selected value='{$menu.id}'>{$menu.spl}{$menu.title}</option>
<option selected value='{$menu.id}'>{$menu.spl|raw}{$menu.title}</option>
<!--{else}-->
<option value='{$menu.id}'>{$menu.spl}{$menu.title}</option>
<option value='{$menu.id}'>{$menu.spl|raw}{$menu.title}</option>
<!--{/eq}-->
<!--{/foreach}-->
</select>
@ -34,7 +34,7 @@
<div class="layui-input-inline" style='width:300px'>
<input placeholder="请输入或选择图标" onchange="$('#icon-preview').get(0).className = this.value" type="text" name="icon" value='{$vo.icon|default=""}' class="layui-input">
</div>
<span class='layui-btn layui-btn-primary' style='padding:0 12px;min-width:45.2px'>
<span class='layui-btn layui-btn-primary' style='padding:0 12px;min-width:45px'>
<i id='icon-preview' style='font-size:1.2em' class='{$vo.icon|default=""}'></i>
</span>
<button data-icon='icon' type='button' class='layui-btn layui-btn-primary'>选择图标</button>
@ -43,14 +43,13 @@
<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}
{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(['bootstrap.typeahead'], function () {
var subjects = JSON.parse('{$nodes|json_encode}');
var subjects = JSON.parse('{$nodes|raw|json_encode}');
$('.typeahead').typeahead({source: subjects, items: 5});
});
</script>

View File

@ -0,0 +1,87 @@
{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">
<!--{empty name='list'}-->
<p class="help-block text-center well"> 哦!</p>
<!--{else}-->
<input type="hidden" value="resort" name="action">
<table id="test" 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'>
</th>
<th class='list-table-sort-td'>
<button type="submit" class="layui-btn layui-btn-normal layui-btn-xs"> </button>
</th>
<th class='text-center'></th>
<th></th>
<th class='visible-lg'></th>
<th class='text-center'></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-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='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}
</td>
<td class='text-center nowrap notselect'>
{if auth("$classuri/add")}
<span class="text-explode">|</span>
<!--{if $vo.spt<2}-->
<a data-modal='{:url("$classuri/add")}?pid={$vo.id}'>添加下级</a>
<!--{else}-->
<a class="color-desc">添加下级</a>
<!--{/if}-->
{/if}
{if auth("$classuri/edit")}
<span class="text-explode">|</span>
<a 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>
<!--{/empty}-->
</form>
{/block}

View File

@ -1,106 +0,0 @@
{extend name='extra@admin/content'}
{block name="content"}
<table class="table table-hover">
<thead>
<tr>
<th style="width:20px"></th>
<th class='text-left'>系统节点结构</th>
<th class='text-left'></th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
{foreach $nodes as $key=>$vo}
<tr>
<td style="width:20px"></td>
<td class='text-left nowrap'>
{$vo.spl}{$vo.node}
{if auth("$classuri/save")}
&nbsp;<input class='layui-input layui-input-inline title-input' name='title' data-node="{$vo.node}"
value="{$vo.title}" style='height:28px;line-height:28px;width:auto'/>
{/if}
</td>
<td class='text-left nowrap'>
{if auth("$classuri/save")}
<label data-tips-text="勾选后需要登录后才能访问">
{if substr_count($vo['node'],'/')==2}
{notempty name='vo.is_login'}
<input 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}
<input 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}
加入登录控制
{/if}
</label>
&nbsp;&nbsp;&nbsp;&nbsp;
<label data-tips-text="勾选后需配置用户权限后才能访问">
{if substr_count($vo['node'],'/')==2}
{notempty name='vo.is_auth'}
<input 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}
<input 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}
加入权限控制
{/if}
</label>
&nbsp;&nbsp;&nbsp;&nbsp;
<label data-tips-text="勾选后配置菜单时节点可自动选择">
{if substr_count($vo['node'],'/')==2}
{notempty name='vo.is_menu'}
<input name='is_menu' data-node="{$vo.node}" checked='checked' class='check-box menu_{$key}'
type='checkbox' value='1'/>
{else}
<input name='is_menu' data-node="{$vo.node}" class='check-box menu_{$key}' type='checkbox' value='1'/>
{/notempty}
加入菜单节点选择器
{/if}
</label>
{/if}
</td>
<td style="width:100%"></td>
</tr>
{/foreach}
</tbody>
</table>
{if auth("$classuri/save")}
<script>
$(function () {
$('input.title-input').on('blur', function () {
var data = {list: [{name: this.name, value: this.value, node: this.getAttribute('data-node')}]};
$.form.load('{:url("save")}', data, 'POST', function (ret) {
if (ret.code === 0) {
setTimeout(function () {
$.form.reload();
}, 3000);
$.msg.auto(ret);
}
return false;
});
});
$('input.check-box').on('click', function () {
var data = {list: []};
$(this).parent().parent().find('input').map(function () {
data.list.push({name: this.name, value: this.checked ? 1 : 0, node: this.getAttribute('data-node')});
});
$.form.load('{:url("save")}', data, 'POST', function (ret) {
if (ret.code === 0) {
setTimeout(function () {
$.form.reload();
}, 3000);
$.msg.auto(ret);
}
return false;
});
});
});
</script>
{/if}
{/block}

View File

@ -0,0 +1,208 @@
{extend name='admin@public/content'}
{block name='button'}
<!--{if auth("$classuri/clear")}-->
<button data-load='{:url("$classuri/clear")}' class='layui-btn layui-btn-sm layui-btn-danger'>清理无效记录</button>
<!--{/if}-->
{/block}
{block name="content"}
<!--data-tips-text="勾选后需配置用户权限后才能访问"-->
<!--data-tips-text="勾选后需要登录后才能访问"-->
<!--data-tips-text="勾选后配置菜单时节点可自动选择"-->
<style>
.layui-table .title-input {
width: auto;
height: 28px;
line-height: 28px;
}
.layui-table label {
cursor: pointer
}
</style>
<table class="layui-table border-none" lay-skin="line">
<!--{empty name='nodes'}-->
<p class="help-block text-center well"> 哦!</p>
<!--{else}-->
<!--{foreach $nodes as $key=>$vo}-->
<tr>
<td class='text-left nowrap'>
<span style="color:#ccc">{$vo.spl|raw}</span> {$vo.node}
{if auth("$classuri/save")}&nbsp;<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'>
{if auth("$classuri/save") and $vo.spt eq 1}
<label class="color-desc">
<input data-login-group="{$vo.node}" type="checkbox"> 全部加入登录控制
</label>
&nbsp;&nbsp;&nbsp;&nbsp;
<label class="notselect margin-left-15 color-desc">
<input data-auth-group="{$vo.node}" type="checkbox"> 全部加入权限控制
</label>
&nbsp;&nbsp;&nbsp;&nbsp;
<label class="notselect margin-left-15 color-desc">
<input data-menu-group="{$vo.node}" type="checkbox"> 全部加入菜单节点选择器
</label>
{/if}
{if auth("$classuri/save") and $vo.spt eq 2}
<span style="color:#ccc">&nbsp;├─ </span>
<label class="notselect margin-right-15">
{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}
<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}
加入登录控制
</label>
<span style="color:#ccc">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;├─ </span>
<label class="notselect margin-right-15">
{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}
<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}
加入权限控制
</label>
<span style="color:#ccc">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;├─ </span>
<label class="notselect">
{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}
<input data-menu-filter="{$vo.pnode}" name='is_menu' data-node="{$vo.node}" class='check-box menu_{$key}' type='checkbox' value='1'>
{/notempty}
加入菜单节点选择器
</label>
{/if}
</td>
<td style="width:100%" data-tips-filter="{$vo.pnode}" class="loading-tips nowrap"></td>
</tr>
<!--{/foreach}-->
<!--{/empty}-->
</table>
<!--{if auth("$classuri/save")}-->
<script>
$(function () {
syncLoginGroup.call(this);
$('[data-login-group]').on('click', function () {
var twoNode = this.getAttribute('data-login-group');
if (!checkRequestStatus(twoNode)) {
this.checked = !this.checked;
return $.msg.tips('正在处理中, 请稍候...');
}
var checked = !!this.checked;
$('[data-login-filter="' + twoNode + '"]').map(function () {
if (!(this.checked = checked)) {
$('[data-auth-filter="' + twoNode + '"]').map(function () {
this.checked = false;
});
}
update(this);
});
});
syncAuthGroup.call(this);
$('[data-auth-group]').on('click', function () {
var twoNode = this.getAttribute('data-auth-group');
if (!checkRequestStatus(twoNode)) {
this.checked = !this.checked;
return $.msg.tips('正在处理中, 请稍候...');
}
var checked = !!this.checked;
$('[data-auth-filter="' + twoNode + '"]').map(function () {
if ((this.checked = checked)) {
$('[data-login-filter="' + twoNode + '"]').map(function () {
this.checked = checked;
});
}
update(this);
});
});
syncMenuGroup.call(this);
$('[data-menu-group]').on('click', function () {
var twoNode = this.getAttribute('data-menu-group');
if (!checkRequestStatus(twoNode)) {
this.checked = !this.checked;
return $.msg.tips('正在处理中, 请稍候...');
}
var checked = !!this.checked;
$('[data-menu-filter="' + twoNode + '"]').map(function () {
this.checked = checked;
update(this);
});
});
// 更新触发更新
$('input.check-box').on('click', function () {
update(this);
});
$('input.title-input').on('blur', function () {
update(this);
});
// 数据自动更新
function update(self) {
var $item = $(self).parents('tr'), data = {list: []};
$item.find('input').map(function () {
var value = this.type === 'text' ? this.value : (this.checked ? 1 : 0);
data.list.push({name: this.name, value: value, node: this.getAttribute('data-node')});
});
$item.find('.loading-tips').html('<p class="color-green"><i class="fa fa-spinner fa-spin"></i> 更新数据...</p>');
$.form.load('{:url("save")}', data, 'post', function (ret) {
if (ret.code === 0) {
var tips = '<p class="color-red"><i class="fa fa-close"></i> 更新异常</p>';
return $item.find('.loading-tips').html(tips), false;
}
return $item.find('.loading-tips').html(''), false;
}, false);
return syncLoginGroup(), syncMenuGroup(), syncAuthGroup();
}
// 状态网络处理状态
function checkRequestStatus(twoNode) {
var status = true;
$('.loading-tips[data-tips-filter="' + twoNode + '"]').map(function () {
$(this).html() && (status = false);
});
return status;
}
// 同步登录分组状态
function syncLoginGroup() {
$('[data-login-group]').map(function () {
var node = this.getAttribute('data-login-group'), checked = true;
$('[data-login-filter="' + node + '"]').map(function () {
this.checked || (checked = false);
});
this.checked = checked;
});
}
// 同步权限分组状态
function syncAuthGroup() {
$('[data-auth-group]').map(function () {
var node = this.getAttribute('data-auth-group'), checked = true;
$('[data-auth-filter="' + node + '"]').map(function () {
this.checked || (checked = false);
});
this.checked = checked;
});
}
// 同步菜单分组状态
function syncMenuGroup() {
$('[data-menu-group]').map(function () {
var node = this.getAttribute('data-menu-group'), checked = true;
$('[data-menu-filter="' + node + '"]').map(function () {
this.checked || (checked = false);
});
this.checked = checked;
});
}
});
</script>
<!--{/if}-->
{/block}

View File

@ -1,555 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>{:sysconf('app_name')} {:sysconf('app_version')}</title>
<meta charset="utf-8">
<link rel="icon" href="../image/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=0">
<link href="__STATIC__/plugs/uploader/webuploader.css" rel="stylesheet" type="text/css"/>
<link href="__STATIC__/plugs/uploader/theme/uploader.css" rel="stylesheet" type="text/css"/>
<script src="__STATIC__/plugs/jquery/jquery.min.js"></script>
<script src="__STATIC__/plugs/uploader/webuploader.min.js"></script>
<script src="__STATIC__/plugs/uploader/theme/upload.js"></script>
</head>
<body>
<div id="uploader">
<div class="queueList">
<div id="dndArea" class="placeholder">
<div id="filePicker"></div>
</div>
</div>
<div class="statusBar" style="display:none;">
<div class="progress">
<span class="text">0%</span>
<span class="percentage"></span>
</div>
<div class="info"></div>
<div class="btns">
{if $mode!=='one'}
<div id="filePicker2"></div>
{/if}
<div class="uploadBtn">开始上传</div>
</div>
</div>
</div>
<script>
/* global WebUploader */
/**
* 每个文件上传成功调用
* @type Function
*/
function uploaded(ret, file) {
var url = ret.url || ret.site_url;
$('#' + file.id).attr('data-md5', file.md5).attr('data-src', url);
/*{if $mode === 'one'}*/
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}*/
}
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);
}
function completed() {
var btnHTML = '完成上传';
$('.uploadBtn').on('click', function () {
if (this.innerHTML === btnHTML) {
confirmSelected.call(this);
}
}).html(btnHTML);
}
// 当domReady的时候开始初始化
$(function () {
var $wrap = $('#uploader'),
/*文件容器*/
$queue = $('<ul class="filelist"></ul>').appendTo($wrap.find('.queueList')),
/*状态栏,包括进度和控制按钮*/
$statusBar = $wrap.find('.statusBar'),
/*文件总体选择信息。*/
$info = $statusBar.find('.info'),
/*上传按钮*/
$upload = $wrap.find('.uploadBtn'),
/*没选择文件之前的内容。*/
$placeHolder = $wrap.find('.placeholder'),
$progress = $statusBar.find('.progress').hide(),
/* 添加的文件数量*/
fileCount = 0,
/*添加的文件总大小*/
fileSize = 0,
/*优化retina, 在retina下这个值是2*/
ratio = window.devicePixelRatio || 1,
/*缩略图大小*/
thumbnailWidth = 110 * ratio, thumbnailHeight = 110 * ratio,
/*可能有pedding, ready, uploading, confirm, done.*/
state = 'pedding',
/*所有文件的进度信息key为file id*/
percentages = {},
/*判断浏览器是否支持文件的base64*/
isSupportBase64 = (function () {
var data = new Image();
var support = true;
data.onload = data.onerror = function () {
if (this.width != 1 || this.height != 1) {
support = false;
}
};
data.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
return support;
}.call(this)),
/*检测是否已经安装flash检测flash的版本*/
flashVersion = (function () {
var version;
try {
version = navigator.plugins['Shockwave Flash'];
version = version.description;
} catch (ex) {
try {
version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version');
} catch (ex2) {
version = '0.0';
}
}
version = version.match(/\d+/g);
return parseFloat(version[0] + '.' + version[1], 10);
})(),
supportTransition = (function () {
var s = document.createElement('p').style,
r = 'transition' in s || 'WebkitTransition' in s || 'MozTransition' in s || 'msTransition' in s || 'OTransition' in s;
return (s = null), r;
})(),
uploader;
if (!WebUploader.Uploader.support('flash') && WebUploader.browser.ie) {
/*flash 安装了但是版本过低*/
if (flashVersion) {
(function (container) {
window['expressinstallcallback'] = function (state) {
switch (state) {
case 'Download.Cancelled':
alert('您取消了更新!');
break;
case 'Download.Failed':
alert('安装失败');
break;
default:
alert('安装已成功,请刷新!');
break;
}
delete window['expressinstallcallback'];
};
var swf = '__STATIC__/plugs/uploader/expressInstall.swf';
var html = '<object type="application/' + 'x-shockwave-flash" data="' + swf + '" ';
if (WebUploader.browser.ie) {
html += 'classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';
}
html += 'width="100%" height="100%" style="outline:0">' +
'<param name="movie" value="' + swf + '" />' +
'<param name="wmode" value="transparent" />' +
'<param name="allowscriptaccess" value="always" />' +
'</object>';
container.html(html);
})($wrap);
} else {
$wrap.html('<a href="http://www.adobe.com/go/getflashplayer" target="_blank" border="0"><img alt="get flash player" src="http://www.adobe.com/macromedia/style_guide/images/160x41_Get_Flash_Player.jpg" /></a>');
}
return;
} else if (!WebUploader.Uploader.support()) {
alert('Web Uploader 不支持您的浏览器!');
return;
}
// 文件上传前的检查
WebUploader.Uploader.register({'before-send-file': 'preupload'}, {
preupload: function (file) {
var me = this, owner = this.owner, deferred = WebUploader.Deferred();
owner.md5File(file.source).fail(function () {
deferred.reject();
}).then(function (md5) {
file.md5 = md5;
var data = {id: file.id, md5: md5, uptype: '{$uptype}', filename: file.name};
$.ajax("{:url('admin/plugs/upstate')}", {
dataType: 'json', method: 'post', data: data, success: function (ret) {
if (ret.code !== 'NOT_FOUND') {
owner.skipFile(file);
uploaded.call(uploader, ret.data, file);
percentages[file.id] = [file.size, 1];
updateTotalProgress();
console.log('文件秒传成功 --> ' + file.name);
} else {
file.md5 = md5;
file.token = ret.data.token || '';
file.key = ret.data.file_url || '';
file.site_url = ret.data.site_url || '';
me.options.formData.OSSAccessKeyId = ret.data.OSSAccessKeyId || ''; // OSS
me.options.formData.signature = ret.data.signature; // OSS
me.options.formData.policy = ret.data.policy; // OSS
me.options.formData.success_action_status = '200'; // OSS
me.options.server = ret.data.server;
}
deferred.resolve();
}
});
});
return deferred.promise();
}
});
// 实例化
uploader = WebUploader.create({
pick: {
id: '#filePicker',
label: '点击选择文件',
/*{if $mode === 'one'}*/
multiple: false,
/*{else}*/
multiple: true,
/*{/if}*/
},
accept: {title: '选择文件', extensions: '{$types}', mimeTypes: '{$mimes}'},
formData: {},
/*{if $mode === 'one'}*/
auto: true,
fileNumLimit: 1,
/*{else}*/
auto: false,
fileNumLimit: 300,
/*{/if}*/
server: '{:url("admin/plugs/upload")}',
swf: '__STATIC__/plugs/uploader/Uploader.swf',
chunked: false,
dnd: '#dndArea',
paste: document.body,
chunkSize: 512 * 1024,
disableGlobalDnd: true,
fileSizeLimit: 200 * 1024 * 1024, // 200 M
fileSingleSizeLimit: 200 * 1024 * 1024, // 200 M
compress: {
width: 1600,
height: 16000,
crop: false, // 是否允许裁剪
quality: 90, // 图片质量(只有type为`image/jpeg`的时候才有效)
allowMagnify: false, // 是否允许放大(如果想要生成小图的时候不失真此选项应该设置为false).
preserveHeaders: true, // 是否保留头部meta信息
noCompressIfLarger: false, // 如果发现压缩后文件大小比原来还大,则使用原来图片
compressSize: 1024 * 512, // 单位字节(如果图片大小小于此值,不会采用压缩)
}
});
/* 上传开始前的处理 */
uploader.on('uploadBeforeSend', function (file, data, header) {
header['X_Requested_With'] = 'XMLHttpRequest';
data['allowed_types'] = this.options.accept[0].extensions.split(',').join('|');
data['token'] = file.file.token;
data['md5'] = file.file.md5;
data['key'] = file.file.key;
});
/* 处理上传后的结果 */
uploader.on('uploadAccept', function (fieldata, ret) {
// Qiniu or Local 上传
if (ret.code === 'SUCCESS') {
uploaded.call(uploader, ret.data, fieldata.file);
return true;
}
// AliOSS 上传
if (fieldata.file.site_url) {
uploaded.call(uploader, {'site_url': fieldata.file.site_url}, fieldata.file);
return true;
}
// 接收服务器返回的错误消息
fieldata.file.setStatus('error', ret.msg);
return false;
});
// 拖拽时不接受 js, txt 文件。
uploader.on('dndAccept', function (items) {
var denied = false, len = items.length, unAllowed = 'text/plain;application/javascript ';
for (var i = 0; i < len; i++) {
if (~unAllowed.indexOf(items[i].type)) {
denied = true;
break;
}
}
return !denied;
});
// 添加“添加文件”的按钮,
uploader.addButton({id: '#filePicker2', label: '继续添加'});
uploader.on('ready', function () {
window.uploader = uploader;
});
// 当有文件添加进来时执行负责view的创建
function addFile(file) {
var $li = $('<li id="' + file.id + '"><p class="title">' + file.name + '</p><p class="imgWrap"></p><p class="progress"><span></span></p></li>'),
$btns = $('<div class="file-panel"><span class="cancel">删除</span><span class="rotateRight">向右旋转</span><span class="rotateLeft">向左旋转</span></div>').appendTo($li),
$prgress = $li.find('p.progress span'), $wrap = $li.find('p.imgWrap'), $info = $('<p class="error"></p>');
var showError = function (code) {
var text = '';
switch (code) {
case 'exceed_size':
text = '文件大小超出';
break;
case 'interrupt':
text = '上传暂停';
break;
case 'http':
case 'server':
case 'abort':
text = '上传失败,请重试';
break;
default:
text = code;
break;
}
$info.text(text).appendTo($li);
};
if (file.getStatus() === 'invalid') {
showError(file.statusText);
} else {
// @todo lazyload
$wrap.text('预览中');
uploader.makeThumb(file, function (error, src) {
if (error) {
return $wrap.text('不能预览');
}
var img;
if (isSupportBase64) {
img = $('<img src="' + src + '">');
$wrap.empty().append(img);
} else {
$.ajax('{"plugs/file/preview"|url}', {method: 'post', data: src, dataType: 'json'}).done(function (response) {
if (response.result) {
img = $('<img src="' + response.result + '">');
$wrap.empty().append(img);
} else {
$wrap.text("预览出错");
}
});
}
}, thumbnailWidth, thumbnailHeight);
percentages[file.id] = [file.size, 0];
file.rotation = 0;
$upload.html('开始上传');
}
// 文件上传状态变化
file.on('statuschange', function (cur, prev) {
if (prev === 'progress') {
$prgress.hide().width(0);
} else if (prev === 'queued') {
$li.off('mouseenter mouseleave'), $btns.remove();
}
if (cur === 'error' || cur === 'invalid') {
showError(file.statusText);
percentages[file.id][1] = 1;
} else if (cur === 'interrupt') {
showError('interrupt');
} else if (cur === 'queued') {
percentages[file.id][1] = 0;
} else if (cur === 'progress') {
$info.remove(), $prgress.css('display', 'block');
} else if (cur === 'complete') {
$li.append('<span class="success"></span>');
}
$li.removeClass('state-' + prev).addClass('state-' + cur);
});
$li.on('mouseenter', function () {
$btns.stop().animate({height: 30});
}).on('mouseleave', function () {
$btns.stop().animate({height: 0});
});
$btns.on('click', 'span', function () {
switch ($(this).index()) {
case 0:
removeFile(file);
return uploader.removeFile(file);
case 1:
file.rotation += 90;
break;
case 2:
file.rotation -= 90;
break;
}
if (supportTransition) {
var deg = 'rotate(' + file.rotation + 'deg)';
$wrap.css({'-webkit-transform': deg, '-mos-transform': deg, '-o-transform': deg, 'transform': deg});
} else {
$wrap.css('filter', 'progid:DXImageTransform.Microsoft.BasicImage(rotation=' + (~~((file.rotation / 90) % 4 + 4) % 4) + ')');
}
});
$li.appendTo($queue);
}
// 负责view的销毁
function removeFile(file) {
delete percentages[file.id];
updateTotalProgress();
$('#' + file.id).off().find('.file-panel').off().end().remove();
}
function updateTotalProgress() {
var loaded = 0, total = 0, spans = $progress.children(), percent;
$.each(percentages, function (k, v) {
total += v[0];
loaded += v[0] * v[1];
});
percent = total ? loaded / total : 0;
spans.eq(0).text(Math.round(percent * 100) + '%');
spans.eq(1).css('width', Math.round(percent * 100) + '%');
updateStatus();
}
function updateStatus() {
var text = '', stats;
if (state === 'ready') {
text = '选中' + fileCount + '个文件,共' + WebUploader.formatSize(fileSize) + '。';
} else if (state === 'confirm') {
stats = uploader.getStats();
if (stats.uploadFailNum) {
text = '已成功上传' + stats.successNum + '个文件,' + stats.uploadFailNum + '个文件上传失败,<a class="retry" href="#">重新上传</a>失败文件'
}
} else {
stats = uploader.getStats();
text = '共' + fileCount + '个(' + WebUploader.formatSize(fileSize) + '),已上传' + stats.successNum + '个';
if (stats.uploadFailNum) {
text += ',失败' + stats.uploadFailNum + '个';
}
}
$info.html(text);
}
function setState(val) {
var stats;
if (val === state) {
return;
}
$upload.removeClass('state-' + state);
$upload.addClass('state-' + val);
state = val;
switch (state) {
case 'pedding':
$placeHolder.removeClass('element-invisible');
$queue.hide();
$statusBar.addClass('element-invisible');
uploader.refresh();
break;
case 'ready':
$placeHolder.addClass('element-invisible');
$('#filePicker2').removeClass('element-invisible');
$queue.show();
$statusBar.removeClass('element-invisible');
uploader.refresh();
break;
case 'uploading':
$('#filePicker2').addClass('element-invisible');
$progress.show();
$upload.text('暂停上传');
break;
case 'paused':
$progress.show();
$upload.text('继续上传');
break;
case 'confirm':
$progress.hide();
$('#filePicker2').removeClass('element-invisible');
$upload.text('开始上传');
stats = uploader.getStats();
if (stats.successNum && !stats.uploadFailNum) {
setState('finish');
return;
}
break;
case 'finish':
stats = uploader.getStats();
if (stats.successNum) {
completed.call(this);
} else {
state = 'done';
location.reload();
}
break;
}
updateStatus();
}
uploader.onUploadProgress = function (file, percentage) {
var $li = $('#' + file.id), $percent = $li.find('.progress span');
$percent.css('width', percentage * 100 + '%');
percentages[file.id][1] = percentage;
updateTotalProgress();
};
uploader.onFileQueued = function (file) {
fileCount++;
fileSize += file.size;
if (fileCount === 1) {
$placeHolder.addClass('element-invisible');
$statusBar.show();
}
addFile(file), setState('ready'), updateTotalProgress();
};
uploader.onfieldequeued = function (file) {
fileCount--;
fileSize -= file.size;
!fileCount && setState('pedding');
removeFile(file), updateTotalProgress();
};
uploader.on('all', function (type) {
switch (type) {
case 'uploadFinished':
return setState('confirm');
case 'startUpload':
return setState('uploading');
case 'stopUpload':
return setState('paused');
}
});
uploader.onError = function (code) {
alert('Error: ' + code);
};
$upload.on('click', function () {
if ($(this).hasClass('disabled')) {
return false;
}
if (state === 'ready') {
uploader.upload();
} else if (state === 'paused') {
uploader.upload();
} else if (state === 'uploading') {
uploader.stop();
}
});
$info.on('click', '.retry', function () {
uploader.retry();
});
$upload.addClass('state-' + state);
updateTotalProgress();
});
</script>
</body>
</html>

View File

@ -0,0 +1,555 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>{:sysconf('app_name')} {:sysconf('app_version')}</title>
<meta charset="utf-8">
<link rel="icon" href="../image/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=0">
<link href="__STATIC__/plugs/uploader/webuploader.css" rel="stylesheet" type="text/css"/>
<link href="__STATIC__/plugs/uploader/theme/uploader.css" rel="stylesheet" type="text/css"/>
<script src="__STATIC__/plugs/jquery/jquery.min.js"></script>
<script src="__STATIC__/plugs/uploader/webuploader.min.js"></script>
<script src="__STATIC__/plugs/uploader/theme/upload.js"></script>
</head>
<body>
<div id="uploader">
<div class="queueList">
<div id="dndArea" class="placeholder">
<div id="filePicker"></div>
</div>
</div>
<div class="statusBar" style="display:none;">
<div class="progress">
<span class="text">0%</span>
<span class="percentage"></span>
</div>
<div class="info"></div>
<div class="btns">
{if $mode!=='one'}
<div id="filePicker2"></div>
{/if}
<div class="uploadBtn">开始上传</div>
</div>
</div>
</div>
<script>
/* global WebUploader */
/**
* 每个文件上传成功调用
* @type Function
*/
function uploaded(ret, file) {
var url = ret.url || ret.site_url;
$('#' + file.id).attr('data-md5', file.md5).attr('data-src', url);
/*{if $mode === 'one'}*/
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}*/
}
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);
}
function completed() {
var btnHTML = '完成上传';
$('.uploadBtn').on('click', function () {
if (this.innerHTML === btnHTML) {
confirmSelected.call(this);
}
}).html(btnHTML);
}
// 当domReady的时候开始初始化
$(function () {
var $wrap = $('#uploader'),
/*文件容器*/
$queue = $('<ul class="filelist"></ul>').appendTo($wrap.find('.queueList')),
/*状态栏,包括进度和控制按钮*/
$statusBar = $wrap.find('.statusBar'),
/*文件总体选择信息。*/
$info = $statusBar.find('.info'),
/*上传按钮*/
$upload = $wrap.find('.uploadBtn'),
/*没选择文件之前的内容。*/
$placeHolder = $wrap.find('.placeholder'),
$progress = $statusBar.find('.progress').hide(),
/* 添加的文件数量*/
fileCount = 0,
/*添加的文件总大小*/
fileSize = 0,
/*优化retina, 在retina下这个值是2*/
ratio = window.devicePixelRatio || 1,
/*缩略图大小*/
thumbnailWidth = 110 * ratio, thumbnailHeight = 110 * ratio,
/*可能有pedding, ready, uploading, confirm, done.*/
state = 'pedding',
/*所有文件的进度信息key为file id*/
percentages = {},
/*判断浏览器是否支持文件的base64*/
isSupportBase64 = (function () {
var data = new Image();
var support = true;
data.onload = data.onerror = function () {
if (this.width != 1 || this.height != 1) {
support = false;
}
};
data.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
return support;
}.call(this)),
/*检测是否已经安装flash检测flash的版本*/
flashVersion = (function () {
var version;
try {
version = navigator.plugins['Shockwave Flash'];
version = version.description;
} catch (ex) {
try {
version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version');
} catch (ex2) {
version = '0.0';
}
}
version = version.match(/\d+/g);
return parseFloat(version[0] + '.' + version[1], 10);
})(),
supportTransition = (function () {
var s = document.createElement('p').style,
r = 'transition' in s || 'WebkitTransition' in s || 'MozTransition' in s || 'msTransition' in s || 'OTransition' in s;
return (s = null), r;
})(),
uploader;
if (!WebUploader.Uploader.support('flash') && WebUploader.browser.ie) {
/*flash 安装了但是版本过低*/
if (flashVersion) {
(function (container) {
window['expressinstallcallback'] = function (state) {
switch (state) {
case 'Download.Cancelled':
alert('您取消了更新!');
break;
case 'Download.Failed':
alert('安装失败');
break;
default:
alert('安装已成功,请刷新!');
break;
}
delete window['expressinstallcallback'];
};
var swf = '__STATIC__/plugs/uploader/expressInstall.swf';
var html = '<object type="application/' + 'x-shockwave-flash" data="' + swf + '" ';
if (WebUploader.browser.ie) {
html += 'classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';
}
html += 'width="100%" height="100%" style="outline:0">' +
'<param name="movie" value="' + swf + '" />' +
'<param name="wmode" value="transparent" />' +
'<param name="allowscriptaccess" value="always" />' +
'</object>';
container.html(html);
})($wrap);
} else {
$wrap.html('<a href="http://www.adobe.com/go/getflashplayer" target="_blank" border="0"><img alt="get flash player" src="http://www.adobe.com/macromedia/style_guide/images/160x41_Get_Flash_Player.jpg" /></a>');
}
return;
} else if (!WebUploader.Uploader.support()) {
alert('Web Uploader 不支持您的浏览器!');
return;
}
// 文件上传前的检查
WebUploader.Uploader.register({'before-send-file': 'preupload'}, {
preupload: function (file) {
var me = this, owner = this.owner, deferred = WebUploader.Deferred();
owner.md5File(file.source).fail(function () {
deferred.reject();
}).then(function (md5) {
file.md5 = md5;
var data = {id: file.id, md5: md5, uptype: '{$uptype}', filename: file.name};
$.ajax("{:url('admin/plugs/upstate')}", {
dataType: 'json', method: 'post', data: data, success: function (ret) {
if (ret.code !== 'NOT_FOUND') {
owner.skipFile(file);
uploaded.call(uploader, ret.data, file);
percentages[file.id] = [file.size, 1];
updateTotalProgress();
console.log('文件秒传成功 --> ' + file.name);
} else {
file.md5 = md5;
file.token = ret.data.token || '';
file.key = ret.data.file_url || '';
file.site_url = ret.data.site_url || '';
me.options.formData.OSSAccessKeyId = ret.data.OSSAccessKeyId || ''; // OSS
me.options.formData.signature = ret.data.signature; // OSS
me.options.formData.policy = ret.data.policy; // OSS
me.options.formData.success_action_status = '200'; // OSS
me.options.server = ret.data.server;
}
deferred.resolve();
}
});
});
return deferred.promise();
}
});
// 实例化
uploader = WebUploader.create({
pick: {
id: '#filePicker',
label: '点击选择文件',
/*{if $mode === 'one'}*/
multiple: false,
/*{else}*/
multiple: true,
/*{/if}*/
},
accept: {title: '选择文件', extensions: '{$types}', mimeTypes: '{$mimes}'},
formData: {},
/*{if $mode === 'one'}*/
auto: true,
fileNumLimit: 1,
/*{else}*/
auto: false,
fileNumLimit: 300,
/*{/if}*/
server: '{:url("admin/plugs/upload")}',
swf: '__STATIC__/plugs/uploader/Uploader.swf',
chunked: false,
dnd: '#dndArea',
paste: document.body,
chunkSize: 512 * 1024,
disableGlobalDnd: true,
fileSizeLimit: 200 * 1024 * 1024, // 200 M
fileSingleSizeLimit: 200 * 1024 * 1024, // 200 M
compress: {
width: 1600,
height: 16000,
crop: false, // 是否允许裁剪
quality: 90, // 图片质量(只有type为`image/jpeg`的时候才有效)
allowMagnify: false, // 是否允许放大(如果想要生成小图的时候不失真此选项应该设置为false).
preserveHeaders: true, // 是否保留头部meta信息
noCompressIfLarger: false, // 如果发现压缩后文件大小比原来还大,则使用原来图片
compressSize: 1024 * 512, // 单位字节(如果图片大小小于此值,不会采用压缩)
}
});
/* 上传开始前的处理 */
uploader.on('uploadBeforeSend', function (file, data, header) {
header['X_Requested_With'] = 'XMLHttpRequest';
data['allowed_types'] = this.options.accept[0].extensions.split(',').join('|');
data['token'] = file.file.token;
data['md5'] = file.file.md5;
data['key'] = file.file.key;
});
/* 处理上传后的结果 */
uploader.on('uploadAccept', function (fieldata, ret) {
// Qiniu or Local 上传
if (ret.code === 'SUCCESS') {
uploaded.call(uploader, ret.data, fieldata.file);
return true;
}
// AliOSS 上传
if (fieldata.file.site_url) {
uploaded.call(uploader, {'site_url': fieldata.file.site_url}, fieldata.file);
return true;
}
// 接收服务器返回的错误消息
fieldata.file.setStatus('error', ret.msg);
return false;
});
// 拖拽时不接受 js, txt 文件。
uploader.on('dndAccept', function (items) {
var denied = false, len = items.length, unAllowed = 'text/plain;application/javascript ';
for (var i = 0; i < len; i++) {
if (~unAllowed.indexOf(items[i].type)) {
denied = true;
break;
}
}
return !denied;
});
// 添加“添加文件”的按钮,
uploader.addButton({id: '#filePicker2', label: '继续添加'});
uploader.on('ready', function () {
window.uploader = uploader;
});
// 当有文件添加进来时执行负责view的创建
function addFile(file) {
var $li = $('<li id="' + file.id + '"><p class="title">' + file.name + '</p><p class="imgWrap"></p><p class="progress"><span></span></p></li>'),
$btns = $('<div class="file-panel"><span class="cancel">删除</span><span class="rotateRight">向右旋转</span><span class="rotateLeft">向左旋转</span></div>').appendTo($li),
$prgress = $li.find('p.progress span'), $wrap = $li.find('p.imgWrap'), $info = $('<p class="error"></p>');
var showError = function (code) {
var text = '';
switch (code) {
case 'exceed_size':
text = '文件大小超出';
break;
case 'interrupt':
text = '上传暂停';
break;
case 'http':
case 'server':
case 'abort':
text = '上传失败,请重试';
break;
default:
text = code;
break;
}
$info.text(text).appendTo($li);
};
if (file.getStatus() === 'invalid') {
showError(file.statusText);
} else {
// @todo lazyload
$wrap.text('预览中');
uploader.makeThumb(file, function (error, src) {
if (error) {
return $wrap.text('不能预览');
}
var img;
if (isSupportBase64) {
img = $('<img src="' + src + '">');
$wrap.empty().append(img);
} else {
$.ajax('{"plugs/file/preview"|url}', {method: 'post', data: src, dataType: 'json'}).done(function (response) {
if (response.result) {
img = $('<img src="' + response.result + '">');
$wrap.empty().append(img);
} else {
$wrap.text("预览出错");
}
});
}
}, thumbnailWidth, thumbnailHeight);
percentages[file.id] = [file.size, 0];
file.rotation = 0;
$upload.html('开始上传');
}
// 文件上传状态变化
file.on('statuschange', function (cur, prev) {
if (prev === 'progress') {
$prgress.hide().width(0);
} else if (prev === 'queued') {
$li.off('mouseenter mouseleave'), $btns.remove();
}
if (cur === 'error' || cur === 'invalid') {
showError(file.statusText);
percentages[file.id][1] = 1;
} else if (cur === 'interrupt') {
showError('interrupt');
} else if (cur === 'queued') {
percentages[file.id][1] = 0;
} else if (cur === 'progress') {
$info.remove(), $prgress.css('display', 'block');
} else if (cur === 'complete') {
$li.append('<span class="success"></span>');
}
$li.removeClass('state-' + prev).addClass('state-' + cur);
});
$li.on('mouseenter', function () {
$btns.stop().animate({height: 30});
}).on('mouseleave', function () {
$btns.stop().animate({height: 0});
});
$btns.on('click', 'span', function () {
switch ($(this).index()) {
case 0:
removeFile(file);
return uploader.removeFile(file);
case 1:
file.rotation += 90;
break;
case 2:
file.rotation -= 90;
break;
}
if (supportTransition) {
var deg = 'rotate(' + file.rotation + 'deg)';
$wrap.css({'-webkit-transform': deg, '-mos-transform': deg, '-o-transform': deg, 'transform': deg});
} else {
$wrap.css('filter', 'progid:DXImageTransform.Microsoft.BasicImage(rotation=' + (~~((file.rotation / 90) % 4 + 4) % 4) + ')');
}
});
$li.appendTo($queue);
}
// 负责view的销毁
function removeFile(file) {
delete percentages[file.id];
updateTotalProgress();
$('#' + file.id).off().find('.file-panel').off().end().remove();
}
function updateTotalProgress() {
var loaded = 0, total = 0, spans = $progress.children(), percent;
$.each(percentages, function (k, v) {
total += v[0];
loaded += v[0] * v[1];
});
percent = total ? loaded / total : 0;
spans.eq(0).text(Math.round(percent * 100) + '%');
spans.eq(1).css('width', Math.round(percent * 100) + '%');
updateStatus();
}
function updateStatus() {
var text = '', stats;
if (state === 'ready') {
text = '选中' + fileCount + '个文件,共' + WebUploader.formatSize(fileSize) + '。';
} else if (state === 'confirm') {
stats = uploader.getStats();
if (stats.uploadFailNum) {
text = '已成功上传' + stats.successNum + '个文件,' + stats.uploadFailNum + '个文件上传失败,<a class="retry" href="#">重新上传</a>失败文件'
}
} else {
stats = uploader.getStats();
text = '共' + fileCount + '个(' + WebUploader.formatSize(fileSize) + '),已上传' + stats.successNum + '个';
if (stats.uploadFailNum) {
text += ',失败' + stats.uploadFailNum + '个';
}
}
$info.html(text);
}
function setState(val) {
var stats;
if (val === state) {
return;
}
$upload.removeClass('state-' + state);
$upload.addClass('state-' + val);
state = val;
switch (state) {
case 'pedding':
$placeHolder.removeClass('element-invisible');
$queue.hide();
$statusBar.addClass('element-invisible');
uploader.refresh();
break;
case 'ready':
$placeHolder.addClass('element-invisible');
$('#filePicker2').removeClass('element-invisible');
$queue.show();
$statusBar.removeClass('element-invisible');
uploader.refresh();
break;
case 'uploading':
$('#filePicker2').addClass('element-invisible');
$progress.show();
$upload.text('暂停上传');
break;
case 'paused':
$progress.show();
$upload.text('继续上传');
break;
case 'confirm':
$progress.hide();
$('#filePicker2').removeClass('element-invisible');
$upload.text('开始上传');
stats = uploader.getStats();
if (stats.successNum && !stats.uploadFailNum) {
setState('finish');
return;
}
break;
case 'finish':
stats = uploader.getStats();
if (stats.successNum) {
completed.call(this);
} else {
state = 'done';
location.reload();
}
break;
}
updateStatus();
}
uploader.onUploadProgress = function (file, percentage) {
var $li = $('#' + file.id), $percent = $li.find('.progress span');
$percent.css('width', percentage * 100 + '%');
percentages[file.id][1] = percentage;
updateTotalProgress();
};
uploader.onFileQueued = function (file) {
fileCount++;
fileSize += file.size;
if (fileCount === 1) {
$placeHolder.addClass('element-invisible');
$statusBar.show();
}
addFile(file), setState('ready'), updateTotalProgress();
};
uploader.onfieldequeued = function (file) {
fileCount--;
fileSize -= file.size;
!fileCount && setState('pedding');
removeFile(file), updateTotalProgress();
};
uploader.on('all', function (type) {
switch (type) {
case 'uploadFinished':
return setState('confirm');
case 'startUpload':
return setState('uploading');
case 'stopUpload':
return setState('paused');
}
});
uploader.onError = function (code) {
// 000alert('Error: ' + code);
};
$upload.on('click', function () {
if ($(this).hasClass('disabled')) {
return false;
}
if (state === 'ready') {
uploader.upload();
} else if (state === 'paused') {
uploader.upload();
} else if (state === 'uploading') {
uploader.stop();
}
});
$info.on('click', '.retry', function () {
uploader.retry();
});
$upload.addClass('state-' + state);
updateTotalProgress();
});
</script>
</body>
</html>

View File

@ -0,0 +1,13 @@
<!-- 右则内容区域 开始 -->
{block name="style"}{/block}
<div class="layui-card">
<!--{notempty name='title'}-->
<div class="layui-header notselect">
<div class="pull-left"><span>{$title}</span></div>
<div class="pull-right margin-right-15">{block name="button"}{/block}</div>
</div>
<!--{/notempty}-->
<div class="layui-card-body">{block name='content'}{/block}</div>
</div>
{block name='script'}{/block}
<!-- 右则内容区域 结束 -->

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit">
<title>{block name="title"}{$title|default=''}{if !empty($title)} · {/if}{:sysconf('site_name')}{/block}</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link href="{:sysconf('browser_icon')}" rel="shortcut icon">
<link href="__STATIC__/plugs/awesome/css/font-awesome.min.css?v={:date('ymd')}" rel="stylesheet">
<link href="__STATIC__/plugs/bootstrap/css/bootstrap.min.css?v={:date('ymd')}" rel="stylesheet">
<link href="__STATIC__/plugs/layui/css/layui.css?v={:date('ymd')}" rel="stylesheet">
<link href="__STATIC__/theme/css/console.css?v={:date('ymd')}" rel="stylesheet">
<link href="__STATIC__/theme/css/animate.css?v={:date('ymd')}" rel="stylesheet">
{block name="style"}{/block}
<script>window.ROOT_URL = '__ROOT__';</script>
<script src="__STATIC__/plugs/jquery/pace.min.js"></script>
<script src="__STATIC__/plugs/layui/layui.all.js"></script>
<script src="__STATIC__/admin.js"></script>
</head>
<body class="framework mini">
{block name="body"}{/block}
<script src="__STATIC__/plugs/require/require.js"></script>
<script src="__STATIC__/app.js"></script>
{block name="script"}{/block}
</body>
</html>

View File

@ -1,139 +0,0 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-modal='{:url("$classuri/add")}' data-title="添加用户" class='layui-btn layui-btn-small'>
<i class='fa fa-plus'></i> 添加用户
</button>
<button data-update data-field='delete' data-action='{:url("$classuri/del")}' class='layui-btn layui-btn-small layui-btn-danger'>
<i class='fa fa-remove'></i> 删除用户
</button>
</div>
{/block}
{block name="content"}
<!-- 表单搜索 开始 -->
<form class="layui-form layui-form-pane form-search" action="__SELF__" 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="username" value="{$Think.get.username|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="phone" value="{$Think.get.phone|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="mail" value="{$Think.get.mail|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|default=''}"
placeholder="请选择登录时间" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</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" lay-skin="line" lay-size="sm">
<thead>
<tr>
<th class='list-table-check-td'>
<input data-none-auto="" data-check-target='.list-check-box' type='checkbox'/>
</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 nowrap'>最后登录</th>
<th class='text-left nowrap'>状态</th>
<th class='text-left nowrap'>操作</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='text-left nowrap'>
{$vo.username}
</td>
<td class='text-left nowrap'>
{$vo.phone|default="<span class='color-desc'>还没有设置手机号</span>"}
</td>
<td class='text-left nowrap'>
{$vo.mail|default="<span class='color-desc'>还没有设置邮箱</span>"}
</td>
<td class='text-left nowrap'>
{$vo.login_num|default="<span class='color-desc'>从未登录</span>"}
</td>
<td class='text-left nowrap'>
{$vo.login_at|format_datetime|default="<span class='color-desc'>从未登录</span>"}
</td>
<td class='text-left nowrap'>
{if $vo.status eq 0}
<span>已禁用</span>
{elseif $vo.status eq 1}
<span style="color:#090">使用中</span>
{/if}
</td>
<td class='text-left nowrap'>
{if auth("$classuri/edit")}
<span class="text-explode">|</span>
<a data-modal='{:url("$classuri/edit")}?id={$vo.id}' href="javascript:void(0)">编辑</a>
{/if}
{if auth("$classuri/auth")}
<span class="text-explode">|</span>
<a data-modal='{:url("$classuri/auth")}?id={$vo.id}' href="javascript:void(0)">授权</a>
{/if}
{if auth("$classuri/pass")}
<span class="text-explode">|</span>
<a data-modal='{:url("$classuri/pass")}?id={$vo.id}' href="javascript:void(0)">密码</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")}'
href="javascript:void(0)">禁用</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")}'
href="javascript:void(0)">启用</a>
{/if}
{if auth("$classuri/del")}
<span class="text-explode">|</span>
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("$classuri/del")}'
href="javascript:void(0)">删除</a>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
{/if}
<script>
window.laydate.render({range: true, elem: '#range-date', format: 'yyyy/MM/dd'});
</script>
</form>
{/block}

View File

@ -1,44 +1,39 @@
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="__SELF__" data-auto="true" method="post">
<div class="layui-form-item">
<label class="layui-form-label">用户账号</label>
<div class="layui-input-block">
{if $vo and $vo.username}
<input type="text" readonly="" disabled="" name="username" value='{$vo.username|default=""}'
required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input disabled">
{else}
<input type="text" name="username" value='{$vo.username|default=""}' required="required"
title="请输入用户名称" placeholder="请输入用户名称" class="layui-input">
{/if}
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">访问授权</label>
<div class="layui-input-block">
{foreach $authorizes as $authorize}
{if in_array($authorize['id'],$vo['authorize'])}
<label class="think-checkbox">
<input type="checkbox" checked name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
</label>
{else}
<label class="think-checkbox">
<input type="checkbox" name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
</label>
{/if}
{/foreach}
{if empty($authorizes)}
<span class="color-desc" style="line-height:36px">未配置权限</span>
{/if}
</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>window.form.render();</script>
</form>
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
<div class="layui-form-item">
<label class="layui-form-label">用户账号</label>
<div class="layui-input-block">
{if $vo and $vo.username}
<input type="text" readonly="" disabled="" name="username" value='{$vo.username|default=""}' required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input layui-bg-gray">
{else}
<input type="text" name="username" value='{$vo.username|default=""}' required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input">
{/if}
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">访问授权</label>
<div class="layui-input-block">
{foreach $authorizes as $authorize}
<label class="think-checkbox">
<!--{if in_array($authorize['id'],$vo['authorize'])}-->
<input type="checkbox" checked name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
<!--{else}-->
<input type="checkbox" name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
<!--{/if}-->
</label>
{/foreach}
{if empty($authorizes)}<span class="color-desc" style="line-height:36px">未配置权限</span>{/if}
</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>window.form.render();</script>
</form>

View File

@ -1,70 +1,61 @@
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="__SELF__" data-auto="true" method="post">
<div class="layui-form-item">
<label class="layui-form-label">用户账号</label>
<div class="layui-input-block">
{if $vo and isset($vo.username)}
<input readonly="readonly" disabled="disabled" name="username" value='{$vo.username|default=""}'
required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input layui-disabled">
{else}
<input name="username" value='{$vo.username|default=""}' required="required" pattern="^.{4,}$"
title="请输入用户名称" placeholder="请输入4位及以上字符用户名称" class="layui-input">
{/if}
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">联系手机</label>
<div class="layui-input-block">
<input type="tel" autofocus name="phone" value='{$vo.phone|default=""}' pattern="^1[3-9][0-9]{9}$"
title="请输入联系手机" placeholder="请输入联系手机" class="layui-input">
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">联系邮箱</label>
<div class="layui-input-block">
<input name="mail" pattern="^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$"
value='{$vo.mail|default=""}' title="请输入联系邮箱" placeholder="请输入联系邮箱" class="layui-input">
</div>
</div>
{if isset($authorizes)}
<div class="layui-form-item">
<label class="layui-form-label">访问授权</label>
<div class="layui-input-block">
{foreach $authorizes as $authorize}
{if in_array($authorize['id'],$vo['authorize'])}
<label class="think-checkbox">
<input type="checkbox" checked name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
</label>
{else}
<label class="think-checkbox">
<input type="checkbox" name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
</label>
{/if}
{/foreach}
{if empty($authorizes)}
<span class="color-desc" style="line-height:36px">未配置权限</span>
{/if}
</div>
</div>
{/if}
<div class="layui-form-item">
<label class="layui-form-label">用户描述</label>
<div class="layui-input-block">
<textarea placeholder="请输入用户描述" title="请输入用户描述" class="layui-textarea"
name="desc">{$vo.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>
<script>window.form.render();</script>
</form>
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
<div class="layui-form-item">
<label class="layui-form-label">用户账号</label>
<div class="layui-input-block">
{if $vo and isset($vo.username)}
<input readonly="readonly" disabled="disabled" name="username" value='{$vo.username|default=""}' required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input layui-bg-gray">
{else}
<input name="username" value='{$vo.username|default=""}' required="required" pattern="^.{4,}$" title="请输入用户名称" placeholder="请输入4位及以上字符用户名称" class="layui-input">
{/if}
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">联系手机</label>
<div class="layui-input-block">
<input type="tel" autofocus name="phone" value='{$vo.phone|default=""}' pattern="^1[3-9][0-9]{9}$" title="请输入联系手机" placeholder="请输入联系手机" class="layui-input">
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">联系邮箱</label>
<div class="layui-input-block">
<input name="mail" pattern="^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$" value='{$vo.mail|default=""}' title="请输入联系邮箱" placeholder="请输入联系邮箱" class="layui-input">
</div>
</div>
{if isset($authorizes)}
<div class="layui-form-item">
<label class="layui-form-label">访问授权</label>
<div class="layui-input-block">
{foreach $authorizes as $authorize}
<label class="think-checkbox">
<!--{if in_array($authorize['id'],$vo['authorize'])}-->
<input type="checkbox" checked name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
<!--{else}-->
<input type="checkbox" name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
<!--{/if}-->
</label>
{/foreach}
{if empty($authorizes)}<span class="color-desc" style="line-height:36px">未配置权限</span>{/if}
</div>
</div>
{/if}
<div class="layui-form-item">
<label class="layui-form-label">用户描述</label>
<div class="layui-input-block">
<textarea placeholder="请输入用户描述" title="请输入用户描述" class="layui-textarea" name="desc">{$vo.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>
<script>window.form.render();</script>
</form>

View File

@ -0,0 +1,137 @@
{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="username" value="{$Think.get.username|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="phone" value="{$Think.get.phone|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="mail" value="{$Think.get.mail|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|default=''}" placeholder="请选择登录时间" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
</div>
</form>
<script>
window.laydate.render({range: true, elem: '#range-date'});
</script>
<!-- 表单搜索 结束 -->
<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>
<tr>
<th class='list-table-check-td'>
<input data-auto-none="" data-check-target='.list-check-box' type='checkbox'>
</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 nowrap'>最后登录</th>
<th class='text-left nowrap'>状态</th>
<th class='text-left nowrap'></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='text-left nowrap'>
{$vo.username}
</td>
<td class='text-left nowrap'>
{$vo.phone|default="<span class='color-desc'>还没有设置手机号</span>"|raw}
</td>
<td class='text-left nowrap'>
{$vo.mail|default="<span class='color-desc'>还没有设置邮箱</span>"|raw}
</td>
<td class='text-left nowrap'>
{$vo.login_num|default="<span class='color-desc'>从未登录</span>"|raw}
</td>
<td class='text-left nowrap'>
{$vo.login_at|format_datetime|default="<span class='color-desc'>从未登录</span>"|raw}
</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-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>
{/if}
{if auth("$classuri/pass")}
<span class="text-explode">|</span>
<a data-modal='{:url("$classuri/pass")}?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}
<!--{/empty}-->
</form>
{/block}

View File

@ -1,50 +1,45 @@
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="__SELF__" data-auto="true" method="post">
<div class="layui-form-item">
<label class="layui-form-label">用户账号</label>
<div class="layui-input-block">
{if $vo and $vo.username}
<input readonly="readonly" disabled="disabled" name="username" value='{$vo.username|default=""}'
required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input layui-disabled">
{else}
<input name="username" value='{$vo.username|default=""}' required="required" title="请输入用户名称"
placeholder="请输入用户名称" class="layui-input">
{/if}
</div>
</div>
{if $verify}
<div class="layui-form-item">
<label class="layui-form-label">旧的密码</label>
<div class="layui-input-block">
<input type="password" autofocus name="oldpassword" value='' pattern="^\S{1,}$" required="" title="请输入旧的密码"
placeholder="请输入旧的密码" class="layui-input">
</div>
</div>
{/if}
<div class="layui-form-item">
<label class="layui-form-label">新的密码</label>
<div class="layui-input-block">
<input type="password" name="password" value='' pattern="^\S{1,}$" required="" title="请输入新的密码"
placeholder="请输入新的密码" class="layui-input">
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">重复密码</label>
<div class="layui-input-block">
<input type="password" name="repassword" value='' pattern="^\S{1,}$" required="" title="请输入重复密码"
placeholder="请输入重复密码" class="layui-input">
</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>
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:request()->url()}" data-auto="true" method="post">
<div class="layui-form-item">
<label class="layui-form-label">用户账号</label>
<div class="layui-input-block">
{if $vo and $vo.username}
<input readonly="readonly" disabled="disabled" name="username" value='{$vo.username|default=""}' required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input layui-bg-gray">
{else}
<input name="username" value='{$vo.username|default=""}' required="required" title="请输入用户名称" placeholder="请输入用户名称" class="layui-input">
{/if}
</div>
</div>
<!--{if $verify}-->
<div class="layui-form-item">
<label class="layui-form-label">旧的密码</label>
<div class="layui-input-block">
<input autofocus name="oldpassword" value='' pattern="^\S{1,}$" required="" title="请输入旧的密码" placeholder="请输入旧的密码" class="layui-input">
</div>
</div>
<!--{/if}-->
<div class="layui-form-item">
<label class="layui-form-label">新的密码</label>
<div class="layui-input-block">
<input name="password" value='' pattern="^\S{1,}$" required="" title="请输入新的密码" placeholder="请输入新的密码" class="layui-input">
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label">重复密码</label>
<div class="layui-input-block">
<input name="repassword" value='' pattern="^\S{1,}$" required="" title="请输入重复密码" placeholder="请输入重复密码" class="layui-input">
</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>

View File

@ -12,63 +12,63 @@
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
use service\DataService;
use service\FileService;
use service\NodeService;
use service\SoapService;
use think\Db;
use Wechat\Loader;
/**
* 打印输出数据到文件
* @param mixed $data
* @param bool $replace
* @param string|null $pathname
* @param mixed $data 输出的数据
* @param bool $force 强制替换
* @param string|null $file
*/
function p($data, $replace = false, $pathname = null)
function p($data, $force = false, $file = null)
{
is_null($pathname) && $pathname = RUNTIME_PATH . date('Ymd') . '.txt';
$str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true)) . "\n";
$replace ? file_put_contents($pathname, $str) : file_put_contents($pathname, $str, FILE_APPEND);
is_null($file) && $file = env('runtime_path') . date('Ymd') . '.txt';
$str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true)) . PHP_EOL;
$force ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND);
}
/**
* 获取mongoDB连接
* @param string $col 数据库集合
* @param bool $force 是否强制连接
* @return \think\db\Query|\think\mongo\Query
* RBAC节点权限验证
* @param string $node
* @return bool
*/
function mongo($col, $force = false)
function auth($node)
{
return Db::connect(config('mongo'), $force)->name($col);
return NodeService::checkAuthNode($node);
}
/**
* 获取微信操作对象
* @param string $type
* @return \Wechat\WechatMedia|\Wechat\WechatMenu|\Wechat\WechatOauth|\Wechat\WechatPay|\Wechat\WechatReceive|\Wechat\WechatScript|\Wechat\WechatUser|\Wechat\WechatExtends|\Wechat\WechatMessage
* @throws Exception
* 设备或配置系统参数
* @param string $name 参数名称
* @param bool $value 默认是null为获取值否则为更新
* @return string|bool
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
function & load_wechat($type = '')
function sysconf($name, $value = null)
{
static $wechat = [];
$index = md5(strtolower($type));
if (!isset($wechat[$index])) {
$config = [
'token' => sysconf('wechat_token'),
'appid' => sysconf('wechat_appid'),
'appsecret' => sysconf('wechat_appsecret'),
'encodingaeskey' => sysconf('wechat_encodingaeskey'),
'mch_id' => sysconf('wechat_mch_id'),
'partnerkey' => sysconf('wechat_partnerkey'),
'ssl_cer' => sysconf('wechat_cert_cert'),
'ssl_key' => sysconf('wechat_cert_key'),
'cachepath' => CACHE_PATH . 'wxpay' . DS,
];
$wechat[$index] = Loader::get($type, $config);
static $config = [];
if ($value !== null) {
list($config, $data) = [[], ['name' => $name, 'value' => $value]];
return DataService::save('SystemConfig', $data, 'name');
}
return $wechat[$index];
if (empty($config)) {
$config = Db::name('SystemConfig')->column('name,value');
}
return isset($config[$name]) ? $config[$name] : '';
}
/**
* 日期格式标准输出
* @param string $datetime 输入日期
* @param string $format 输出格式
* @return false|string
*/
function format_datetime($datetime, $format = 'Y年m月d日 H:i:s')
{
return date($format, strtotime($datetime));
}
/**
@ -100,74 +100,11 @@ function decode($string)
}
/**
* 网络图片本地化
* @param string $url
* 下载远程文件到本地
* @param string $url 远程图片地址
* @return string
*/
function local_image($url)
{
if (is_array(($result = FileService::download($url)))) {
return $result['url'];
}
return $url;
return \service\FileService::download($url)['url'];
}
/**
* 日期格式化
* @param string $date 标准日期格式
* @param string $format 输出格式化date
* @return false|string
*/
function format_datetime($date, $format = 'Y年m月d日 H:i:s')
{
return empty($date) ? '' : date($format, strtotime($date));
}
/**
* 设备或配置系统参数
* @param string $name 参数名称
* @param bool $value 默认是null为获取值否则为更新
* @return string|bool
*/
function sysconf($name, $value = null)
{
static $config = [];
if ($value !== null) {
list($config, $data) = [[], ['name' => $name, 'value' => $value]];
return DataService::save('SystemConfig', $data, 'name');
}
if (empty($config)) {
$config = Db::name('SystemConfig')->column('name,value');
}
return isset($config[$name]) ? $config[$name] : '';
}
/**
* RBAC节点权限验证
* @param string $node
* @return bool
*/
function auth($node)
{
return NodeService::checkAuthNode($node);
}
/**
* array_column 函数兼容
*/
if (!function_exists("array_column")) {
function array_column(array &$rows, $column_key, $index_key = null)
{
$data = [];
foreach ($rows as $row) {
if (empty($index_key)) {
$data[] = $row[$column_key];
} else {
$data[$row[$index_key]] = $row[$column_key];
}
}
return $data;
}
}

View File

@ -1,224 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
return [
// +----------------------------------------------------------------------
// | 应用设置
// +----------------------------------------------------------------------
// 应用命名空间
'app_namespace' => 'app',
// 应用调试模式
'app_debug' => true,
// 应用Trace
'app_trace' => false,
// 应用模式状态
'app_status' => '',
// 是否支持多模块
'app_multi_module' => true,
// 入口自动绑定模块
'auto_bind_module' => false,
// 注册的根命名空间
'root_namespace' => [],
// 扩展函数文件
'extra_file_list' => [THINK_PATH . 'helper' . EXT],
// 默认输出类型
'default_return_type' => 'html',
// 默认AJAX 数据返回格式,可选json xml ...
'default_ajax_return' => 'json',
// 默认JSONP格式返回的处理方法
'default_jsonp_handler' => 'jsonpReturn',
// 默认JSONP处理方法
'var_jsonp_handler' => 'callback',
// 默认时区
'default_timezone' => 'PRC',
// 是否开启多语言
'lang_switch_on' => false,
// 默认全局过滤方法 用逗号分隔多个
'default_filter' => 'htmlspecialchars',
// 默认语言
'default_lang' => 'zh-cn',
// 应用类库后缀
'class_suffix' => false,
// 控制器类后缀
'controller_suffix' => false,
// +----------------------------------------------------------------------
// | 模块设置
// +----------------------------------------------------------------------
// 默认模块名
'default_module' => 'index',
// 禁止访问模块
'deny_module_list' => ['common'],
// 默认控制器名
'default_controller' => 'Index',
// 默认操作名
'default_action' => 'index',
// 默认验证器
'default_validate' => '',
// 默认的空控制器名
'empty_controller' => 'Error',
// 操作方法后缀
'action_suffix' => '',
// 自动搜索控制器
'controller_auto_search' => false,
// +----------------------------------------------------------------------
// | URL设置
// +----------------------------------------------------------------------
// PATHINFO变量名 用于兼容模式
'var_pathinfo' => 's',
// 兼容PATH_INFO获取
'pathinfo_fetch' => ['ORIG_PATH_INFO', 'REDIRECT_PATH_INFO', 'REDIRECT_URL'],
// pathinfo分隔符
'pathinfo_depr' => '/',
// URL伪静态后缀
'url_html_suffix' => 'html',
// URL普通方式参数 用于自动生成
'url_common_param' => false,
// URL参数方式 0 按名称成对解析 1 按顺序解析
'url_param_type' => 0,
// 是否开启路由
'url_route_on' => true,
// 路由使用完整匹配
'route_complete_match' => false,
// 路由配置文件(支持配置多个)
'route_config_file' => ['route'],
// 是否强制使用路由
'url_route_must' => false,
// 域名部署
'url_domain_deploy' => false,
// 域名根如thinkphp.cn
'url_domain_root' => '',
// 是否自动转换URL中的控制器和操作名
'url_convert' => true,
// 默认的访问控制器层
'url_controller_layer' => 'controller',
// 表单请求类型伪装变量
'var_method' => '_method',
// 表单ajax伪装变量
'var_ajax' => '_ajax',
// 表单pjax伪装变量
'var_pjax' => '_pjax',
// 是否开启请求缓存 true自动缓存 支持设置请求缓存规则
'request_cache' => false,
// 请求缓存有效期
'request_cache_expire' => null,
// +----------------------------------------------------------------------
// | 模板设置
// +----------------------------------------------------------------------
'template' => [
// 模板引擎类型 支持 php think 支持扩展
'type' => 'Think',
// 模板路径
'view_path' => '',
// 模板后缀
'view_suffix' => 'html',
// 模板文件名分隔符
'view_depr' => '.',
// 模板引擎普通标签开始标记
'tpl_begin' => '{',
// 模板引擎普通标签结束标记
'tpl_end' => '}',
// 标签库标签开始标记
'taglib_begin' => '{',
// 标签库标签结束标记
'taglib_end' => '}',
],
// 视图输出字符串内容替换
'view_replace_str' => [],
// 默认跳转页面对应的模板文件
'dispatch_success_tmpl' => APP_PATH . 'extra' . DS . 'view' . DS . 'handler.jump.html',
'dispatch_error_tmpl' => APP_PATH . 'extra' . DS . 'view' . DS . 'handler.jump.html',
// +----------------------------------------------------------------------
// | 异常及错误设置
// +----------------------------------------------------------------------
// 异常页面的模板文件
// 'exception_tmpl' => APP_PATH . 'extra' . DS . 'view' . DS . 'handler.exception.html',
// 错误显示信息,非调试模式有效
'error_message' => '页面错误!请稍后再试~',
// 显示错误信息
'show_error_msg' => false,
// 异常处理handle类 留空使用 \think\exception\Handle
'exception_handle' => '',
// +----------------------------------------------------------------------
// | 日志设置
// +----------------------------------------------------------------------
'log' => [
// 日志记录方式,内置 file socket 支持扩展
'type' => 'File',
// 日志保存目录
'path' => LOG_PATH,
// 日志记录级别 log,error,info,sql,notice,alert,debug
'level' => ['error', 'log', 'info', 'sql', 'notice', 'alert', 'debug'],
// error和sql日志单独记录
'apart_level' => ['error', 'sql'],
],
// +----------------------------------------------------------------------
// | Trace设置 开启 app_trace 后 有效
// +----------------------------------------------------------------------
'trace' => [
// 内置Html Console 支持扩展
'type' => 'Html',
],
// +----------------------------------------------------------------------
// | 缓存设置
// +----------------------------------------------------------------------
'cache' => [
// 驱动方式
'type' => 'File',
// 缓存保存目录
'path' => CACHE_PATH,
// 缓存前缀
'prefix' => '',
// 缓存有效期 0表示永久缓存
'expire' => 0,
],
// +----------------------------------------------------------------------
// | 会话设置
// +----------------------------------------------------------------------
'session' => [
'id' => '',
// SESSION_ID的提交变量,解决flash上传跨域
'var_session_id' => '',
// SESSION 前缀
'prefix' => 'think',
// 驱动方式 支持redis memcache memcached
'type' => '',
// 是否自动开启 SESSION
'auto_start' => true,
],
// +----------------------------------------------------------------------
// | Cookie设置
// +----------------------------------------------------------------------
'cookie' => [
// cookie 名称前缀
'prefix' => '',
// cookie 保存时间
'expire' => 0,
// cookie 保存路径
'path' => '/',
// cookie 有效域名
'domain' => '',
// cookie 启用安全传输
'secure' => false,
// httponly设置
'httponly' => '',
// 是否使用 setcookie
'setcookie' => true,
],
//分页配置
'paginate' => [
'type' => 'bootstrap',
'var_page' => 'page',
'list_rows' => 15,
],
];

View File

@ -1,56 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\demo\controller;
use think\Controller;
/**
* 系统权限管理控制器
* Class Plugs
* @package app\demo\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/07/10 18:13
*/
class Plugs extends Controller
{
/**
* 文件上传
* @return \think\response\View
*/
public function file()
{
return view('', ['title' => '文件上传']);
}
/**
* 省市区插件
* @return \think\response\View
*/
public function region()
{
return view('', ['title' => '省市区插件']);
}
/**
* 富文本编辑器
* @return \think\response\View
*/
public function editor()
{
return view('', ['title' => '富文本编辑器']);
}
}

View File

@ -1,47 +0,0 @@
{extend name='extra@admin/content'}
{block name="content"}
<!--<div class="code">-->
<!--<blockquote class="site-text layui-elem-quote">-->
<!--富文本编辑器-->
<!--</blockquote>-->
<div style="position:relative">
<textarea name="content">这里可以放默认值</textarea>
<script>
require(['ckeditor'], function () {
var editor = window.createEditor('[name="content"]');
// 设置内容
editor.setData('修改内容');
// 获取内容
var content = editor.getData();
console.log(content);
});
</script>
</div>
<pre class="layui-code" lay-title="HTML代码">
<textarea name="content">这里可以放默认值</textarea>
</pre>
<pre class="layui-code" lay-title="javascript代码">
require(['ckeditor'], function () {
var editor = window.createEditor('[name="content"]');
// 设置内容
editor.setData('修改内容');
// 获取内容
var content = editor.getData();
console.log(content);
});
</pre>
</div>
<script>
layui.use('code', function () {
layui.code({encode: true});
});
</script>
{/block}

View File

@ -1,263 +0,0 @@
{extend name='extra@admin/content'}
{block name="content"}
<div class="code">
<blockquote class="site-text layui-elem-quote">
单图片上传
<hr/>
<p style='font-size:12px;line-height:26px'>
1. data-file 指定上传文件模式,可选择 ( one | mut )one : 表示单文件上传, mut : 表示多文件上传。
</p>
<p style='font-size:12px;line-height:26px'>
2. data-type 指定上传文件后缀多种后缀时使用英文逗号分割jpg,png。
</p>
<p style='font-size:12px;line-height:26px'>
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss :
文件存储在阿里云OSS。
</p>
<p style='font-size:12px;line-height:26px'>
4. data-field 绑定上传成功后返回URL地址的 input同时会触发 input change 事件,可以监听并进行处理。
</p>
</blockquote>
<div style="position:relative">
<div class="uploadimage transition"><input type="hidden" name="file_1"/></div>
<a data-file="one" data-field="file_1" data-type="png,jpg" data-uptype="local" href="javascript:void(0)"
class="uploadbutton">上传图片</a>
</div>
<script>
require(['jquery'], function () {
$('[name="file_1"]').on('change', function () {
$(this).parent().attr('data-tips-image', this.value).css('backgroundImage', 'url(' + this.value + ')');
});
});
</script>
<pre class="layui-code" lay-title="HTML代码">
<div style="position:relative">
<div class="uploadimage"><input type="hidden" name="file_1"/></div>
<a data-file="one" data-field="file_1" data-type="png,jpg" data-uptype="local" href="javascript:void(0)"
class="uploadbutton">上传图片</a>
</div>
</pre>
<pre class="layui-code" lay-title="javascript代码">
// 监听 input 的 onchange 事件
// 当有文件上传时,会触发 change 事件
require(['jquery'], function () {
$('[name="file_1"]').on('change', function () {
$(this).parent().attr('data-tips-image', this.value).css('backgroundImage', 'url(' + this.value + ')');
});
});
</pre>
</div>
<div class="code">
<blockquote class="site-text layui-elem-quote">
多图片上传
<hr/>
<p style='font-size:12px;line-height:26px'>
1. data-file 指定上传文件模式,可选择 ( one | mut )one : 表示单文件上传, mut : 表示多文件上传。
</p>
<p style='font-size:12px;line-height:26px'>
2. data-type 指定上传文件后缀多种后缀时使用英文逗号分割jpg,png。
</p>
<p style='font-size:12px;line-height:26px'>
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss :
文件存储在阿里云OSS。
</p>
<p style='font-size:12px;line-height:26px'>
4. data-field 绑定上传成功后返回URL地址的 input同时会触发 input change 事件,可以监听并进行处理。
</p>
</blockquote>
<div style="position:relative">
<style>
.upload-option-button {
float: right;
background: rgba(0, 0, 0, 0.5);
color: #fff;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
display: none
}
.upload-option-button:hover {
text-decoration: none;
color: #fff
}
.uploadimagemtl:hover a {
display: inline-block
}
</style>
<input type='hidden' name='file_2'/>
<p>
<a data-file="mut" data-field="file_2" data-type="png,jpg" data-uptype="local" href="javascript:void(0)">上传图片</a>
</p>
</div>
<script>
require(['jquery'], function () {
var tpl = '<div class="uploadimage transition uploadimagemtl"><a href="javascript:void(0)" class="layui-icon upload-option-button">&#x1006;</a></div>';
$('[name="file_2"]').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) {
values.push(srcs[i]);
}
this.value = values.join('|');
for (var i in values) {
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();
$.msg.confirm('确定要移除这张图片吗?', function () {
var data = $cur.data('srcs');
delete data[$cur.data('index')];
$cur.data('input').value = data.join('|');
$cur.remove();
});
});
$(this).before($tpl);
}
});
});
</script>
<pre class="layui-code" lay-title="HTML代码">
<div style="position:relative">
<style>
.upload-option-button {
float: right;
background: rgba(0, 0, 0, 0.5);
color: #fff;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
display: none
}
.upload-option-button:hover {
text-decoration: none;
color: #fff
}
.uploadimagemtl:hover a {
display: inline-block
}
</style>
<input type='hidden' name='file_2'/>
<a data-file="mut" data-field="file_2" data-type="png,jpg" data-uptype="local" href="javascript:void(0)">上传图片</a>
</div>
</pre>
<pre class="layui-code" lay-title="javascript代码">
require(['jquery'], function () {
var tpl = '<div class="uploadimage transition uploadimagemtl"><a href="javascript:void(0)"
class="layui-icon upload-option-button">&#x1006;</a></div>';
$('[name="file_2"]').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) {
values.push(srcs[i]);
}
this.value = values.join('|');
for (var i in values) {
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();
$.msg.confirm('确定要移除这张图片吗?', function () {
var data = $cur.data('srcs');
delete data[$cur.data('index')];
$cur.data('input').value = data.join('|');
$cur.remove();
});
});
$(this).before($tpl);
}
});
});
</pre>
</div>
<div class="code">
<blockquote class="site-text layui-elem-quote">
单文件上传
<hr/>
<p style='font-size:12px;line-height:26px'>
1. data-file 指定上传文件模式,可选择 ( one | mut )one : 表示单文件上传, mut : 表示多文件上传。
</p>
<p style='font-size:12px;line-height:26px'>
2. data-type 指定上传文件后缀多种后缀时使用英文逗号分割zip,rar。
</p>
<p style='font-size:12px;line-height:26px'>
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss :
文件存储在阿里云OSS。
</p>
<p style='font-size:12px;line-height:26px'>
4. data-field 绑定上传成功后返回URL地址的 input同时会触发 input change 事件,可以监听并进行处理。
</p>
</blockquote>
<div style="position:relative;width:500px">
<div class="input-group">
<input type="text" class="form-control" name="file_3" placeholder="请选择ZIP文件...">
<a class="input-group-addon" data-file="one" data-type="zip" data-uptype="local" data-field="file_3">
<i class="fa fa-file"></i>
</a>
</div>
</div>
<script>
require(['jquery'], function () {
$('[name="file_3"]').on('change', function () {
alert('文件上传后的地址:' + this.value);
});
});
</script>
<pre class="layui-code" lay-title="HTML代码">
<div style="position:relative;width:500px">
<div class="input-group">
<input type="text" class="form-control" name="file_3" placeholder="请选择ZIP文件...">
<a class="input-group-addon" data-file="one" data-type="zip" data-uptype="local" data-field="file_3">
<i class="fa fa-file"></i>
</a>
</div>
</div>
</pre>
<pre class="layui-code" lay-title="javascript代码">
// 监听 input 的 onchange 事件
// 当有文件上传时,会触发 change 事件
require(['jquery'], function () {
$('[name="file_3"]').on('change', function () {
alert('文件上传后的地址:' + this.value);
});
});
</pre>
</div>
<script>
layui.use('code', function () {
layui.code({encode: true});
});
</script>
{/block}

View File

@ -1,65 +0,0 @@
{extend name='extra@admin/content'}
{block name="content"}
<div class="code">
<blockquote class="site-text layui-elem-quote">
PCAS 单文件JS省市区插件也适用于Wap端
</blockquote>
<div id="demo" class="citys">
<div class="layui-input-inline">
<select class="layui-select" name="province"></select>
</div>
<div class="layui-input-inline">
<select class="layui-select" name="city"></select>
</div>
<div class="layui-input-inline">
<select class="layui-select" name="area"></select>
</div>
</div>
<pre class="layui-code" lay-title="HTML代码">
<div class="citys">
<div class="layui-input-inline">
<select class="layui-select" name="province"></select>
</div>
<div class="layui-input-inline">
<select class="layui-select" name="city"></select>
</div>
<div class="layui-input-inline">
<select class="layui-select" name="area"></select>
</div>
</div>
</pre>
<pre class="layui-code" lay-title="javascript代码">
require(['pcasunzips'], function () {
/** // 省市联动
* new PCAS("Province","City")
* new PCAS("Province","City","吉林省")
* new PCAS("Province","City","吉林省","吉林市")
* // 省市地区联动
* new PCAS("Province","City","Area")
* new PCAS("Province","City","Area","吉林省")
* new PCAS("Province","City","Area","吉林省","松原市")
* new PCAS("Province","City","Area","吉林省","松原市","宁江区")
* // 省、市、地区对象取得的值均为实际值。
* // 注:省、市、地区提示信息选项的值为""(空字符串)
*/
// 实例化PCAS插件
new PCAS('province', 'city', 'area', '广东省', '广州市', '海珠区');
});
</pre>
<script>
require(['pcasunzips'], function () {
new PCAS('province', 'city', 'area', '广东省', '广州市', '海珠区');
});
</script>
</div>
<script>
layui.use('code', function () {
layui.code({encode: true});
});
</script>
{/block}

View File

@ -1,161 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
return [
'hqx' => ['application/mac-binhex40', 'application/mac-binhex', 'application/x-binhex40', 'application/x-mac-binhex40'],
'cpt' => 'application/mac-compactpro',
'csv' => ['text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel', 'text/plain'],
'bin' => ['application/macbinary', 'application/mac-binary', 'application/octet-stream', 'application/x-binary', 'application/x-macbinary'],
'dms' => 'application/octet-stream',
'lha' => 'application/octet-stream',
'lzh' => 'application/octet-stream',
'exe' => ['application/octet-stream', 'application/x-msdownload'],
'class' => 'application/octet-stream',
'psd' => ['application/x-photoshop', 'image/vnd.adobe.photoshop'],
'so' => 'application/octet-stream',
'sea' => 'application/octet-stream',
'dll' => 'application/octet-stream',
'oda' => 'application/oda',
'pdf' => ['application/pdf', 'application/force-download', 'application/x-download', 'binary/octet-stream'],
'ai' => ['application/pdf', 'application/postscript'],
'eps' => 'application/postscript',
'ps' => 'application/postscript',
'smi' => 'application/smil',
'smil' => 'application/smil',
'mif' => 'application/vnd.mif',
'xls' => ['application/vnd.ms-excel', 'application/msexcel', 'application/x-msexcel', 'application/x-ms-excel', 'application/x-excel', 'application/x-dos_ms_excel', 'application/xls', 'application/x-xls', 'application/excel', 'application/download', 'application/vnd.ms-office', 'application/msword'],
'ppt' => ['application/powerpoint', 'application/vnd.ms-powerpoint', 'application/vnd.ms-office', 'application/msword'],
'pptx' => ['application/vnd.openxmlformats-officedocument.presentationml.presentation', 'application/x-zip', 'application/zip'],
'wbxml' => 'application/wbxml',
'wmlc' => 'application/wmlc',
'dcr' => 'application/x-director',
'dir' => 'application/x-director',
'dxr' => 'application/x-director',
'dvi' => 'application/x-dvi',
'gtar' => 'application/x-gtar',
'gz' => 'application/x-gzip',
'gzip' => 'application/x-gzip',
'php' => ['application/x-httpd-php', 'application/php', 'application/x-php', 'text/php', 'text/x-php', 'application/x-httpd-php-source'],
'php4' => 'application/x-httpd-php',
'php3' => 'application/x-httpd-php',
'phtml' => 'application/x-httpd-php',
'phps' => 'application/x-httpd-php-source',
'js' => ['application/x-javascript', 'text/plain'],
'swf' => 'application/x-shockwave-flash',
'sit' => 'application/x-stuffit',
'tar' => 'application/x-tar',
'tgz' => ['application/x-tar', 'application/x-gzip-compressed'],
'z' => 'application/x-compress',
'xhtml' => 'application/xhtml+xml',
'xht' => 'application/xhtml+xml',
'zip' => ['application/x-zip', 'application/zip', 'application/x-zip-compressed', 'application/s-compressed', 'multipart/x-zip'],
'rar' => ['application/x-rar', 'application/rar', 'application/x-rar-compressed'],
'mid' => 'audio/midi',
'midi' => 'audio/midi',
'mpga' => 'audio/mpeg',
'mp2' => 'audio/mpeg',
'mp3' => ['audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'],
'aif' => ['audio/x-aiff', 'audio/aiff'],
'aiff' => ['audio/x-aiff', 'audio/aiff'],
'aifc' => 'audio/x-aiff',
'ram' => 'audio/x-pn-realaudio',
'rm' => 'audio/x-pn-realaudio',
'rpm' => 'audio/x-pn-realaudio-plugin',
'ra' => 'audio/x-realaudio',
'rv' => 'video/vnd.rn-realvideo',
'wav' => ['audio/x-wav', 'audio/wave', 'audio/wav'],
'bmp' => ['image/bmp', 'image/x-bmp', 'image/x-bitmap', 'image/x-xbitmap', 'image/x-win-bitmap', 'image/x-windows-bmp', 'image/ms-bmp', 'image/x-ms-bmp', 'application/bmp', 'application/x-bmp', 'application/x-win-bitmap'],
'gif' => 'image/gif',
'jpeg' => ['image/jpeg', 'image/pjpeg'],
'jpg' => ['image/jpeg', 'image/pjpeg'],
'jpe' => ['image/jpeg', 'image/pjpeg'],
'png' => ['image/png', 'image/x-png'],
'tiff' => 'image/tiff',
'tif' => 'image/tiff',
'css' => ['text/css', 'text/plain'],
'html' => ['text/html', 'text/plain'],
'htm' => ['text/html', 'text/plain'],
'shtml' => ['text/html', 'text/plain'],
'txt' => 'text/plain',
'text' => 'text/plain',
'log' => ['text/plain', 'text/x-log'],
'rtx' => 'text/richtext',
'rtf' => 'text/rtf',
'xml' => ['application/xml', 'text/xml', 'text/plain'],
'xsl' => ['application/xml', 'text/xsl', 'text/xml'],
'mpeg' => 'video/mpeg',
'mpg' => 'video/mpeg',
'mpe' => 'video/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
'avi' => ['video/x-msvideo', 'video/msvideo', 'video/avi', 'application/x-troff-msvideo'],
'movie' => 'video/x-sgi-movie',
'doc' => ['application/msword', 'application/vnd.ms-office'],
'docx' => ['application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword', 'application/x-zip'],
'dot' => ['application/msword', 'application/vnd.ms-office'],
'dotx' => ['application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword'],
'xlsx' => ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/vnd.ms-excel', 'application/msword', 'application/x-zip'],
'word' => ['application/msword', 'application/octet-stream'],
'xl' => 'application/excel',
'eml' => 'message/rfc822',
'json' => ['application/json', 'text/json'],
'pem' => ['application/x-x509-user-cert', 'application/x-x509-ca-cert', 'application/x-pem-file', 'application/pkix-cert'],
'crt' => ['application/x-x509-user-cert', 'application/x-x509-ca-cert', 'application/pkix-cert'],
'p10' => ['application/x-pkcs10', 'application/pkcs10'],
'p12' => 'application/x-pkcs12',
'p7a' => 'application/x-pkcs7-signature',
'p7c' => ['application/pkcs7-mime', 'application/x-pkcs7-mime'],
'p7m' => ['application/pkcs7-mime', 'application/x-pkcs7-mime'],
'p7r' => 'application/x-pkcs7-certreqresp',
'p7s' => 'application/pkcs7-signature',
'crl' => ['application/pkix-crl', 'application/pkcs-crl'],
'der' => 'application/x-x509-ca-cert',
'kdb' => 'application/octet-stream',
'pgp' => 'application/pgp',
'gpg' => 'application/gpg-keys',
'sst' => 'application/octet-stream',
'csr' => 'application/octet-stream',
'rsa' => 'application/x-pkcs7',
'cer' => ['application/pkix-cert', 'application/x-x509-ca-cert'],
'3g2' => 'video/3gpp2',
'3gp' => ['video/3gp', 'video/3gpp'],
'mp4' => 'video/mp4',
'm4a' => 'audio/x-m4a',
'f4v' => 'video/mp4',
'webm' => 'video/webm',
'webp' => 'image/webp',
'aac' => 'audio/x-acc',
'm4u' => 'application/vnd.mpegurl',
'm3u' => 'text/plain',
'xspf' => 'application/xspf+xml',
'vlc' => 'application/videolan',
'wmv' => ['video/x-ms-wmv', 'video/x-ms-asf'],
'au' => 'audio/x-au',
'ac3' => 'audio/ac3',
'flac' => 'audio/x-flac',
'ogg' => 'audio/ogg',
'kmz' => ['application/vnd.google-earth.kmz', 'application/zip', 'application/x-zip'],
'kml' => ['application/vnd.google-earth.kml+xml', 'application/xml', 'text/xml'],
'ics' => 'text/calendar',
'ical' => 'text/calendar',
'zsh' => 'text/x-scriptzsh',
'7zip' => ['application/x-compressed', 'application/x-zip-compressed', 'application/zip', 'multipart/x-zip'],
'cdr' => ['application/cdr', 'application/coreldraw', 'application/x-cdr', 'application/x-coreldraw', 'image/cdr', 'image/x-cdr', 'zz-application/zz-winassoc-cdr'],
'wma' => ['audio/x-ms-wma', 'video/x-ms-asf'],
'jar' => ['application/java-archive', 'application/x-java-application', 'application/x-jar', 'application/x-compressed'],
'svg' => ['image/svg+xml', 'application/xml', 'text/xml'],
'vcf' => 'text/x-vcard',
'srt' => ['text/srt', 'text/plain'],
'vtt' => ['text/vtt', 'text/plain'],
'ico' => ['image/x-icon', 'image/x-ico', 'image/vnd.microsoft.icon'],
];

View File

@ -1,22 +0,0 @@
<div class="ibox">
{block name="style"}{/block}
{if isset($title)}
<div class="ibox-title notselect">
<h5>{$title}</h5>
{block name="button"}{/block}
</div>
{/if}
<div class="ibox-content">
{if isset($alert)}
<div class="alert alert-{$alert.type} alert-dismissible" role="alert" style="border-radius:0">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
{if isset($alert['title'])}<p style="font-size:18px;padding-bottom:10px">{$alert.title}</p>{/if}
{if isset($alert['content'])}<p style="font-size:14px">{$alert.content}</p>{/if}
</div>
{/if}
{block name="content"}{/block}
</div>
{block name='script'}{/block}
</div>

View File

@ -1,24 +0,0 @@
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit"/>
<title>{block name="title"}{$title|default=''}{if !empty($title)} · {/if}{:sysconf('site_name')}{/block}</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="shortcut icon" href="{:sysconf('browser_icon')}" />
<link rel="stylesheet" href="__STATIC__/plugs/awesome/css/font-awesome.min.css?ver={:date('ymd')}">
<link rel="stylesheet" href="__STATIC__/plugs/bootstrap/css/bootstrap.min.css?ver={:date('ymd')}"/>
<link rel="stylesheet" href="__STATIC__/plugs/layui/css/layui.css?ver={:date('ymd')}"/>
<link rel="stylesheet" href="__STATIC__/theme/default/css/console.css?ver={:date('ymd')}">
<link rel="stylesheet" href="__STATIC__/theme/default/css/animate.css?ver={:date('ymd')}">{block name="style"}{/block}
<script src="__STATIC__/plugs/require/require.js?ver={:date('ymd')}"></script>
<script src="__STATIC__/admin/app.js?ver={:date('ymd')}"></script>
<script>window.ROOT_URL='__PUBLIC__';</script>
</head>
{block name="bodyTag"}
<body>
{block name="body"}{/block}
{block name="script"}{/block}
</body>
{/block}
</html>

View File

@ -1,52 +0,0 @@
<div class="framework-sidebar hide">
<div class="sidebar-content">
<div class="sidebar-inner">
<div class="sidebar-fold">
<span class="glyphicon glyphicon-option-vertical transition"></span>
</div>
{volist name='menus' id='pmenu'}
{notempty name='pmenu.sub'}
<div data-menu-box="m-{$pmenu.id}">
{volist name='pmenu.sub' id='menu'}
<div class="sidebar-nav main-nav">
{empty name='menu.sub'}
<ul class="sidebar-trans">
<li class="nav-item">
<a data-menu-node='m-{$pmenu.id}-{$menu.id}' data-open="{$menu.url}"
class="sidebar-trans">
<div class="nav-icon sidebar-trans">
<span class="{$menu.icon|default='fa fa-link'} transition"></span>
</div>
<span class="nav-title">{$menu.title}</span>
</a>
</li>
</ul>
{else}
<div class="sidebar-title">
<div class="sidebar-title-inner">
<span class="sidebar-title-icon fa fa-caret-right transition"></span>
<span class="sidebar-title-text">{$menu.title}</span>
</div>
</div>
<ul class="sidebar-trans" style="display:none" data-menu-node='m-{$pmenu.id}-{$menu.id}'>
{volist name='menu.sub' id='submenu'}
<li class="nav-item">
<a data-menu-node='m-{$pmenu.id}-{$submenu.id}' data-open="{$submenu.url}"
class="sidebar-trans">
<div class="nav-icon sidebar-trans">
<span class="{$submenu.icon|default='fa fa-link'} transition"></span>
</div>
<span class="nav-title">{$submenu.title}</span>
</a>
</li>
{/volist}
</ul>
{/empty}
</div>
{/volist}
</div>
{/notempty}
{/volist}
</div>
</div>
</div>

View File

@ -1,64 +0,0 @@
<div class="framework-topbar">
<div class="console-topbar">
<div class="topbar-wrap topbar-clearfix">
<div class="topbar-head topbar-left">
<a href="{:url('@admin')}" class="topbar-logo topbar-left">
<span class="icon-logo">
{:sysconf('app_name')} <sup>{:sysconf('app_version')}</sup>
</span>
</a>
</div>
{volist name='menus' id='pmenu'}
{empty name='pmenu.sub'}
<a data-menu-node='m-{$pmenu.id}' data-open="{$pmenu.url}"
class="topbar-home-link topbar-btn topbar-left">
<span>{notempty name='$pmenu.icon'}<i class="{$pmenu.icon}"></i>{/notempty} {$pmenu.title}</span>
</a>
{else}
<a data-menu-target='m-{$pmenu.id}' class="topbar-home-link topbar-btn topbar-left">
<span>{notempty name='$pmenu.icon'}<i class="{$pmenu.icon}"></i>{/notempty} {$pmenu.title}</span>
</a>
{/empty}
{/volist}
<div class="topbar-info topbar-right">
<a data-reload data-tips-text='刷新' style='width:50px'
class=" topbar-btn topbar-left topbar-info-item text-center">
<span class='glyphicon glyphicon-refresh'></span>
</a>
<div class="topbar-left topbar-user">
{if session('user')}
<div class="dropdown topbar-info-item">
<a href="#" class="dropdown-toggle topbar-btn text-center" data-toggle="dropdown">
<span class='glyphicon glyphicon-user'></span> {:session('user.username')} </span>
<span class="glyphicon glyphicon-menu-up transition" style="font-size:12px"></span>
</a>
<ul class="dropdown-menu">
<li class="topbar-info-btn">
<a data-modal="{:url('admin/index/pass')}?id={:session('user.id')}">
<span><i class='glyphicon glyphicon-lock'></i> 修改密码</span>
</a>
</li>
<li class="topbar-info-btn">
<a data-modal="{:url('admin/index/info')}?id={:session('user.id')}">
<span><i class='glyphicon glyphicon-edit'></i> 修改资料</span>
</a>
</li>
<li class="topbar-info-btn">
<a data-load="{:url('admin/login/out')}" data-confirm='确定要退出登录吗?'>
<span><i class="glyphicon glyphicon-log-out"></i> 退出登录</span>
</a>
</li>
</ul>
</div>
{else}
<div class=" topbar-info-item">
<a data-href="{:url('@admin/login')}" data-toggle="dropdown" class=" topbar-btn text-center">
<span class='glyphicon glyphicon-user'></span> 立即登录 </span>
</a>
</div>
{/if}
</div>
</div>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

View File

@ -1,49 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>跳转提示</title>
<style type="text/css">
*{ padding: 0; margin: 0; }
body{ background: #fff; font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif; color: #333; font-size: 16px; }
.system-message{ padding: 24px 48px; }
.system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; }
.system-message .jump{ padding-top: 10px; }
.system-message .jump a{ color: #333; }
.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 36px; }
.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display: none; }
</style>
</head>
<body>
<div class="system-message">
<?php switch ($code) {?>
<?php case 1:?>
<h1>:)</h1>
<p class="success"><?php echo(strip_tags($msg));?></p>
<?php break;?>
<?php case 0:?>
<h1>:(</h1>
<p class="error"><?php echo(strip_tags($msg));?></p>
<?php break;?>
<?php } ?>
<p class="detail"></p>
<p class="jump">
页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>
</p>
</div>
<script type="text/javascript">
(function () {
var wait = document.getElementById('wait'),
href = document.getElementById('href').href;
var interval = setInterval(function () {
var time = --wait.innerHTML;
if (time <= 0) {
location.href = href;
clearInterval(interval);
}
;
}, 1000);
})();
</script>
</body>
</html>

View File

@ -14,34 +14,20 @@
namespace app\index\controller;
use think\Controller;
use controller\BasicAdmin;
use service\WechatService;
/**
* 网站入口控制器
* Class Index
* @package app\index\controller
* 应用入口控制器
* @author Anyon <zoujingli@qq.com>
* @date 2017/04/05 10:38
*/
class Index extends Controller
class Index extends BasicAdmin
{
/**
* 网站入口
*/
public function index()
{
$this->redirect('@admin');
$this->redirect('@admin/login');
}
public function qrc()
{
$wechat = load_wechat('Extends');
for ($i = 10; $i < 90; $i++) {
$qrc = $wechat->getQRCode($i, 1);
print_r($qrc);
}
}
}

View File

@ -1,120 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\index\controller;
use controller\BasicWechat;
use service\DataService;
use service\PayService;
class Wap extends BasicWechat
{
/**
* 网页授权DEMO
*/
public function index()
{
dump($this->oAuth(true)); // 获取用户详情信息
dump($this->fansinfo); // 输出用户信息
}
/**
* 微信二维码支付DEMO
* @return \think\response\Json|\think\response\View
*/
public function payqrc()
{
$method = '_payqrc_' . strtolower($this->request->get('action'));
if (method_exists($this, $method)) {
return $this->$method();
}
return view();
}
/**
* 获取二维码支付
* @return \think\response\Json
*/
protected function _payqrc_payqrc()
{
list($pay, $order_no) = [load_wechat('pay'), session('pay-test-order-no')];
if (empty($order_no)) {
$order_no = DataService::createSequence(10, 'wechat-pay-test');
session('pay-test-order-no', $order_no);
}
if (PayService::isPay($order_no)) {
return json(['code' => 2, 'order_no' => $order_no]);
}
$url = PayService::createWechatPayQrc($pay, $order_no, 1, '微信扫码支付测试!');
if ($url !== false) {
return json(['code' => 1, 'url' => $url, 'order_no' => $order_no]);
}
$this->error("生成支付二维码失败,{$pay->errMsg}[{$pay->errCode}]");
}
/**
* 重置测试订单号
*/
protected function _payqrc_reset()
{
session('pay-test-order-no', null);
}
/**
* 微信JSAPI支付DEMO
* @return \think\response\Json|\think\response\View
*/
public function payjs()
{
$this->openid = $this->oAuth(false);
$method = '_payjs_' . strtolower($this->request->get('action'));
if (method_exists($this, $method)) {
return $this->$method();
}
return view();
}
/**
* 获取JSAPI支付参数
* @return \think\response\Json
*/
protected function _payjs_options()
{
$order_no = session('pay-test-order-no');
if (empty($order_no)) {
$order_no = DataService::createSequence(10, 'wechat-pay-test');
session('pay-test-order-no', $order_no);
}
if (PayService::isPay($order_no)) {
return json(['code' => 2, 'order_no' => $order_no]);
}
$pay = load_wechat('pay');
$options = PayService::createWechatPayJsPicker($pay, $this->openid, $order_no, 1, 'JSAPI支付测试');
if ($options === false) {
$options = ['code' => 3, 'msg' => "创建支付失败,{$pay->errMsg}[$pay->errCode]"];
}
$options['order_no'] = $order_no;
return json($options);
}
/**
* 重置测试订单号
*/
protected function _payjs_reset()
{
session('pay-test-order-no', null);
}
}

View File

@ -1,57 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSAPI支付DEMO</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body style="text-align:center">
<div class="contrainer">
<h3>JSAPI支付DEMO</h3>
<hr/>
<p class="price">金额: 0.01</p>
<hr/>
<p class="orderno"></p>
<hr/>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10" id="test">
<button type="submit" class="btn btn-success">立即支付</button>
</div>
</div>
<a href="{:url('payqrc')}" class="btn btn-link">扫码支付测试</a>
</div>
<script src="//cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script>
<script src="//cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="//res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<script>
wx.error(function (e) {
console.log(e);
});
wx.config($.parseJSON('{$jsSign|json_encode}'));
wx.ready(function () {
$.get('{:url("payjs")}', {'action': 'options'}, function (ret) {
$('.orderno').html('订单号:' + ret.order_no);
if (ret.code && ret.code === 2) {
$('#test').append('<button type="button" class="btn btn-success">已支付,刷新支付号</button>');
return $('[type="submit"]').remove();
}
$('[type="submit"]').on('click', function () {
if (ret.code && ret.code === 3) {
return alert(ret.msg);
}
wx.chooseWXPay(ret);
});
});
$('body').on('click', '[type="button"]', function () {
$.get('{:url("payjs")}', {'action': 'reset'}, function () {
window.location.reload();
});
});
});
</script>
</body>
</html>

View File

@ -1,53 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>扫码支付DEMO</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body style="text-align:center">
<div class="contrainer">
<h3>扫码支付DEMO</h3>
<hr/>
<p id="showbox"></p>
<p class="help-block">请使用其它手机微信扫描二维码。</p>
<hr/>
<p class="price">金额: 0.01</p>
<hr/>
<p id="orderno"></p>
<hr/>
<button data-reset class="btn btn-default hide">重置订单号</button>
<a href="{:url('payjs')}" class="btn btn-link">JSAPI支付测试</a>
</div>
<script src="//cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script>
<script src="//cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
$(function () {
payTest.call(this), setInterval(payTest, 3000);
/*! 支付测试动作 */
function payTest() {
$.get('{:url("payqrc")}', {'action': 'payqrc'}, function (ret) {
if (ret.code === 2) {
$('[data-reset]').removeClass('hide');
ret.url = '__PUBLIC__/static/theme/default/img/wechat/qrc_payed.jpg';
}
$('#showbox').html('<img style="width:300px" class="img-thumbnail" src="' + ret.url + '"/>');
$('#orderno').html('订单号:' + ret.order_no);
});
}
$('[data-reset]').on('click', function () {
$.get('{:url("payqrc")}', {'action': 'reset'}, function () {
window.location.reload();
});
});
});
</script>
</body>
</html>

View File

@ -1,64 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
/* 测试环境禁止操作路由绑定 */
think\Route::post([
'admin/index/pass' => function () {
return json(['code' => 0, 'msg' => '测试环境禁修改用户密码!']);
},
'admin/user/pass' => function () {
return json(['code' => 0, 'msg' => '测试环境禁修改用户密码!']);
},
'admin/config/index' => function () {
return json(['code' => 0, 'msg' => '测试环境禁修改系统配置操作!']);
},
'admin/config/file' => function () {
return json(['code' => 0, 'msg' => '测试环境禁修改文件配置操作!']);
},
'admin/menu/index' => function () {
return json(['code' => 0, 'msg' => '测试环境禁排序菜单操作!']);
},
'admin/menu/add' => function () {
return json(['code' => 0, 'msg' => '测试环境禁添加菜单操作!']);
},
'admin/menu/edit' => function () {
return json(['code' => 0, 'msg' => '测试环境禁编辑菜单操作!']);
},
'admin/menu/forbid' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止禁用菜单操作!']);
},
'admin/menu/del' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止删除菜单操作!']);
},
'wechat/config/index' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改微信配置操作!']);
},
'wechat/config/pay' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改微信支付操作!']);
},
'admin/node/save' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改节点数据操作!']);
},
'wechat/menu/edit' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']);
},
]);
think\Route::get([
'wechat/menu/cancel' => function () {
return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']);
},
]);
return [];

View File

@ -12,19 +12,28 @@
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace think;
use think\exception\HttpResponseException;
return [
// 应用初始化
'app_init' => [],
// 应用开始
'app_begin' => [],
// 模块初始化
'module_init' => [],
// 操作开始执行
'action_begin' => ['hook\\AccessAuth'],
// 视图内容过滤
'view_filter' => ['hook\\FilterView'],
// 日志写入
'log_write' => [],
// 应用结束
'app_end' => [],
// 控制器开始前,进行权限检查
'action_begin' => function () {
$request = app('request');
list($module, $controller, $action) = [$request->module(), $request->controller(), $request->action()];
$node = strtolower("{$module}/{$controller}/{$action}");
$info = Db::name('SystemNode')->cache(true, 30)->where(['node' => $node])->find();
$access = ['is_menu' => intval(!empty($info['is_menu'])), 'is_auth' => intval(!empty($info['is_auth'])), 'is_login' => empty($info['is_auth']) ? intval(!empty($info['is_login'])) : 1];
// 登录状态检查
if (!empty($access['is_login']) && !session('user')) {
$msg = ['code' => 0, 'msg' => '抱歉,您还没有登录获取访问权限!', 'url' => url('@admin/login')];
throw new HttpResponseException($request->isAjax() ? json($msg) : redirect($msg['url']));
}
// 访问权限检查
if (!empty($access['is_auth']) && !auth($node)) {
throw new HttpResponseException(json(['code' => 0, 'msg' => '抱歉,您没有访问该模块的权限!']));
}
// 模板常量声明
app('view')->init(config('template.'))->assign(['classuri' => "{$module}/{$controller}"]);
},
];

View File

@ -1,263 +0,0 @@
<?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;
use service\DataService;
use service\WechatService;
use think\Controller;
use think\Db;
use think\Log;
use Wechat\WechatReceive;
/**
* 微信接口控制器
* Class Api
* @package app\wechat\controller
* @author Anyon <zoujingli@qq.com>
*/
class Api extends Controller
{
/**
* 微信openid
* @var string
*/
protected $openid;
/**
* 微信消息对象
* @var WechatReceive
*/
protected $wechat;
/**
* 微信消息接口
* @return string
*/
public function index()
{
// 实例接口对象
$this->wechat = &load_wechat('Receive');
// 验证接口请求
if ($this->wechat->valid() === false) {
$msg = "{$this->wechat->errMsg}[{$this->wechat->errCode}]";
Log::error($msg);
return $msg;
}
// 获取消息来源用户OPENID
$this->openid = $this->wechat->getRev()->getRevFrom();
// 获取并同步粉丝信息到数据库
$this->_updateFansInfo(true);
// 分别执行对应类型的操作
switch ($this->wechat->getRev()->getRevType()) {
case WechatReceive::MSGTYPE_TEXT:
return $this->_keys("WechatKeys#keys#" . $this->wechat->getRevContent());
case WechatReceive::MSGTYPE_EVENT:
return $this->_event();
case WechatReceive::MSGTYPE_IMAGE:
return $this->_image();
case WechatReceive::MSGTYPE_LOCATION:
return $this->_location();
default:
return 'success';
}
}
/**
* 关键字处理
* @param string $keys
* @param bool $isForce
* @return string
*/
private function _keys($keys, $isForce = false)
{
list($table, $field, $value) = explode('#', $keys . '##');
if (is_array($info = Db::name($table)->where($field, $value)->find()) && isset($info['type'])) {
// 数据状态检查
if (array_key_exists('status', $info) && empty($info['status'])) {
return 'success';
}
switch ($info['type']) {
case 'customservice': // 多客服
$this->wechat->sendCustomMessage(['touser' => $this->openid, 'msgtype' => 'text', 'text' => ['content' => $info['content']]]);
return $this->wechat->transfer_customer_service()->reply(false, true);
case 'keys': // 关键字
if (empty($info['content']) && empty($info['name'])) {
return 'success';
}
return $this->_keys('wechat_keys#keys#' . (empty($info['content']) ? $info['name'] : $info['content']));
case 'text': // 文本消息
if (empty($info['content']) && empty($info['name'])) {
return 'success';
}
return $this->wechat->text($info['content'])->reply(false, true);
case 'news': // 图文消息
if (empty($info['news_id'])) {
return 'success';
}
return $this->_news($info['news_id']);
case 'music': // 音频消息
if (empty($info['music_url']) || empty($info['music_title']) || empty($info['music_desc'])) {
return 'success';
}
$media_id = empty($info['music_image']) ? '' : WechatService::uploadForeverMedia($info['music_image'], 'image');
if (empty($media_id)) {
return 'success';
}
return $this->wechat->music($info['music_title'], $info['music_desc'], $info['music_url'], $info['music_url'], $media_id)->reply(false, true);
case 'voice': // 语音消息
if (empty($info['voice_url'])) {
return 'success';
}
$media_id = WechatService::uploadForeverMedia($info['voice_url'], 'voice');
if (empty($media_id)) {
return 'success';
}
return $this->wechat->voice($media_id)->reply(false, true);
case 'image': // 图文消息
if (empty($info['image_url'])) {
return 'success';
}
$media_id = WechatService::uploadForeverMedia($info['image_url'], 'image');
if (empty($media_id)) {
return 'success';
}
return $this->wechat->image($media_id)->reply(false, true);
case 'video': // 视频消息
if (empty($info['video_url']) || empty($info['video_desc']) || empty($info['video_title'])) {
return 'success';
}
$data = ['title' => $info['video_title'], 'introduction' => $info['video_desc']];
$media_id = WechatService::uploadForeverMedia($info['video_url'], 'video', true, $data);
return $this->wechat->video($media_id, $info['video_title'], $info['video_desc'])->reply(false, true);
}
}
if ($isForce) {
return 'success';
}
return $this->_keys('wechat_keys#keys#default', true);
}
/**
* 回复图文
* @param int $news_id
* @return bool|string
*/
protected function _news($news_id = 0)
{
if (is_array($newsinfo = WechatService::getNewsById($news_id)) && !empty($newsinfo['articles'])) {
$newsdata = [];
foreach ($newsinfo['articles'] as $vo) {
$newsdata[] = [
'Title' => $vo['title'],
'Description' => $vo['digest'],
'PicUrl' => $vo['local_url'],
'Url' => url("@wechat/review", '', true, true) . "?content={$vo['id']}&type=article",
];
}
return $this->wechat->news($newsdata)->reply(false, true);
}
return 'success';
}
/**
* 事件处理
*/
protected function _event()
{
$event = $this->wechat->getRevEvent();
switch (strtolower($event['event'])) {
case 'subscribe': // 粉丝关注事件
$this->_updateFansInfo(true);
$this->_spread($event['key']);
return $this->_keys('wechat_keys#keys#subscribe', true);
case 'unsubscribe':// 粉丝取消关注
$this->_updateFansInfo(false);
return 'success';
case 'click': // 点击菜单事件
return $this->_keys($event['key']);
case 'scancode_push':
case 'scancode_waitmsg': // 扫码推事件
$scanInfo = $this->wechat->getRev()->getRevScanInfo();
if (isset($scanInfo['ScanResult'])) {
return $this->_keys($scanInfo['ScanResult']);
}
return 'success';
case 'scan':
if (!empty($event['key'])) {
return $this->_spread($event['key']);
}
return 'success';
}
return 'success';
}
/**
* 推荐好友扫码关注
* @param string $event
* @return mixed
*/
private function _spread($event)
{
$key = preg_replace('|^.*?(\d+).*?$|', '$1', "{$event}");
// 检测推荐是否有效
$fans = Db::name('WechatFans')->where('id', $key)->find();
if (!is_array($fans) || !isset($fans['openid']) || $fans['openid'] === $this->openid) {
return false;
}
// 标识推荐关系
$data = ['spread_openid' => $fans['openid'], 'spread_at' => date('Y-m-d H:i:s')];
Db::name('WechatFans')->where("openid='{$this->openid}' and (spread_openid is null or spread_openid='')")->setField($data);
// @todo 推荐成功的奖励
}
/**
* 位置事情回复
* @return string
*/
private function _location()
{
return 'success';
}
/**
* 图片事件处理
*/
private function _image()
{
return 'success';
}
/**
* 同步粉丝状态
* @param bool $subscribe 关注状态
*/
protected function _updateFansInfo($subscribe = true)
{
if ($subscribe) {
$fans = WechatService::getFansInfo($this->openid);
if (empty($fans) || empty($fans['subscribe'])) {
$wechat = &load_wechat('User');
$userInfo = $wechat->getUserInfo($this->openid);
$userInfo['subscribe'] = intval($subscribe);
WechatService::setFansInfo($userInfo, $wechat->appid);
}
} else {
$data = ['subscribe' => '0', 'appid' => $this->wechat->appid, 'openid' => $this->openid];
DataService::save('wechat_fans', $data, 'openid');
}
}
}

View File

@ -0,0 +1,114 @@
<?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;
use controller\BasicAdmin;
use service\ToolsService;
use service\WechatService;
use think\Db;
use think\Exception;
/**
* 微信粉丝管理
* Class Block
* @package app\wechat\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/03/27 14:43
*/
class Block extends BasicAdmin
{
/**
* 定义当前默认数据表
* @var string
*/
public $table = 'WechatFans';
/**
* 黑名单列表
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function index()
{
$this->title = '微信粉丝黑名单管理';
$get = $this->request->get();
$db = Db::name($this->table)->where(['is_black' => '1'])->order('subscribe_time desc');
(isset($get['sex']) && $get['sex'] !== '') && $db->where('sex', $get['sex']);
foreach (['nickname', 'country', 'province', 'city'] as $key) {
(isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%");
}
if (isset($get['tag']) && $get['tag'] !== '') {
$db->where("concat(',',tagid_list,',') like :tag", ['tag' => "%,{$get['tag']},%"]);
}
if (isset($get['date']) && $get['date'] !== '') {
list($start, $end) = explode(' - ', $get['date']);
$db->whereBetween('subscribe_at', ["{$start} 00:00:00", "{$end} 23:59:59"]);
}
return parent::_list($db);
}
/**
* 列表数据处理
* @param array $list
*/
protected function _data_filter(&$list)
{
$tags = Db::name('WechatFansTags')->column('id,name');
foreach ($list as &$vo) {
list($vo['tags_list'], $vo['nickname']) = [[], ToolsService::emojiDecode($vo['nickname'])];
foreach (explode(',', $vo['tagid_list']) as $tag) {
if ($tag !== '' && isset($tags[$tag])) {
$vo['tags_list'][$tag] = $tags[$tag];
} elseif ($tag !== '') {
$vo['tags_list'][$tag] = $tag;
}
}
}
$this->assign('tags', $tags);
}
/**
* 取消黑名
*/
public function backdel()
{
$openids = $this->_getActionOpenids();
try {
WechatService::user()->batchUnblackList($openids);
Db::name($this->table)->whereIn('openid', $openids)->setField('is_black', '0');
} catch (\Exception $e) {
$this->error("设备黑名单失败,请稍候再试!" . $e->getMessage());
}
$this->success("已成功将 " . count($openids) . " 名粉丝从黑名单中移除!", '');
}
/**
* 获取当前操作用户openid数组
* @return array
*/
private function _getActionOpenids()
{
$ids = $this->request->post('id', '');
empty($ids) && $this->error('没有需要操作的数据!');
$openids = Db::name($this->table)->whereIn('id', explode(',', $ids))->column('openid');
empty($openids) && $this->error('没有需要操作的数据!');
return $openids;
}
}

View File

@ -15,9 +15,8 @@
namespace app\wechat\controller;
use controller\BasicAdmin;
use service\DataService;
use service\LogService;
use service\PayService;
use service\WechatService;
/**
* 微信配置管理
@ -37,97 +36,38 @@ class Config extends BasicAdmin
/**
* 微信基础参数配置
* @return \think\response\View
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function index()
{
if ($this->request->isGet()) {
return view('', ['title' => '微信接口配置']);
$code = encode(url('@admin', '', true, true) . '#' . $this->request->url());
$assign = [
'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(),
];
return $this->fetch('', $assign);
}
foreach ($this->request->post() as $key => $vo) {
sysconf($key, $vo);
}
LogService::write('微信管理', '修改微信接口参数成功');
$this->success('数据修改成功!', '');
}
/**
* 微信商户参数配置
* @return \think\response\View
*/
public function pay()
{
if ($this->request->isGet()) {
$method = strtolower('_pay_' . $this->request->get('action'));
if (method_exists($this, $method)) {
return $this->$method();
try {
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)) {
$this->error('远程服务端接口更新失败,请稍候再试!');
}
}
return view('', ['title' => '微信支付配置']);
LogService::write('微信管理', '修改微信接口参数成功');
} catch (\Exception $e) {
$this->error('微信授权保存失败 , 请稍候重试 ! ' . $e->getMessage());
}
$data = $this->request->post();
foreach ($data as $key => $vo) {
if (in_array($key, ['wechat_cert_key_md5', 'wechat_cert_cert_md5']) && !empty($vo)) {
$filename = ROOT_PATH . 'static/upload/' . join('/', str_split($vo, 16)) . '.pem';
!file_exists($filename) && $this->error('支付双向证书上传失败,请重新上传!');
$data[str_replace('_md5', '', $key)] = $filename;
}
}
unset($data['wechat_cert_key_md5'], $data['wechat_cert_cert_md5']);
foreach ($data as $key => $vo) {
sysconf($key, $vo);
}
LogService::write('微信管理', '修改微信支付参数成功');
$this->success('数据修改成功!', '');
}
/**
* 生成测试支付二维码
* @return \think\response\Json
*/
protected function _pay_payqrc()
{
$pay = &load_wechat('pay');
// 生成订单号
$order_no = session('pay-test-order-no');
if (empty($order_no)) {
$order_no = DataService::createSequence(10, 'wechat-pay-test');
session('pay-test-order-no', $order_no);
}
// 该订单号已经支付
if (PayService::isPay($order_no)) {
return json(['code' => 2, 'order_no' => $order_no]);
}
// 订单号未支付生成支付二维码URL
$url = PayService::createWechatPayQrc($pay, $order_no, 1, '微信扫码支付测试!');
if ($url !== false) {
return json(['code' => 1, 'url' => $url, 'order_no' => $order_no]);
}
// 生成支付二维码URL失败
$this->error("生成支付二维码失败, {$pay->errMsg}[{$pay->errCode}]");
}
/**
* 支付测试退款
*/
protected function _pay_refund()
{
$order_no = session('pay-test-order-no');
if (empty($order_no)) {
$this->error('测试订单号不存在, 请重新开始支付测试!');
}
if (!PayService::isPay($order_no)) {
$this->error('测试订单未支付或未收到微信支付通过!');
}
$pay = &load_wechat('pay');
if (!file_exists($pay->ssl_cer) || !file_exists($pay->ssl_key)) {
$this->error('微信支付双向证书异常, 无法完成退款操作!');
}
$refund_no = DataService::createSequence(10, 'wechat-pay-test');
if (false !== PayService::putWechatRefund($pay, $order_no, 1, $refund_no)) {
session('pay-test-order-no', null);
$this->success('测试退款操作成功, 请查看微信通知!', '');
}
$this->error("操作退款失败, {$pay->errMsg}[{$pay->errCode}]");
$this->success('微信授权数据修改成功!', '');
}
}

View File

@ -14,6 +14,8 @@
namespace app\wechat\controller;
use app\wechat\service\FansService;
use app\wechat\service\TagsService;
use controller\BasicAdmin;
use service\LogService;
use service\ToolsService;
@ -39,25 +41,33 @@ class Fans extends BasicAdmin
/**
* 显示粉丝列表
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function index()
{
$this->title = '微信粉丝管理';
$get = $this->request->get();
$db = Db::name($this->table)->where('is_back', '0')->order('subscribe_time desc');
$db = Db::name($this->table)->where(['is_black' => '0'])->order('subscribe_time desc');
(isset($get['sex']) && $get['sex'] !== '') && $db->where('sex', $get['sex']);
foreach (['nickname', 'country', 'province', 'city'] as $key) {
(isset($get[$key]) && $get[$key] !== '') && $db->where($key, 'like', "%{$get[$key]}%");
(isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%");
}
if (isset($get['tag']) && $get['tag'] !== '') {
$db->where("concat(',',tagid_list,',') like :tag", ['tag' => "%,{$get['tag']},%"]);
}
if (isset($get['date']) && $get['date'] !== '') {
list($start, $end) = explode(' - ', $get['date']);
$db->whereBetween('subscribe_at', ["{$start} 00:00:00", "{$end} 23:59:59"]);
}
return parent::_list($db);
}
/**
* 列表数据处理
* @param type $list
* @param array $list
*/
protected function _data_filter(&$list)
{
@ -75,72 +85,46 @@ class Fans extends BasicAdmin
$this->assign('tags', $tags);
}
/**
* 黑名单列表
*/
public function back()
{
$this->title = '微信粉丝黑名单管理';
$get = $this->request->get();
$db = Db::name($this->table)->where('is_back', '1')->order('subscribe_time desc');
(isset($get['sex']) && $get['sex'] !== '') && $db->where('sex', $get['sex']);
foreach (['nickname', 'country', 'province', 'city'] as $key) {
(isset($get[$key]) && $get[$key] !== '') && $db->where($key, 'like', "%{$get[$key]}%");
}
if (isset($get['tag']) && $get['tag'] !== '') {
$db->where("concat(',',tagid_list,',') like :tag", ['tag' => "%,{$get['tag']},%"]);
}
return parent::_list($db);
}
/**
* 设置黑名单
*/
public function backadd()
{
$wechat = load_wechat('User');
$openids = $this->_getActionOpenids();
if (false !== $wechat->addBacklist($openids)) {
Db::name($this->table)->where('openid', 'in', $openids)->setField('is_back', '1');
$this->success("已成功将 " . count($openids) . " 名粉丝移到黑名单!", '');
try {
$openids = $this->_getActionOpenids();
WechatService::user()->batchBlackList($openids);
Db::name($this->table)->whereIn('openid', $openids)->setField('is_black', '1');
} catch (\Exception $e) {
$this->error("设置黑名单失败,请稍候再试!");
}
$this->error("设备黑名单失败,请稍候再试!{$wechat->errMsg}[{$wechat->errCode}]");
$this->success('设置黑名单成功!', '');
}
/**
* 标签选择
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function tagset()
{
$tags = $this->request->post('tags', '');
$fans_id = $this->request->post('fans_id', '');
$fans = Db::name('WechatFans')->where('id', $fans_id)->find();
$fans = Db::name('WechatFans')->where(['id' => $fans_id])->find();
empty($fans) && $this->error('需要操作的数据不存在!');
$wechat = load_wechat('User');
foreach (explode(',', $fans['tagid_list']) as $tagid) {
is_numeric($tagid) && $wechat->batchDeleteUserTag($tagid, [$fans['openid']]);
try {
$wechat = WechatService::tags();
foreach (explode(',', $fans['tagid_list']) as $tagid) {
is_numeric($tagid) && $wechat->batchUntagging([$fans['openid']], $tagid);
}
foreach (explode(',', $tags) as $tagid) {
is_numeric($tagid) && $wechat->batchTagging([$fans['openid']], $tagid);
}
Db::name('WechatFans')->where(['id' => $fans_id])->setField('tagid_list', $tags);
} catch (\Exception $e) {
$this->error('粉丝标签设置失败, 请稍候再试!');
}
foreach (explode(',', $tags) as $tagid) {
is_numeric($tagid) && $wechat->batchAddUserTag($tagid, [$fans['openid']]);
}
if (false !== Db::name('WechatFans')->where('id', $fans_id)->setField('tagid_list', $tags)) {
$this->success('粉丝标签成功!', '');
}
$this->error('粉丝标签设置失败, 请稍候再试!');
}
/**
* 取消黑名
*/
public function backdel()
{
$wechat = load_wechat('User');
$openids = $this->_getActionOpenids();
if (false !== $wechat->delBacklist($openids)) {
Db::name($this->table)->where('openid', 'in', $openids)->setField('is_back', '0');
$this->success("已成功将 " . count($openids) . " 名粉丝从黑名单中移除!", '');
}
$this->error("设备黑名单失败,请稍候再试!{$wechat->errMsg}[{$wechat->errCode}]");
$this->success('粉丝标签成功!', '');
}
/**
@ -150,12 +134,13 @@ class Fans extends BasicAdmin
{
$tagid = $this->request->post('tag_id', 0);
empty($tagid) && $this->error('没有可能操作的标签ID');
$openids = $this->_getActionOpenids();
$wechat = load_wechat('User');
if (false !== $wechat->batchAddUserTag($tagid, $openids)) {
$this->success('设置粉丝标签成功!', '');
try {
$openids = $this->_getActionOpenids();
WechatService::tags()->batchTagging($openids, $tagid);
} catch (\Exception $e) {
$this->error("设置粉丝标签失败, 请稍候再试! " . $e->getMessage());
}
$this->error("设置粉丝标签失败, 请稍候再试! {$wechat->errMsg}[{$wechat->errCode}]");
$this->success('设置粉丝标签成功!', '');
}
/**
@ -165,12 +150,13 @@ class Fans extends BasicAdmin
{
$tagid = $this->request->post('tag_id', 0);
empty($tagid) && $this->error('没有可能操作的标签ID');
$openids = $this->_getActionOpenids();
$wechat = load_wechat('User');
if (false !== $wechat->batchDeleteUserTag($tagid, $openids)) {
$this->success('删除粉丝标签成功!', '');
try {
$openids = $this->_getActionOpenids();
WechatService::tags()->batchUntagging($openids, $tagid);
} catch (\Exception $e) {
$this->error("删除粉丝标签失败, 请稍候再试! ");
}
$this->error("删除粉丝标签失败, 请稍候再试! {$wechat->errMsg}[{$wechat->errCode}]");
$this->success('删除粉丝标签成功!', '');
}
/**
@ -181,7 +167,7 @@ class Fans extends BasicAdmin
{
$ids = $this->request->post('id', '');
empty($ids) && $this->error('没有需要操作的数据!');
$openids = Db::name($this->table)->where('id', 'in', explode(',', $ids))->column('openid');
$openids = Db::name($this->table)->whereIn('id', explode(',', $ids))->column('openid');
empty($openids) && $this->error('没有需要操作的数据!');
return $openids;
}
@ -191,13 +177,15 @@ class Fans extends BasicAdmin
*/
public function sync()
{
Db::name($this->table)->where('1=1')->delete();
if (WechatService::syncAllFans('')) {
WechatService::syncBlackFans('');
try {
Db::name($this->table)->where('1=1')->delete();
FansService::sync();
TagsService::sync();
LogService::write('微信管理', '同步全部微信粉丝成功');
$this->success('同步获取所有粉丝成功!', '');
} catch (\Exception $e) {
$this->error('同步粉丝记录失败,请稍候再试!');
}
$this->error('同步获取粉丝失败,请稍候再试!');
$this->success('同步获取所有粉丝成功!', '');
}
}

View File

@ -16,11 +16,12 @@ namespace app\wechat\controller;
use controller\BasicAdmin;
use service\DataService;
use service\WechatService;
use think\Db;
/**
* 微信文章管理
* Class Article
* Class Keys
* @package app\wechat\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/03/27 14:43
@ -36,28 +37,35 @@ class Keys extends BasicAdmin
/**
* 显示关键字列表
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function index()
{
$this->assign('title', '微信关键字');
$db = Db::name($this->table)->where('keys', 'not in', ['subscribe', 'default']);
return $this->_list($db);
$db = Db::name($this->table)->whereNotIn('keys', ['subscribe', 'default']);
return $this->_list($db->order('id desc'));
}
/**
* 列表数据处理
* @param array $data
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
protected function _index_data_filter(&$data)
{
$types = [
'keys' => '关键字', 'image' => '图片', 'news' => '图文',
'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音'
'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音',
];
$wechat = load_wechat('Extends');
$wechat = WechatService::qrcode();
foreach ($data as &$vo) {
$result = $wechat->getQRCode($vo['keys'], 1);
$vo['qrc'] = $wechat->getQRUrl($result['ticket']);
$result = $wechat->create($vo['keys']);
$vo['qrc'] = $wechat->url($result['ticket']);
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
}
}
@ -65,6 +73,10 @@ class Keys extends BasicAdmin
/**
* 添加关键字
* @return string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function add()
{
@ -73,21 +85,10 @@ class Keys extends BasicAdmin
}
/**
* 编辑关键字
* @return string
* 添加数据处理
* @param array $data
*/
public function edit()
{
$this->title = '编辑关键字规则';
return $this->_form($this->table, 'form');
}
/**
* 表单处理
* @param $data
*/
protected function _form_filter($data)
protected function _add_form_filter(array $data)
{
if ($this->request->isPost() && isset($data['keys'])) {
$db = Db::name($this->table)->where('keys', $data['keys']);
@ -96,8 +97,33 @@ class Keys extends BasicAdmin
}
}
/**
* 编辑关键字
* @return string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function edit()
{
$this->title = '编辑关键字规则';
return $this->_form($this->table, 'form');
}
/**
* 编辑数据处理
* @param array $data
*/
protected function _edit_form_filter(array $data)
{
$this->_add_form_filter($data);
}
/**
* 删除关键字
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function del()
{
@ -107,9 +133,10 @@ class Keys extends BasicAdmin
$this->error("关键字删除失败,请稍候再试!");
}
/**
* 关键字禁用
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function forbid()
{
@ -121,6 +148,8 @@ class Keys extends BasicAdmin
/**
* 关键字禁用
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function resume()
{
@ -132,6 +161,11 @@ class Keys extends BasicAdmin
/**
* 关注默认回复
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function subscribe()
{
@ -141,19 +175,26 @@ class Keys extends BasicAdmin
/**
* 关注默认回复表单处理
* @param $data
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _subscribe_form_filter(&$data)
{
if ($this->request->isGet()) {
$data = Db::name($this->table)->where('keys', 'subscribe')->find();
$data = Db::name($this->table)->where(['keys' => 'subscribe'])->find();
}
$data['keys'] = 'subscribe';
}
/**
* 无配置默认回复
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function defaults()
{
@ -161,16 +202,35 @@ class Keys extends BasicAdmin
return $this->_form($this->table, 'form');
}
/**
* 无配置默认回复表单处理
* @param $data
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _defaults_form_filter(&$data)
{
if ($this->request->isGet()) {
$data = Db::name($this->table)->where('keys', 'default')->find();
$data = Db::name($this->table)->where(['keys' => 'default'])->find();
}
$data['keys'] = 'default';
}
/**
* 编辑结果处理
* @param $result
*/
protected function _form_result($result)
{
if ($result !== false) {
list($url, $keys) = ['', $this->request->post('keys')];
if (!in_array($keys, ['subscribe', 'default'])) {
$url = url('@admin') . '#' . url('wechat/keys/index') . '?spm=' . $this->request->get('spm');
}
$this->success('恭喜, 关键字保存成功!', $url);
}
$this->error('关键字保存失败, 请稍候再试!');
}
}

View File

@ -17,6 +17,7 @@ namespace app\wechat\controller;
use controller\BasicAdmin;
use service\LogService;
use service\ToolsService;
use service\WechatService;
use think\Db;
/**
@ -57,7 +58,12 @@ class Menu extends BasicAdmin
];
/**
* 显示列表操作
* 显示菜单列表
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function index()
{
@ -81,26 +87,31 @@ class Menu extends BasicAdmin
if ($this->request->isPost()) {
$post = $this->request->post();
!isset($post['data']) && $this->error('访问出错,请稍候再试!');
$data = $post['data'];
if (empty($data)) {
Db::name($this->table)->where('1=1')->delete();
load_wechat('Menu')->deleteMenu();
// 删除菜单
if (empty($post['data'])) {
try {
Db::name($this->table)->where('1=1')->delete();
WechatService::menu()->delete();
} catch (\Exception $e) {
$this->error('删除取消微信菜单失败,请稍候再试!' . $e->getMessage());
}
$this->success('删除并取消微信菜单成功!', '');
}
foreach ($data as &$vo) {
if (isset($vo['content'])) {
$vo['content'] = str_replace('"', "'", $vo['content']);
// 数据过滤处理
try {
foreach ($post['data'] as &$vo) {
isset($vo['content']) && ($vo['content'] = str_replace('"', "'", $vo['content']));
}
Db::transaction(function () use ($post) {
Db::name($this->table)->where('1=1')->delete();
Db::name($this->table)->insertAll($post['data']);
});
$this->_push();
} catch (\Exception $e) {
$this->error('微信菜单发布失败,请稍候再试!' . $e->getMessage());
}
if (Db::name($this->table)->where('1=1')->delete() !== false && Db::name($this->table)->insertAll($data) !== false) {
$result = $this->_push();
if ($result['status']) {
LogService::write('微信管理', '发布微信菜单成功');
$this->success('保存发布菜单成功!', '');
}
$this->error('菜单发布失败,' . $result['errmsg']);
}
$this->error('保存发布菜单失败!');
LogService::write('微信管理', '发布微信菜单成功');
$this->success('保存发布菜单成功!', '');
}
}
@ -109,40 +120,47 @@ class Menu extends BasicAdmin
*/
public function cancel()
{
$wehcat = load_wechat('Menu');
if (false !== $wehcat->deleteMenu()) {
$this->success('菜单取消成功,重新关注可立即生效!', '');
try {
WechatService::menu()->delete();
} catch (\Exception $e) {
$this->error('菜单取消失败');
}
$this->error('菜单取消失败,' . $wehcat->getError());
$this->success('菜单取消成功,重新关注可立即生效!', '');
}
/**
* 菜单推送
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _push()
private function _push()
{
list($map, $fields) = [['status' => '1'], 'id,index,pindex,name,type,content'];
$result = (array)Db::name($this->table)->field($fields)->where($map)->order('sort ASC,id ASC')->select();
list($map, $field) = [['status' => '1'], 'id,index,pindex,name,type,content'];
$result = (array)Db::name($this->table)->field($field)->where($map)->order('sort ASC,id ASC')->select();
foreach ($result as &$row) {
empty($row['content']) && $row['content'] = uniqid();
if ($row['type'] === 'miniprogram') :
if ($row['type'] === 'miniprogram') {
list($row['appid'], $row['url'], $row['pagepath']) = explode(',', "{$row['content']},,");
elseif ($row['type'] === 'view') :
} elseif ($row['type'] === 'view') {
if (preg_match('#^(\w+:)?//#', $row['content'])) {
$row['url'] = $row['content'];
} else {
$row['url'] = url($row['content'], '', true, true);
}
elseif ($row['type'] === 'event') :
} elseif
($row['type'] === 'event') {
if (isset($this->menuType[$row['content']])) {
list($row['type'], $row['key']) = [$row['content'], "wechat_menu#id#{$row['id']}"];
};
elseif ($row['type'] === 'media_id'):
}
} elseif ($row['type'] === 'media_id') {
$row['media_id'] = $row['content'];
else :
} else {
$row['key'] = "wechat_menu#id#{$row['id']}";
!in_array($row['type'], $this->menuType) && $row['type'] = 'click';
endif;
}
unset($row['content']);
}
$menus = ToolsService::arr2tree($result, 'index', 'pindex', 'sub_button');
@ -157,11 +175,7 @@ class Menu extends BasicAdmin
}
unset($menu['type']);
}
$wechat = load_wechat('Menu');
if (false !== $wechat->createMenu(['button' => $menus])) {
return ['status' => true, 'errmsg' => ''];
}
return ['status' => false, 'errmsg' => $wechat->getError()];
WechatService::menu()->create(['button' => $menus]);
}
}

View File

@ -14,13 +14,14 @@
namespace app\wechat\controller;
use app\wechat\service\MediaService;
use controller\BasicAdmin;
use service\DataService;
use service\LogService;
use service\ToolsService;
use service\WechatService;
use think\Db;
use think\Log;
use think\response\View;
use think\facade\Log;
/**
* 微信图文管理
@ -40,26 +41,67 @@ class News extends BasicAdmin
/**
* 图文列表
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function index()
{
$this->assign('title', '图文列表');
$db = Db::name($this->table)->where('is_deleted', '0')->order('id desc');
return parent::_list($db);
$this->title = '微信图文列表';
$db = Db::name($this->table)->where(['is_deleted' => '0']);
return parent::_list($db->order('id desc'));
}
/**
* 图文列表数据处理
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _index_data_filter(&$data)
{
foreach ($data as &$vo) {
$vo = MediaService::getNewsById($vo['id']);
}
}
/**
* 图文选择器
* @return string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function select()
{
return $this->index();
}
/**
* 图文列表数据处理
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _select_data_filter(&$data)
{
foreach ($data as &$vo) {
$vo = MediaService::getNewsById($vo['id']);
}
}
/**
* 媒体资源显示
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function image()
{
@ -68,43 +110,24 @@ class News extends BasicAdmin
return $this->_list(Db::name('WechatNewsMedia')->where('type', 'image'));
}
/**
* 图文列表数据处理
* @param $data
*/
protected function _index_data_filter(&$data)
{
foreach ($data as &$vo) {
$vo = WechatService::getNewsById($vo['id']);
}
}
/**
* 图文列表数据处理
* @param $data
*/
protected function _select_data_filter(&$data)
{
foreach ($data as &$vo) {
$vo = WechatService::getNewsById($vo['id']);
}
}
/**
* 添加图文
* @return View
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function add()
{
if ($this->request->isGet()) {
return view('form', ['title' => '新建图文']);
return $this->fetch('form', ['title' => '新建图文']);
}
if ($this->request->isPost()) {
$data = $this->request->post();
if (($ids = $this->_apply_news_article($data['data'])) && !empty($ids)) {
$post = ['article_id' => $ids, 'create_by' => session('user.id')];
if (DataService::save($this->table, $post, 'id') !== false) {
$this->success('图文添加成功!', '');
$url = url('@admin') . '#' . url('@wechat/news/index') . '?spm=' . $this->request->get('spm');
$this->success('图文添加成功!', $url);
}
}
$this->error('图文添加失败,请稍候再试!');
@ -113,21 +136,24 @@ class News extends BasicAdmin
/**
* 编辑图文
* @return View
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function edit()
{
$id = $this->request->get('id', '');
if ($this->request->isGet()) {
empty($id) && $this->error('参数错误,请稍候再试!');
return view('form', ['title' => '编辑图文', 'vo' => WechatService::getNewsById($id)]);
return $this->fetch('form', ['title' => '编辑图文', 'vo' => MediaService::getNewsById($id)]);
}
$data = $this->request->post();
$ids = $this->_apply_news_article($data['data']);
if (!empty($ids)) {
$post = ['id' => $id, 'article_id' => $ids, 'create_by' => session('user.id')];
if (false !== DataService::save('wechat_news', $post, 'id')) {
$this->success('图文更新成功!', '');
$url = url('@admin') . '#' . url('@wechat/news/index') . '?spm=' . $this->request->get('spm');
$this->success('图文更新成功!', $url);
}
}
$this->error('图文更新失败,请稍候再试!');
@ -138,13 +164,17 @@ class News extends BasicAdmin
* @param array $data
* @param array $ids
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
protected function _apply_news_article($data, $ids = [])
{
foreach ($data as &$vo) {
$vo['create_by'] = session('user.id');
$vo['create_at'] = date('Y-m-d H:i:s');
$vo['digest'] = empty($vo['digest']) ? mb_substr(strip_tags(str_replace(["\s", ' '], '', $vo['content'])), 0, 120) : $vo['digest'];
if (empty($vo['digest'])) {
$vo['digest'] = mb_substr(strip_tags(str_replace(["\s", ' '], '', htmlspecialchars_decode($vo['content']))), 0, 120);
}
if (empty($vo['id'])) {
$result = $id = Db::name('WechatNewsArticle')->insertGetId($vo);
} else {
@ -160,6 +190,8 @@ class News extends BasicAdmin
/**
* 删除用户
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function del()
{
@ -172,6 +204,13 @@ class News extends BasicAdmin
/**
* 推荐图文
* @return array
* @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
*/
public function push()
{
@ -183,19 +222,21 @@ class News extends BasicAdmin
}
list($ids, $db) = [explode(',', $params), Db::name('WechatFans')];
!in_array('0', $ids) && $db->where("concat(',',tagid_list,',') REGEXP '," . join(',|,', $ids) . ",'");
return ['code' => "SUCCESS", 'data' => $db->where('subscribe', '1')->limit(200)->column('nickname')];
$list = $db->where(['subscribe' => '1'])->limit(200)->column('nickname');
foreach ($list as &$vo) {
$vo = ToolsService::emojiDecode($vo);
}
return ['code' => "SUCCESS", 'data' => $list];
default :
$news_id = $this->request->get('id', '');
// 显示及图文
$newsinfo = WechatService::getNewsById($news_id);
$newsinfo = MediaService::getNewsById($news_id);
// Get 请求,显示选择器界面
if ($this->request->isGet()) {
$fans_tags = Db::name('WechatFansTags')->select();
array_unshift($fans_tags, [
'id' => 0, 'name' => '全部',
'count' => Db::name('WechatFans')->where('subscribe', '1')->count(),
]);
return view('push', ['vo' => $newsinfo, 'fans_tags' => $fans_tags]);
$fans_tags = (array)Db::name('WechatFansTags')->select();
$count = Db::name('WechatFans')->where(['subscribe' => '1'])->count();
array_unshift($fans_tags, ['id' => 0, 'name' => '全部', 'count' => $count]);
return $this->fetch('push', ['vo' => $newsinfo, 'fans_tags' => $fans_tags]);
}
// Post 请求,执行图文推送操作
$post = $this->request->post();
@ -213,39 +254,43 @@ class News extends BasicAdmin
$data['filter'] = ['is_to_all' => false, 'tag_id' => join(',', $post['fans_tags'])];
$data['mpnews'] = ['media_id' => $newsinfo['media_id']];
}
$wechat = load_wechat('Receive');
if (false !== $wechat->sendGroupMassMessage($data)) {
$wechat = WechatService::custom();
if (false !== $wechat->massSendAll($data)) {
LogService::write('微信管理', "图文[{$news_id}]推送成功");
$this->success('微信图文推送成功!', '');
}
$this->error("微信图文推送失败{$wechat->errMsg} [{$wechat->errCode}]");
$this->error("微信图文推送失败");
}
}
/**
* 上传永久图文
* @param array $newsinfo
* @param array $news
* @return bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
private function _uploadWechatNews(&$newsinfo)
private function _uploadWechatNews(&$news)
{
foreach ($newsinfo['articles'] as &$article) {
$article['thumb_media_id'] = WechatService::uploadForeverMedia($article['local_url']);
foreach ($news['articles'] as &$article) {
$article['thumb_media_id'] = MediaService::uploadForeverMedia($article['local_url']);
$article['content'] = preg_replace_callback("/<img(.*?)src=['\"](.*?)['\"](.*?)\/?>/i", function ($matches) {
$src = WechatService::uploadImage($matches[2]);
$src = MediaService::uploadImage($matches[2]);
return "<img{$matches[1]}src=\"{$src}\"{$matches[3]}/>";
}, htmlspecialchars_decode($article['content']));
}
$wechat = load_wechat('media');
$wechat = WechatService::media();
// 如果已经上传过,先删除之前的历史记录
!empty($newsinfo['media_id']) && $wechat->delForeverMedia($newsinfo['media_id']);
!empty($news['media_id']) && $wechat->delMaterial($news['media_id']);
// 上传图文到微信服务器
$result = $wechat->uploadForeverArticles(['articles' => $newsinfo['articles']]);
$result = $wechat->addNews(['articles' => $news['articles']]);
if (isset($result['media_id'])) {
$newsinfo['media_id'] = $result['media_id'];
return Db::name('WechatNews')->where('id', $newsinfo['id'])->setField('media_id', $result['media_id']);
$news['media_id'] = $result['media_id'];
return Db::name('WechatNews')->where(['id' => $news['id']])->update(['media_id' => $result['media_id']]);
}
Log::error("上传永久图文失败, {$wechat->errMsg}[{$wechat->errCode}]");
Log::error("上传永久图文失败");
return false;
}

View File

@ -1,68 +0,0 @@
<?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;
use think\Controller;
use think\Db;
use think\Log;
/**
* 微信支付通知处理控制器
* Class Notify
* @package app\wechat\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/04/05 14:02
*/
class Notify extends Controller
{
public function index()
{
// 实例支付接口
$pay = load_wechat('Pay');
// 获取支付通知
$notifyInfo = $pay->getNotify();
// 支付通知数据获取失败
if ($notifyInfo === false) {
// 接口失败的处理
Log::error("微信支付通知消息验证失败,{$pay->errCode}[{$pay->errCode}]");
return $pay->errMsg;
} else {
//支付通知数据获取成功
if ($notifyInfo['result_code'] == 'SUCCESS' && $notifyInfo['return_code'] == 'SUCCESS') {
// 记录支付通知数据
if (!Db::name('WechatPayNotify')->insert($notifyInfo)) {
$pay->replyXml(['return_code' => 'ERROR', 'return_msg' => '系统记录微信通知时发生异常!']);
}
$prepayMap = ['out_trade_no' => $notifyInfo['out_trade_no']];
$prepayData = Db::name('WechatPayPrepayid')->where($prepayMap)->find();
if (empty($prepayData)) {
$pay->replyXml(['return_code' => 'ERROR', 'return_msg' => '系统中未发现对应的预支付记录!']);
}
$prepayUpdateData = ['transaction_id' => $notifyInfo['transaction_id'], 'is_pay' => 1, 'pay_at' => date('Y-m-d H:i:s')];
if (false === Db::name('WechatPayPrepayid')->where($prepayMap)->update($prepayUpdateData)) {
$pay->replyXml(['return_code' => 'ERROR', 'return_msg' => '更新系统预支付记录失败!']);
}
// 支付状态完全成功,可以更新订单的支付状态了
// @todo 这里去完成你的订单状态修改操作
// 回复xmlreplyXml方法是终态方法
$pay->replyXml(['return_code' => 'SUCCESS', 'return_msg' => '系统业务处理成功!']);
}
}
}
}

View File

@ -14,27 +14,32 @@
namespace app\wechat\controller;
use service\FileService;
use service\WechatService;
use app\wechat\service\MediaService;
use think\Controller;
use think\Db;
/**
* 微信素材预览
* Class Review
* @package app\wechat\controller
*/
class Review extends Controller
{
/**
* 显示手机预览
* @return string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function index()
{
$get = $this->request->get();
$content = str_replace("\n", "<br>", $this->request->get('content', '')); // 内容
$type = $this->request->get('type', 'text'); // 类型
$this->assign('type', $type);
// 图文处理
if ($type === 'news' && is_numeric($content) && !empty($content)) {
$news = WechatService::getNewsById($content);
$news = MediaService::getNewsById($content);
$this->assign('articles', $news['articles']);
}
// 文章预览
@ -43,26 +48,14 @@ 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($get);
$this->assign('type', $type);
$this->assign('content', $content);
$this->assign($this->request->get());
// 渲染模板并显示
return view();
}
/**
* 微信图片显示
*/
public function img()
{
$url = $this->request->get('url', '');
$filename = FileService::getFileName($url, 'jpg', 'tmp/');
if (false === ($img = FileService::getFileUrl($filename))) {
$info = FileService::save($filename, file_get_contents($url));
$img = (is_array($info) && isset($info['url'])) ? $info['url'] : $url;
}
$this->redirect($img);
return $this->fetch();
}
}

View File

@ -14,6 +14,7 @@
namespace app\wechat\controller;
use app\wechat\service\TagsService;
use controller\BasicAdmin;
use service\DataService;
use service\LogService;
@ -24,8 +25,6 @@ use think\Db;
* 微信粉丝标签管理
* Class Tags
* @package app\wechat\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/03/27 14:43
*/
class Tags extends BasicAdmin
{
@ -39,22 +38,31 @@ class Tags extends BasicAdmin
/**
* 显示粉丝标签列表
* @return array|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\Exception
*/
public function index()
{
$this->title = '微信粉丝标签管理';
$get = $this->request->get();
$db = Db::name($this->table)->order('id asc');
list($get, $db) = [$this->request->get(), Db::name($this->table)];
foreach (['name'] as $key) {
if (isset($get[$key]) && $get[$key] !== '') {
$db->where($key, 'like', "%{$get[$key]}%");
}
(isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%");
}
return parent::_list($db);
return parent::_list($db->order('id asc'));
}
/**
* 添加粉丝标签
* @return array|string
* @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
*/
public function add()
{
@ -63,18 +71,27 @@ class Tags extends BasicAdmin
}
$name = $this->request->post('name', '');
empty($name) && $this->error('粉丝标签名不能为空!');
(Db::name($this->table)->where('name', $name)->count() > 0) && $this->error('粉丝标签标签名已经存在, 请使用其它标签名!');
$wechat = load_wechat('User');
if (Db::name($this->table)->where('name', $name)->count() > 0) {
$this->error('粉丝标签标签名已经存在, 请使用其它标签名!');
}
$wechat = WechatService::tags();
if (false === ($result = $wechat->createTags($name)) && isset($result['tag'])) {
$this->error("添加粉丝标签失败. {$wechat->errMsg}[{$wechat->errCode}]");
$this->error("添加粉丝标签失败. ");
}
$result['tag']['count'] = 0;
DataService::save($this->table, $result['tag'], 'id') && $this->success('添加粉丝标签成功!', '');
if (DataService::save($this->table, $result['tag'], 'id')) {
$this->success('添加粉丝标签成功!', '');
}
$this->error('粉丝标签添加失败, 请稍候再试!');
}
/**
* 编辑粉丝标签
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function edit()
{
@ -83,29 +100,56 @@ class Tags extends BasicAdmin
return parent::_form($this->table, 'form', 'id');
}
// 接收提交的数据
list($name, $id) = [$this->request->post('name', ''), $this->request->post('id', '0')];
$info = Db::name($this->table)->where('name', $name)->find();
$id = $this->request->post('id', '0');
$name = $this->request->post('name', '');
$info = Db::name($this->table)->where(['name' => $name])->find();
if (!empty($info)) {
if (intval($info['id']) === intval($id)) {
$this->error('粉丝标签名没有改变, 无需修改!');
}
$this->error('标签已经存在, 使用其它名称再试!');
}
$wechat = load_wechat('User');
$data = ['id' => $id, 'name' => $name];
if (false !== $wechat->updateTag($id, $name) && false !== DataService::save($this->table, $data, 'id')) {
$this->success('编辑标签成功!', '');
try {
WechatService::tags()->updateTags($id, $name);
DataService::save($this->table, ['id' => $id, 'name' => $name], 'id');
} catch (\Exception $e) {
$this->error('编辑标签失败, 请稍后再试!' . $e->getMessage());
}
$this->error('编辑标签失败, 请稍后再试!' . $wechat->errMsg);
$this->success('编辑标签成功!', '');
}
/**
* 删除粉丝标签
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function del()
{
$wechat = WechatService::tags();
foreach (explode(',', $this->request->post('id', '')) as $id) {
if ($wechat->deleteTags($id)) {
Db::name('WechatFansTags')->where(['id' => $id])->delete();
} else {
$this->error('移除粉丝标签失败,请稍候再试!');
}
}
$this->success('移除粉丝标签成功!', '');
}
/**
* 同步粉丝标签列表
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function sync()
{
Db::name($this->table)->where('1=1')->delete();
if (WechatService::syncFansTags()) {
if (TagsService::sync()) {
LogService::write('微信管理', '同步全部微信粉丝标签成功');
$this->success('同步获取所有粉丝标签成功!', '');
}

View File

@ -0,0 +1,256 @@
<?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 app\wechat\service\FansService;
use app\wechat\service\MediaService;
use service\DataService;
use service\WechatService;
use think\Db;
use think\Exception;
/**
* 微信接口控制器
* Class Api
* @package app\wechat\controller
* @author Anyon <zoujingli@qq.com>
*/
class Push
{
/**
* 当前公众号APPID
* @var string
*/
protected $appid;
/**
* 当前微信用户openid
* @var string
*/
protected $openid;
/**
* 当前微信消息对象
* @var array
*/
protected $receive;
/**
* 微信消息接口
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function __construct()
{
$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')) {
throw new Exception('微信API实例APPID验证失败.');
}
// text,event,image,location
if (method_exists($this, ($method = $this->receive['MsgType']))) {
$this->$method();
}
}
/**
* 文件消息处理
* @return bool
* @throws \Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function text()
{
return $this->keys("wechat_keys#keys#{$this->receive['Content']}");
}
/**
* 事件消息处理
* @return bool|string
* @throws \Exception
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
protected function event()
{
switch (strtolower($this->receive['Event'])) {
case 'subscribe':
$this->updateFansinfo(true);
if (isset($this->receive['EventKey']) && is_string($this->receive['EventKey'])) {
if (($key = preg_replace('/^qrscene_/i', '', $this->receive['EventKey']))) {
[$this->updateSpread($key), $this->keys("wechat_keys#keys#{$key}")];
}
}
return $this->keys('wechat_keys#keys#subscribe', true);
case 'unsubscribe':
return $this->updateFansinfo(false);
case 'click':
return $this->keys($this->receive['EventKey']);
case 'scancode_push':
case 'scancode_waitmsg':
if (isset($this->receive['ScanCodeInfo'])) {
$this->receive['ScanCodeInfo'] = (array)$this->receive['ScanCodeInfo'];
if (!empty($this->receive['ScanCodeInfo']['ScanResult'])) {
return $this->keys("wechat_keys#keys#{$this->receive['ScanCodeInfo']['ScanResult']}");
}
}
return false;
case 'scan':
if (!empty($this->receive['EventKey'])) {
return $this->keys("wechat_keys#keys#{$this->receive['EventKey']}");
}
return false;
}
return false;
}
/**
* 关键字处理
* @param string $rule 关键字规则
* @param bool $isLastReply 强制结束
* @return bool
* @throws \Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
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']]);
case 'keys':
$content = empty($info['content']) ? $info['name'] : $info['content'];
return $this->keys("wechat_keys#keys#{$content}");
case 'text':
return $this->sendMessage('text', ['content' => $info['content']]);
case 'news':
list($news, $data) = [MediaService::getNewsById($info['news_id']), []];
if (empty($news['articles'])) {
return false;
}
foreach ($news['articles'] as $vo) {
$url = url("@wechat/review", '', true, true) . "?content={$vo['id']}&type=article";
$data[] = ['url' => $url, 'title' => $vo['title'], 'picurl' => $vo['local_url'], 'description' => $vo['digest']];
}
return $this->sendMessage('news', ['articles' => $data]);
case 'music':
if (empty($info['music_url']) || empty($info['music_title']) || empty($info['music_desc'])) {
return false;
}
$media_id = empty($info['music_image']) ? '' : MediaService::uploadForeverMedia($info['music_image'], 'image');
$data = ['title' => $info['music_title'], 'description' => $info['music_desc'], 'musicurl' => $info['music_url'], 'hqmusicurl' => $info['music_url'], 'thumb_media_id' => $media_id];
return $this->sendMessage('music', $data);
case 'voice':
if (empty($info['voice_url']) || !($media_id = MediaService::uploadForeverMedia($info['voice_url'], 'voice'))) {
return false;
}
return $this->sendMessage('voice', ['media_id' => $media_id]);
case 'image':
if (empty($info['image_url']) || !($media_id = MediaService::uploadForeverMedia($info['image_url'], 'image'))) {
return false;
}
return $this->sendMessage('image', ['media_id' => $media_id]);
case 'video':
if (empty($info['video_url']) || empty($info['video_desc']) || empty($info['video_title'])) {
return false;
}
$videoData = ['title' => $info['video_title'], 'introduction' => $info['video_desc']];
if (!($media_id = MediaService::uploadForeverMedia($info['video_url'], 'video', $videoData))) {
return false;
}
$data = ['media_id' => $media_id, 'title' => $info['video_title'], 'description' => $info['video_desc']];
return $this->sendMessage('video', $data);
default:
return false;
}
}
/**
* 发送消息到公众号
* @param string $type 消息类型text|image|voice|video|music|news|mpnews|wxcard
* @param array $data 消息内容
* @return array|bool
* @throws \Exception
*/
protected function sendMessage($type, $data)
{
$msgData = ['touser' => $this->openid, 'msgtype' => $type, "{$type}" => $data];
return WechatService::custom()->send($msgData);
}
/**
* 更新推荐二维码关系
* @param string $key
* @return bool
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
protected function updateSpread($key)
{
// 检测推荐是否有效
$fans = Db::name('WechatFans')->where(['openid' => $key])->find();
if (empty($fans['openid']) || $fans['openid'] === $this->openid) {
return false;
}
// 标识推荐关系
$data = ['spread_openid' => $fans['openid'], 'spread_at' => date('Y-m-d H:i:s')];
$where = "openid='{$this->openid}' and (spread_openid is null or spread_openid='')";
return Db::name('WechatFans')->where($where)->update($data) !== false;
}
/**
* 同步粉丝状态
* @param bool $subscribe 关注状态
* @return string
* @throws \Exception
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
protected function updateFansinfo($subscribe = true)
{
if ($subscribe) {
$userInfo = WechatService::user()->getUserInfo($this->openid);
$userInfo['subscribe'] = intval($subscribe);
FansService::set($userInfo);
} else {
$fans = ['subscribe' => '0', 'openid' => $this->openid, 'appid' => $this->appid];
DataService::save('WechatFans', $fans, 'openid', ['appid' => $this->appid]);
}
}
}

View File

@ -0,0 +1,123 @@
<?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\service;
use service\DataService;
use service\ToolsService;
use service\WechatService;
use think\Db;
/**
* 微信粉丝数据服务
* Class FansService
* @package app\wechat
*/
class FansService
{
/**
* 增加或更新粉丝信息
* @param array $user
* @return bool
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function set(array $user)
{
$user['appid'] = sysconf('wechat_appid');
if (!empty($user['subscribe_time'])) {
$user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']);
}
if (isset($user['tagid_list']) && is_array($user['tagid_list'])) {
$user['tagid_list'] = join(',', $user['tagid_list']);
}
foreach (['country', 'province', 'city', 'nickname', 'remark'] as $field) {
isset($user[$field]) && $user[$field] = ToolsService::emojiEncode($user[$field]);
}
unset($user['privilege'], $user['groupid']);
return DataService::save('WechatFans', $user, 'openid');
}
/**
* 获取粉丝信息
* @param string $openid
* @return array
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function get($openid)
{
$map = ['openid' => $openid, 'appid' => sysconf('wechat_appid')];
$user = Db::name('WechatFans')->where($map)->find();
foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
isset($user[$k]) && $user[$k] = ToolsService::emojiDecode($user[$k]);
}
return $user;
}
/**
* 同步所有粉丝记录
* @param string $next_openid
* @return bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function sync($next_openid = '')
{
$wechat = WechatService::user();
$result = $wechat->getUserList($next_openid);
if (empty($result['data']['openid'])) {
return false;
}
foreach (array_chunk($result['data']['openid'], 100) as $openids) {
foreach ($wechat->getBatchUserInfo($openids)['user_info_list'] as $user) {
if (false === self::set($user)) {
return false;
}
if ($result['next_openid'] === $user['openid']) {
unset($result['next_openid']);
}
}
}
return empty($result['next_openid']) ? true : self::sync($result['next_openid']);
}
/**
* 同步获取黑名单信息
* @param string $next_openid
* @return bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function syncBlack($next_openid = '')
{
$wechat = WechatService::user();
$result = $wechat->getBlackList($next_openid);
foreach (array_chunk($result['data']['openid'], 100) as $openids) {
$info = $wechat->getBatchUserInfo($openids);
foreach ($info as $user) {
$user['is_black'] = '1';
if (self::set($user) && $result['next_openid'] === $user['openid']) {
unset($result['next_openid']);
}
}
}
return empty($result['next_openid']) ? true : self::syncBlack($result['next_openid']);
}
}

View File

@ -0,0 +1,101 @@
<?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\service;
use service\WechatService;
use think\Db;
/**
* 微信媒体文件管理
* Class MediaService
* @package app\wechat\service
*/
class MediaService
{
/**
* 通过图文ID读取图文信息
* @param int $id 本地图文ID
* @param array $where 额外的查询条件
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function getNewsById($id, $where = [])
{
$data = Db::name('WechatNews')->where(['id' => $id])->where($where)->find();
$article_ids = explode(',', $data['article_id']);
$articles = Db::name('WechatNewsArticle')->whereIn('id', $article_ids)->select();
$data['articles'] = [];
foreach ($article_ids as $article_id) {
foreach ($articles as $article) {
if (intval($article['id']) === intval($article_id)) {
unset($article['create_by'], $article['create_at']);
$article['content'] = htmlspecialchars_decode($article['content']);
$data['articles'][] = $article;
}
}
}
return $data;
}
/**
* 上传图片到微信服务器
* @param string $local_url 图文地址
* @return string
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public static function uploadImage($local_url)
{
$media_url = Db::name('WechatNewsImage')->where(['md5' => md5($local_url)])->value('media_url');
if (!empty($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);
return $info['url'];
}
/**
* 上传图片永久素材返回素材media_id
* @param string $local_url 文件URL地址
* @param string $type 文件类型
* @param array $video_info 视频信息
* @return string|null
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function uploadForeverMedia($local_url, $type = 'image', $video_info = [])
{
$map = ['md5' => md5($local_url), 'appid' => sysconf('wechat_appid')];
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);
$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);
return $data['media_id'];
}
}

View File

@ -0,0 +1,69 @@
<?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\service;
use service\DataService;
use service\WechatService;
use think\Db;
/**
* 粉丝标签服务
* Class TagsService
* @package app\wechat\service
*/
class TagsService
{
/**
* 同步粉丝的标签
* @param string $openid
* @return bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function syncTagsByOpenid($openid)
{
$tagsid = WechatService::tags()->getUserTagId($openid);
if (!is_array($tagsid)) {
return false;
}
$data = ['openid' => $openid, 'tagid_list' => join(',', $tagsid)];
return DataService::save('WechatFans', $data, 'openid', ['appid' => sysconf('wechat_appid')]);
}
/**
* 从微信服务器获取所有标签
* @return bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function sync()
{
$appid = sysconf('wechat_appid');
$result = WechatService::tags()->getTags();
Db::name('WechatFansTags')->where(['appid' => $appid])->delete();
foreach (array_chunk($result['tags'], 100) as $list) {
foreach ($list as &$vo) {
$vo['appid'] = $appid;
}
Db::name('WechatFansTags')->insertAll($list);
}
return true;
}
}

View File

@ -0,0 +1,160 @@
{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"}
<!-- 表单搜索 开始 -->
<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="nickname" placeholder="请输入昵称" autocomplete="off" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label"> </label>
<div class="layui-input-inline">
<select name="sex" class="layui-select">
<option value="">- 性别 -</option>
<!--{foreach [1=>'男',2=>'女'] as $key=>$sex}-->
<!--{if $Think.get.sex eq $key.''}-->
<option selected value="{$key}">- {$sex} -</option>
<!--{else}-->
<option value="{$key}">- {$sex} -</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label"> </label>
<div class="layui-input-inline">
<select name="tag" class="layui-select" lay-search="true">
<option value="">- 粉丝标签 -</option>
<!--{foreach $tags as $key=>$tag}-->
<!--{if $Think.get.tag eq $key}-->
<option selected value="{$key}">{$tag}</option>
<!--{else}-->
<option value="{$key}">{$tag}</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label"> </label>
<div class="layui-input-inline">
<input name="country" value="{$Think.get.country|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="province" value="{$Think.get.province|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="city" value="{$Think.get.city|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|default=''}" placeholder="关注时间" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</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" lay-skin="line">
<thead>
<tr>
<th class='list-table-check-td'>
<input data-auto-none="" data-check-target='.list-check-box' type='checkbox'/>
</th>
<th class='text-left'>用户昵称</th>
<th class='text-left'>性别</th>
<th class='text-left'>用户标签</th>
<th class='text-left'>所在区域</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'>
<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}"/>
{$vo.nickname|default='<span class="color-desc">未设置微信昵称</span>'}
</td>
<td class='text-left'>
{$vo.sex==1?'男':($vo.sex==2?'女':'未知')}
</td>
<td class="nowrap">
{if auth("$classuri/tagset")}
<span><a data-add-tag='{$vo.id}' data-used-id='{:join(",",array_keys($vo.tags_list))}' id="tag-fans-{$vo.id}" class='label label-default add-tag'>+</a></span>
{/if}
{if empty($vo.tags_list)}
<span class="color-desc">尚未设置标签</span>
{else}
{foreach $vo.tags_list as $k=>$tag}<span class="layui-badge layui-bg-gray margin-right-5">{$tag}</span>{/foreach}
{/if}
</td>
<td class='text-left nowrap'>
{$vo.country|default='<span class="color-desc">未设置区域信息</span>'|raw}{$vo.province}{$vo.city}
</td>
<td class='text-left nowrap'>{$vo.subscribe_at|format_datetime}</td>
<td class="text-center nowrap">
{if auth("$classuri/backdel")}<a data-update="{$vo.id}" data-action="{:url('backdel')}">移出黑名单</a>{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page|raw}</p>{/if}
<!--{/if}-->
</form>
{/block}
{block name="script"}
<!--表单初始化-->
<script>
window.laydate.render({range: true, elem: '#range-date'});
window.form.render();
</script>
<!--引入标签设置-->
{if auth("$classuri/tagset")}{include file='wechat@fans/tags_inc'}{/if}
{/block}

View File

@ -1,72 +0,0 @@
{extend name="extra@admin/content"}
{block name="content"}
<form onsubmit="return false;" action="__SELF__" data-auto="true" method="post" class='form-horizontal' style='padding-top:20px'>
<div class="form-group">
<label class="col-sm-2 control-label">URL <span class="nowrap">(服务器地址)</span></label>
<div class="col-sm-8">
<input onmouseenter="this.select()" class="layui-input" readonly="readonly" value="{:url('@wechat/api','',true,true)}"/>
<p class="help-block">
请复制此URL地址填写在公众号平台 [ 开发 >> 基本配置 ] [ URL ( 服务器地址 ) ]
<br/><b>注意</b>URL主域名必需备案微信服务接口只支持 80 端口 ( http ) 443 端口 ( https )
</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<label class="col-sm-2 control-label">AppID <span class="nowrap">(应用ID)</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="form-group">
<label class="col-sm-2 control-label">AppSecret <span class="nowrap">(应用密钥)</span></label>
<div class='col-sm-8'>
<input type="password" 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="form-group">
<label class="col-sm-2 control-label">Token <span class="nowrap">(令牌)</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="form-group">
<label class="col-sm-2 control-label">Encoding <span class="nowrap">AESKey</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="hr-line-dashed"></div>
<div class="col-sm-4 col-sm-offset-2">
<div class="layui-form-item text-center">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}

View File

@ -1,132 +0,0 @@
{extend name="extra@admin/content"}
{block name="style"}
<style>
.pay-qrc-test {height: 248px;width: 248px;background: url('__PUBLIC__/static/plugs/layui/css/modules/layer/default/loading-2.gif') no-repeat center center}
.refund-qrc-test{text-align: center;padding: 8px}
</style>
{/block}
{block name="content"}
<form onsubmit="return false;" action="__SELF__" data-auto="true" method="post" class='form-horizontal' style='padding-top:20px'>
<div class="form-group">
<label class="col-sm-2 control-label">MCH_ID <span class="nowrap">(商户ID)</span></label>
<div class='col-sm-8'>
<input type='tel' placeholder="请输入10位商户MCH_ID必填" title='请输入10位数字商户MCH_ID' required="required" pattern="^\d{10}$" maxlength='10' name='wechat_mch_id' value='{:sysconf("wechat_mch_id")}' class='layui-input'/>
<p class="help-block">
注意商户ID必需与微信接口配置公众号APPID对应否则无法使用支付功能
</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">PartnerKey <span class="nowrap">(商户密钥)</span></label>
<div class='col-sm-8'>
<input type='password' placeholder="请输入32位商户支付密钥必填" required title='请输入32位商户支付密钥' pattern="^.{32}$" maxlength="32" name='wechat_partnerkey' value='{:sysconf("wechat_partnerkey")}' class='layui-input'/>
<p class="help-block">
微信支付商户密钥需要在商户平台配置,必需填写密钥之后才能正常使用微信支付功能。
</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Apiclient <span class="nowrap">(双向证书)</span></label>
<div class="col-sm-8">
<div class="nowrap">
<input title="apiclient_key.pem" type="hidden" name="wechat_cert_key_md5">
<input title="apiclient_cert.pem" type="hidden" name="wechat_cert_cert_md5">
<button data-file="one" data-type="pem" data-field="wechat_cert_key_md5" data-uptype="local" type="button" class="layui-btn layui-btn-primary">
{if file_exists(sysconf('wechat_cert_key'))}
已上传 apiclient_key.pem
{else}
请上传 apiclient_key.pem
{/if}
</button>
<button data-file="one" data-type="pem" data-field="wechat_cert_cert_md5" data-uptype="local" type="button" class="layui-btn layui-btn-primary">
{if file_exists(sysconf('wechat_cert_cert'))}
已上传 apiclient_cert.pem
{else}
请上传 apiclient_cert.pem
{/if}
</button>
</div>
<p class="help-block">
企业打款、企业红包、订单退款等操作需要使用双向证书,可在<a href="https://pay.weixin.qq.com" target="_blank">微信商户平台</a>下载证书!
</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<div class="col-sm-4 col-sm-offset-2 text-center">
<button type="submit" class="layui-btn">保存配置</button>
<button type="button" data-pay-test class="layui-btn layui-btn-primary">支付测试</button>
</div>
</div>
</form>
{/block}
{block name="script"}
<script>
$(function () {
/* 证书上传动作 */
$('[name="wechat_cert_key_md5"],[name="wechat_cert_cert_md5"]').on('change', function () {
this.value = $(this).attr('data-md5');
$('[data-field="' + this.name + '"]').html('已选择 ' + this.title);
});
var isShow = false;
var timer = null;
var layIndex = 0;
/*! 支付测试动作 */
function payTest() {
$.form.load('{:url("pay")}?action=payqrc', {}, 'get', function (ret) {
if (ret.code === 1 || ret.code === 2) {
if (ret.code === 2) {
ret.url = '__PUBLIC__/static/theme/default/img/wechat/qrc_payed.jpg';
timer && window.clearInterval(timer), timer = null;
}
if (isShow) {
$('.pay-qrc-test').attr('src', ret.url)
} else {
layer.open({
type: 1, title: false, closeBtn: 1, shadeClose: true,
content: '<img class="pay-qrc-test" src="' + ret.url + '"/>'
+ '<p style="text-align:center">请用微信扫码测试支付!</p>'
+ '<p class="refund-qrc-test"><a class="btn btn-xs btn-warning">退款测试</a></p>',
end: function () {
timer && window.clearInterval(timer), timer = null;
isShow = false;
},
success: function (layero, index) {
isShow = true;
layIndex = index;
timer = setInterval(payTest, 3000);
}});
}
}
return false;
}, !isShow);
}
$('[data-pay-test]').on('click', payTest);
/*! 发起退款操作 */
$('body').on('click', '.refund-qrc-test a', function () {
$.form.load('{:url("pay")}?action=refund', {}, 'get', function (ret) {
if (ret.code === 1) {
timer && window.clearInterval(timer), timer = null;
return $.msg.success(ret.msg, 3, function () {
layer.close(layIndex);
}), false;
}
});
});
});
</script>
{/block}

View File

@ -0,0 +1,67 @@
{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'>
<!--{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">
<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>
</div>
<div class="hr-line-dashed"></div>
<!--{/if}-->
<div class="row form-group">
<label class="col-sm-2 control-label text-right">Authorize <span class="nowrap">(授权)</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 <span class="nowrap">(应用ID)</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>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">AppKey <span class="nowrap">(应用密钥)</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>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">AppUri <span class="nowrap">(接口通知)</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>
</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>
{/block}

View File

@ -1,201 +0,0 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-load="{:url('sync')}" class='layui-btn layui-btn-small'>同步粉丝</button>
</div>
<div class="nowrap pull-right" style="margin-top:10px;margin-right:10px">
<button data-update="" data-action="{:url('backdel')}" class='layui-btn layui-btn-small'>移出黑名单</button>
</div>
{/block}
{block name="content"}
<!-- 表单搜索 开始 -->
<form class="animated form-search" action="__SELF__" onsubmit="return false" method="get">
<div class="row">
<div class="col-xs-2">
<div class="form-group">
<input type="text" name="nickname" value="{$Think.get.nickname|default=''}" placeholder="昵称" class="input-sm form-control">
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<select name="sex" class="input-sm form-control">
<option value="">- 性别 -</option>
<!--{if $Think.get.sex eq 1}-->
<option selected value="1">- -</option>
<!--{else}-->
<option value="1">- -</option>
<!--{/if}-->
<!--{if $Think.get.sex eq 2}-->
<option selected value="2">- -</option>
<!--{else}-->
<option value="2">- -</option>
<!--{/if}-->
</select>
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<select name="tag" class="input-sm form-control">
<option value="">- 粉丝标签 -</option>
<!--{foreach $tags as $key=>$tag}-->
<!--{if $Think.get.tag eq $key}-->
<option selected value="{$key}">{$tag}</option>
<!--{else}-->
<option value="{$key}">{$tag}</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<input type="text" name="country" value="{$Think.get.country|default=''}" placeholder="国家" class="input-sm form-control">
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<input type="text" name="province" value="{$Think.get.province|default=''}" placeholder="省份" class="input-sm form-control">
</div>
</div>
<div class="col-xs-1">
<div class="form-group">
<button type="submit" class="btn btn-sm btn-white"><i class="fa fa-search"></i> 搜索</button>
</div>
</div>
</div>
</form>
<!-- 表单搜索 结束 -->
<form onsubmit="return false;" data-auto="" method="POST">
{if !empty($list)}
<input type="hidden" value="resort" name="action"/>
<table class="table table-hover">
<thead>
<tr>
<th class='list-table-check-td'>
<input data-none-auto="" data-check-target='.list-check-box' type='checkbox'/>
</th>
<th class='text-left'>用户昵称</th>
<th class='text-left'>性别</th>
<th class='text-center'>标签</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'>
<input class="list-check-box" value='{$vo.id}' type='checkbox'/>
</td>
<td class='text-left'>
<img style="width:25px;height:25px;border-radius:50%;margin-right:10px" data-tips-image src="{$vo.headimgurl}"/>
{$vo.nickname|default="<span style='color:#999'>未设置微信昵称</span>"}
</td>
<td class='text-left'>{$vo.sex==1?'男':($vo.sex==2?'女':'未知')}</td>
<td>
<span>
<a data-add-tag='{$vo.id}' data-used-id='{:join(",",array_keys($vo.tags_list))}' id="tag-fans-{$vo.id}" href='javascript:void(0)'
style='font-size:12px;font-weight:400;border-radius:50%;background:#9f9f9f' class='label label-default'>+</a>
</span>
{if empty($vo.tags_list)}
<span style='color:#999'>尚未设置标签</span>
{else}
{foreach $vo.tags_list as $k=>$tag}
<span>
<a href='javascript:void(0)' style='font-size:12px;font-weight:400;background:#9f9f9f' class='label label-default'>{$tag}</a>
</span>
{/foreach}
{/if}
</td>
<td class='text-left'>{$vo.country|default='<span style="color:#999">未设置区域信息</span>'}{$vo.province}{$vo.city}</td>
<td class='text-center'>{$vo.subscribe_at}</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
{else}
<p class="help-block">暂时无记录</p>
{/if}
</form>
<div id="tags-box" class="hide">
<form>
<div class="row" style='max-height:230px;overflow:auto;margin-right:0'>
{foreach $tags as $key=>$tag}
<div class="col-xs-4">
<label style="overflow:hidden;text-overflow:ellipsis;display:block;white-space:nowrap">
<input value="{$key}" type="checkbox" /> {$tag}
</label>
</div>
{/foreach}
</div>
<div class="text-center" style="margin-top:10px">
<div class="hr-line-dashed" style="margin-top:0"></div>
<button type="button" data-event="confirm" class="layui-btn layui-btn-small">保存数据</button>
<button type="button" data-event="cancel" class="layui-btn layui-btn-danger layui-btn-small" type='button'>取消编辑</button>
</div>
</form>
</div>
{/block}
{block name="script"}
{if auth("$classuri/tagset")}
<script>
// 添加标签
$('body').find('[data-add-tag]').map(function () {
var self = this;
var fans_id = this.getAttribute('data-add-tag');
var used_ids = (this.getAttribute('data-used-id') || '').split(',');
var $content = $(document.getElementById('tags-box').innerHTML);
for (var i in used_ids) {
$content.find('[value="' + used_ids[i] + '"]').attr('checked', 'checked');
}
$content.attr('fans_id', fans_id);
// 标签面板关闭
$content.on('click', '[data-event="cancel"]', function () {
$(self).popover('hide');
});
// 标签面板确定
$content.on('click', '[data-event="confirm"]', function () {
var tags = [];
$content.find('input:checked').map(function () {
tags.push(this.value);
});
$.form.load('{:url("tagset")}', {fans_id: $content.attr('fans_id'), 'tags': tags.join(',')}, 'post');
});
// 限制每个表单最多只能选择三个
$content.on('click', 'input', function () {
($content.find('input:checked').size() > 3) && (this.checked = false);
});
// 标签选择面板
$(this).data('content', $content).on('shown.bs.popover', function () {
$('[data-add-tag]').not(this).popover('hide');
}).popover({
html: true,
trigger: 'click',
content: $content,
title: '标签编辑(最多选择三个标签)',
template: '<div class="popover" style="max-width:500px" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content" style="width:500px"></div></div>'
});
});
</script>
{/if}
{/block}

View File

@ -1,207 +0,0 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-load="{:url('sync')}" class='layui-btn layui-btn-small'>同步粉丝</button>
</div>
<div class="nowrap pull-right" style="margin-top:10px;margin-right:10px">
<button data-update="" data-action="{:url('backadd')}" class='layui-btn layui-btn-small'>移入黑名单</button>
</div>
{/block}
{block name="content"}
<!-- 表单搜索 开始 -->
<form class="animated form-search" action="__SELF__" onsubmit="return false" method="get">
<div class="row">
<div class="col-xs-2">
<div class="form-group">
<input type="text" name="nickname" value="{$Think.get.nickname|default=''}" placeholder="昵称" class="input-sm form-control">
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<select name="sex" class="input-sm form-control">
<option value="">- 性别 -</option>
<!--{if $Think.get.sex eq 1}-->
<option selected value="1">- -</option>
<!--{else}-->
<option value="1">- -</option>
<!--{/if}-->
<!--{if $Think.get.sex eq 2}-->
<option selected value="2">- -</option>
<!--{else}-->
<option value="2">- -</option>
<!--{/if}-->
</select>
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<select name="tag" class="input-sm form-control">
<option value="">- 粉丝标签 -</option>
<!--{foreach $tags as $key=>$tag}-->
<!--{if $Think.get.tag eq $key}-->
<option selected value="{$key}">{$tag}</option>
<!--{else}-->
<option value="{$key}">{$tag}</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<input type="text" name="country" value="{$Think.get.country|default=''}" placeholder="国家" class="input-sm form-control">
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<input type="text" name="province" value="{$Think.get.province|default=''}" placeholder="省份" class="input-sm form-control">
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<input type="text" name="city" value="{$Think.get.city|default=''}" placeholder="城市" class="input-sm form-control">
</div>
</div>
<div class="col-xs-1">
<div class="form-group">
<button type="submit" class="btn btn-sm btn-white"><i class="fa fa-search"></i> 搜索</button>
</div>
</div>
</div>
</form>
<!-- 表单搜索 结束 -->
<form onsubmit="return false;" data-auto="" method="POST">
{if !empty($list)}
<input type="hidden" value="resort" name="action"/>
<table class="table table-hover">
<thead>
<tr>
<th class='list-table-check-td'>
<input data-none-auto="" data-check-target='.list-check-box' type='checkbox'/>
</th>
<th class='text-left'>用户昵称</th>
<th class='text-left'>性别</th>
<th class='text-center'>标签</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'>
<input class="list-check-box" value='{$vo.id}' type='checkbox'/>
</td>
<td class='text-left'>
<img style="width:25px;height:25px;border-radius:50%;margin-right:10px" data-tips-image src="{$vo.headimgurl}"/>
{$vo.nickname|default="<span style='color:#999'>未设置微信昵称</span>"}
</td>
<td class='text-left'>{$vo.sex==1?'男':($vo.sex==2?'女':'未知')}</td>
<td>
<span>
<a data-add-tag='{$vo.id}' data-used-id='{:join(",",array_keys($vo.tags_list))}' id="tag-fans-{$vo.id}" href='javascript:void(0)'
style='font-size:12px;font-weight:400;border-radius:50%;background:#9f9f9f' class='label label-default'>+</a>
</span>
{if empty($vo.tags_list)}
<span style='color:#999'>尚未设置标签</span>
{else}
{foreach $vo.tags_list as $k=>$tag}
<span>
<a href='javascript:void(0)' style='font-size:12px;font-weight:400;background:#9f9f9f' class='label label-default'>{$tag}</a>
</span>
{/foreach}
{/if}
</td>
<td class='text-left'>{$vo.country|default='<span style="color:#999">未设置区域信息</span>'}{$vo.province}{$vo.city}</td>
<td class='text-center'>{$vo.subscribe_at}</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
{else}
<p class="help-block">暂时无记录</p>
{/if}
</form>
<div id="tags-box" class="hide">
<form>
<div class="row" style='max-height:230px;overflow:auto;margin-right:0'>
{foreach $tags as $key=>$tag}
<div class="col-xs-4">
<label style="overflow:hidden;text-overflow:ellipsis;display:block;white-space:nowrap">
<input value="{$key}" type="checkbox" /> {$tag}
</label>
</div>
{/foreach}
</div>
<div class="text-center" style="margin-top:10px">
<div class="hr-line-dashed" style="margin-top:0"></div>
<button type="button" data-event="confirm" class="layui-btn layui-btn-small">保存数据</button>
<button type="button" data-event="cancel" class="layui-btn layui-btn-danger layui-btn-small" type='button'>取消编辑</button>
</div>
</form>
</div>
{/block}
{block name="script"}
{if auth("$classuri/tagset")}
<script>
// 添加标签
$('body').find('[data-add-tag]').map(function () {
var self = this;
var fans_id = this.getAttribute('data-add-tag');
var used_ids = (this.getAttribute('data-used-id') || '').split(',');
var $content = $(document.getElementById('tags-box').innerHTML);
for (var i in used_ids) {
$content.find('[value="' + used_ids[i] + '"]').attr('checked', 'checked');
}
$content.attr('fans_id', fans_id);
// 标签面板关闭
$content.on('click', '[data-event="cancel"]', function () {
$(self).popover('hide');
});
// 标签面板确定
$content.on('click', '[data-event="confirm"]', function () {
var tags = [];
$content.find('input:checked').map(function () {
tags.push(this.value);
});
$.form.load('{:url("tagset")}', {fans_id: $content.attr('fans_id'), 'tags': tags.join(',')}, 'post');
});
// 限制每个表单最多只能选择三个
$content.on('click', 'input', function () {
($content.find('input:checked').size() > 3) && (this.checked = false);
});
// 标签选择面板
$(this).data('content', $content).on('shown.bs.popover', function () {
$('[data-add-tag]').not(this).popover('hide');
}).popover({
html: true,
trigger: 'click',
content: $content,
title: '标签编辑(最多选择三个标签)',
template: '<div class="popover" style="max-width:500px" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content" style="width:500px"></div></div>'
});
});
</script>
{/if}
{/block}

View File

@ -0,0 +1,160 @@
{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"}
<!-- 表单搜索 开始 -->
<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="nickname" placeholder="请输入昵称" autocomplete="off" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label"> </label>
<div class="layui-input-inline">
<select name="sex" class="layui-select">
<option value="">- 性别 -</option>
<!--{foreach [1=>'男',2=>'女'] as $key=>$sex}-->
<!--{if $Think.get.sex eq $key.''}-->
<option selected value="{$key}">- {$sex} -</option>
<!--{else}-->
<option value="{$key}">- {$sex} -</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label"> </label>
<div class="layui-input-inline">
<select name="tag" class="layui-select" lay-search="true">
<option value="">- 粉丝标签 -</option>
<!--{foreach $tags as $key=>$tag}-->
<!--{if $Think.get.tag eq $key}-->
<option selected value="{$key}">{$tag}</option>
<!--{else}-->
<option value="{$key}">{$tag}</option>
<!--{/if}-->
<!--{/foreach}-->
</select>
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label"> </label>
<div class="layui-input-inline">
<input name="country" value="{$Think.get.country|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="province" value="{$Think.get.province|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="city" value="{$Think.get.city|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|default=''}" placeholder="关注时间" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</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" 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='text-left'>用户昵称</th>
<th class='text-left'>性别</th>
<th class='text-left'>标签</th>
<th class='text-left'>区域</th>
<th class='text-left'>关注时间</th>
<th></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='text-left nowrap'>
<img data-tips-image class="headimg" src="{$vo.headimgurl}"/>
{$vo.nickname|default='<span class="color-desc">未设置微信昵称</span>'}
</td>
<td class='text-left'>
{$vo.sex==1?'男':($vo.sex==2?'女':'未知')}
</td>
<td class="nowrap nowrap">
{if auth("$classuri/tagset")}
<span><a data-add-tag='{$vo.id}' data-used-id='{:join(",",array_keys($vo.tags_list))}' id="tag-fans-{$vo.id}" class='label label-default add-tag'>+</a></span>
{/if}
{if empty($vo.tags_list)}
<span class="color-desc">尚未设置标签</span>
{else}
{foreach $vo.tags_list as $k=>$tag}<span class="layui-badge layui-bg-gray margin-right-5">{$tag}</span>{/foreach}
{/if}
</td>
<td class='text-left nowrap'>
{$vo.country|default='<span class="color-desc">未设置区域信息</span>'|raw}{$vo.province}{$vo.city}
</td>
<td class='text-left nowrap'>{$vo.subscribe_at|format_datetime}</td>
<td class="text-center nowrap">
{if auth("$classuri/backdel")}<a data-update="{$vo.id}" data-action="{:url('backadd')}">拉黑</a>{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page|raw}</p>{/if}
<!--{/if}-->
</form>
{/block}
{block name="script"}
<!--表单初始化-->
<script>
window.laydate.render({range: true, elem: '#range-date'});
window.form.render();
</script>
<!--引入标签设置-->
{if auth("$classuri/tagset")}{include file='wechat@fans/tags_inc'}{/if}
{/block}

View File

@ -0,0 +1,80 @@
<style>
.headimg {
width: 25px;
height: 25px;
border-radius: 50%;
margin-right: 10px;
}
.add-tag {
font-size: 12px;
font-weight: 400;
border-radius: 50%;
color: #333;
background: #eee;
border: 1px solid #ddd;
}
.add-tag:hover {
color: #000 !important;
border: 1px solid #ccc;
}
</style>
<div id="tags-box" class="hide">
<form>
<div class="row margin-right-0" style='max-height:230px;overflow:auto;'>
{foreach $tags as $key=>$tag}
<div class="col-xs-4">
<label class="layui-elip block"><input value="{$key}" type="checkbox"/> {$tag}</label>
</div>
{/foreach}
</div>
<div class="text-center margin-top-10">
<div class="hr-line-dashed margin-top-0"></div>
<button type="button" data-event="confirm" class="layui-btn layui-btn-sm">保存数据</button>
<button type="button" data-event="cancel" class="layui-btn layui-btn-sm layui-btn-danger">取消编辑</button>
</div>
</form>
</div>
<script>
// 添加标签
$('body').find('[data-add-tag]').map(function () {
var self = this;
var fans_id = this.getAttribute('data-add-tag');
var used_ids = (this.getAttribute('data-used-id') || '').split(',');
var $content = $(document.getElementById('tags-box').innerHTML);
for (var i in used_ids) {
$content.find('[value="' + used_ids[i] + '"]').attr('checked', 'checked');
}
$content.attr('fans_id', fans_id);
// 标签面板关闭
$content.on('click', '[data-event="cancel"]', function () {
$(self).popover('hide');
});
// 标签面板确定
$content.on('click', '[data-event="confirm"]', function () {
var tags = [];
$content.find('input:checked').map(function () {
tags.push(this.value);
});
$.form.load('{:url("@wechat/fans/tagset")}', {fans_id: $content.attr('fans_id'), 'tags': tags.join(',')}, 'post');
});
// 限制每个表单最多只能选择三个
$content.on('click', 'input', function () {
($content.find('input:checked').size() > 3) && (this.checked = false);
});
// 标签选择面板
$(this).data('content', $content).on('shown.bs.popover', function () {
$('[data-add-tag]').not(this).popover('hide');
}).popover({
html: true,
trigger: 'click',
content: $content,
title: '标签编辑(最多选择三个标签)',
template: '<div class="popover" style="max-width:500px" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content" style="width:500px"></div></div>'
});
});
</script>

View File

@ -1,203 +0,0 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-open="{:url('add')}" class='layui-btn layui-btn-small'>添加规则</button>
<button data-update data-field='delete' data-action='{:url("$classuri/del")}'
class='layui-btn layui-btn-small layui-btn-danger'>删除规则
</button>
</div>
{/block}
{block name='content'}
<form onsubmit="return false;" data-auto="true" action="__SELF__" method="post">
{if !empty($list)}
<input type="hidden" value="resort" name="action"/>
<table class="table table-hover">
<thead>
<tr>
<th class='list-table-check-td'>
<input data-none-auto="" 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-mini"> </button>
</th>
<th class="text-left">关键字</th>
<th class="text-center">回复类型</th>
<th class="text-center">回复内容</th>
<th class="text-center">更新时间</th>
<th class="text-center">状态</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.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">
{if !empty($vo.qrc)}
<i class="fa fa-qrcode fa-lg pointer" data-tips-image="{$vo.qrc}" data-tips-text="关键字二维码"></i>
{/if}
{$vo.keys}
</td>
<td class="text-center">{$vo.type}</td>
<td class="text-center">
{if $vo.type eq '音乐'}
<a data-phone-view='{:url("@wechat/review")}?type=music&title={$vo.music_title|urlencode}&desc={$vo.music_desc|urlencode}'
class="btn btn-link"><i class="fa fa-eye"></i> 预览
</a>
{elseif $vo.type eq '文字'}
<a data-phone-view='{:url("@wechat/review")}?type=text&content={$vo.content|urlencode}'
class="btn btn-link"><i class="fa fa-eye"></i> 预览
</a>
{elseif $vo.type eq '图片'}
<a data-phone-view='{:url("@wechat/review")}?type=image&content={$vo.image_url|urlencode}'
class="btn btn-link"><i class="fa fa-eye"></i> 预览
</a>
{elseif $vo.type eq '图文'}
<a data-phone-view='{:url("@wechat/review")}?type=news&content={$vo.news_id}'
class="btn btn-link"><i class="fa fa-eye"></i> 预览
</a>
{elseif $vo.type eq '视频'}
<a data-phone-view='{:url("@wechat/review")}?type=video&title={$vo.video_title|urlencode}&desc={$vo.video_desc|urlencode}&url={$vo.video_url|urlencode}'
class="btn btn-link"><i class="fa fa-eye"></i> 预览
</a>
{else}
{$vo.content}
{/if}
</td>
<td class="text-center">{$vo.create_at}</td>
<td class='text-center'>
{if $vo.status eq 0}
<span>已禁用</span>
{elseif $vo.status eq 1}
<span style="color:#090">使用中</span>
{/if}
</td>
<td class='text-center nowrap'>
{if auth("$classuri/edit")}
<span class="text-explode">|</span>
<a data-open='{:url("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")}'
href="javascript:void(0)">禁用</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")}'
href="javascript:void(0)">启用</a>
{/if}
{if auth("$classuri/del")}
<span class="text-explode">|</span>
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("del")}'
href="javascript:void(0)">删除</a>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
{else}
<p class="help-block">暂时无记录</p>
{/if}
</form>
{/block}
{block name="script"}
<script>
$(function () {
/**
* 默认类型事件
* @type String
*/
$('body').off('change', 'select[name=type]').on('change', 'select[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) {
case 'news':
return $('[name="news_id"]').trigger('change');
case 'text':
return $('[name="content"]').trigger('change');
case 'image':
return $('[name="image_url"]').trigger('change');
case 'video':
return $('[name="video_url"]').trigger('change');
case 'music':
return $('[name="music_url"]').trigger('change');
case 'voice':
return $('[name="voice_url"]').trigger('change');
}
});
function showReview(params) {
params = params || {};
$('#phone-preview').attr('src', '{"@wechat/review"|app_url}&' + $.param(params));
}
// 图文显示预览
$('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="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');
params.title = $parent.find('[name="music_title"]').val();
params.url = $parent.find('[name="music_url"]').val();
params.image = $parent.find('[name="music_image"]').val();
params.desc = $parent.find('[name="music_desc"]').val();
showReview(params);
});
// 视频显示预览
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');
params.title = $parent.find('[name="video_title"]').val();
params.url = $parent.find('[name="video_url"]').val();
params.desc = $parent.find('[name="video_desc"]').val();
showReview(params);
});
// 默认事件触发
$('select[name=type]').map(function () {
$(this).trigger('change');
});
/*! 删除关键字 */
$('[data-delete]').on('click', function () {
var id = this.getAttribute('data-delete');
var url = this.getAttribute('data-action');
$.msg.confirm('确定要删除这条记录吗?', function () {
$.form.load(url, {id: id}, 'POST', function (ret) {
if (ret.code === "SUCCESS") {
window.location.reload();
}
});
})
});
});
</script>
{/block}

View File

@ -1,296 +1,292 @@
{extend name='extra@admin/content'}
{block name="style"}
<style>
.layui-box .control-label {margin:0;padding-left:0;padding-right:0;}
.layui-box textarea {width: 95%}
</style>
{/block}
{block name="content"}
<!-- 效果预览区域 开始 -->
<div class='mobile-preview pull-left'>
<div class='mobile-header'>公众号</div>
<div class='mobile-body'>
<iframe id="phone-preview" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<!-- 效果预览区域 结束 -->
<div class="row" style="min-width:800px">
<div class='col-xs-6' style="margin-left:15px">
<form class="form-horizontal" role="form" data-auto="true" action="__SELF__" method="post">
<fieldset class="layui-elem-field layui-box" style="height:580px;position:absolute;width:535px">
<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="required" title='请输入关键字' maxlength='20' name='keys' class="layui-input" value='{$vo.keys|default=""}'>
</div>
</div>
{else}
<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" style='padding-bottom:0'>
{if !isset($vo.status) or $vo.status neq 0}
<label class="layui-form-label">
<input data-none-auto type="radio" checked name="status" value="1"> 启用
</label>
<label class="layui-form-label">
<input data-none-auto type="radio" name="status" value="0"> 禁用
</label>
{else}
<label class="layui-form-label">
<input data-none-auto type="radio" name="status" value="1"> 启用
</label>
<label class="layui-form-label">
<input data-none-auto type="radio" checked name="status" value="0"> 禁用
</label>
{/if}
</div>
</div>
</div>
{/if}
<div class="form-group">
<label class="col-md-2 control-label layui-form-label label-required">消息类型</label>
<div class="col-md-9">
<select name='type' class='layui-input'>
<!--{if !isset($vo.type) or $vo.type eq 'text'}-->
<option value='text' selected>文字</option>
<!--{else}-->
<option value='text'>文字</option>
<!--{/if}-->
<!--{if isset($vo.type) and $vo.type eq 'news'}-->
<option value='news' selected>图文</option>
<!--{else}-->
<option value='news'>图文</option>
<!--{/if}-->
<!--{if isset($vo.type) and $vo.type eq 'image'}-->
<option value='image' selected>图片</option>
<!--{else}-->
<option value='image'>图片</option>
<!--{/if}-->
<!--{if isset($vo.type) and $vo.type eq 'voice'}-->
<!--<option value='voice' selected>语音</option>-->
<!--{else}-->
<!--<option value='voice'>语音</option>-->
<!--{/if}-->
<!--{if isset($vo.type) and $vo.type eq 'music'}-->
<option value='music' selected>音乐</option>
<!--{else}-->
<option value='music'>音乐</option>
<!--{/if}-->
<!--{if isset($vo.type) and $vo.type eq 'video'}-->
<option value='video' selected>视频</option>
<!--{else}-->
<option value='video'>视频</option>
<!--{/if}-->
</select>
</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" style="height:100px">{$vo.content|default='说点什么吧'}</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-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='__PUBLIC__/static/theme/default/img/image.png'}"
name="image_url" required="required" title="请上传图片或输入图片URL地址"/>
<p class="help-block">文件最大2Mb支持bmp/png/jpeg/jpg/gif格式</p>
<img style="width:112px;height:auto;" data-tips-image src='{$vo.image_url|default="__PUBLIC__/static/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="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-file"></i></a>
</div>
<p class="help-block">文件最大2Mb播放长度不超过60smp3/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="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="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-file"></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='音乐描述'}"/>
</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='__PUBLIC__/static/theme/default/img/image.png'}"
name="music_image" required="required" title="请上传音乐图片或输入音乐图片URL地址  "/>
<p class="help-block">文件最大64KB只支持JPG格式</p>
<img style="width:112px;height:auto;" data-tips-image src='{$vo.music_image|default="__PUBLIC__/static/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="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="required" title="请上传音乐视频或输入音乐视频URL地址  "/>
<a data-file="one" data-type="mp4" data-field="video_url" class="input-group-addon"><i class="fa fa-file"></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" style="height:100px">{$vo.video_desc|default='视频描述'}</textarea>
</div>
</div>
<div class="text-center" style="position:absolute;bottom:20px;width:100%;">
<div class="hr-line-dashed"></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>
</fieldset>
</form>
</div>
</div>
{/block}
{block name="script"}
<script>
$(function () {
/*! 取消编辑 */
$('[data-cancel-edit]').on('click', function () {
$.msg.confirm('确定取消编辑吗?', function () {
history.back();
});
});
/*! 默认类型事件 */
$('body').off('change', 'select[name=type]').on('change', 'select[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) {
case 'news':
return $('[name="news_id"]').trigger('change');
case 'text':
return $('[name="content"]').trigger('change');
case 'image':
return $('[name="image_url"]').trigger('change');
case 'video':
return $('[name="video_url"]').trigger('change');
case 'music':
return $('[name="music_url"]').trigger('change');
case 'voice':
return $('[name="voice_url"]').trigger('change');
}
});
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="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});
});
// 音乐显示预览
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');
params.title = $parent.find('[name="music_title"]').val();
params.url = $parent.find('[name="music_url"]').val();
params.image = $parent.find('[name="music_image"]').val();
params.desc = $parent.find('[name="music_desc"]').val();
showReview(params);
});
// 视频显示预览
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');
params.title = $parent.find('[name="video_title"]').val();
params.url = $parent.find('[name="video_url"]').val();
params.desc = $parent.find('[name="video_desc"]').val();
showReview(params);
});
// 默认事件触发
$('select[name=type]').map(function () {
$(this).trigger('change');
});
});
</script>
{extend name='admin@public/content'}
{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;
}
</style>
{/block}
{block name="content"}
<!-- 效果预览区域 开始 -->
<div class='mobile-preview pull-left'>
<div class='mobile-header'>公众号</div>
<div class='mobile-body'>
<iframe id="phone-preview" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<!-- 效果预览区域 结束 -->
<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">
<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>
</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}
<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-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='说点什么吧'}</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播放长度不超过60smp3/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='音乐描述'}">
</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='视频描述'}</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>
</fieldset>
</form>
</div>
</div>
{/block}
{block name="script"}
<script>
$(function () {
var $body = $('body');
/*! 取消编辑 */
$('[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 || {}));
}
// 图文显示预览
$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="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');
params.title = $parent.find('[name="music_title"]').val();
params.url = $parent.find('[name="music_url"]').val();
params.image = $parent.find('[name="music_image"]').val();
params.desc = $parent.find('[name="music_desc"]').val();
showReview(params);
});
// 视频显示预览
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');
params.title = $parent.find('[name="video_title"]').val();
params.url = $parent.find('[name="video_url"]').val();
params.desc = $parent.find('[name="video_desc"]').val();
showReview(params);
});
/*! 默认类型事件 */
$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) {
case 'news':
return $('[name="news_id"]').trigger('change');
case 'text':
return $('[name="content"]').trigger('change');
case 'image':
return $('[name="image_url"]').trigger('change');
case 'video':
return $('[name="video_url"]').trigger('change');
case 'music':
return $('[name="music_url"]').trigger('change');
case 'voice':
return $('[name="voice_url"]').trigger('change');
}
});
// 默认事件触发
$('input[name=type]:checked').map(function () {
$(this).trigger('click');
});
});
</script>
{/block}

View File

@ -0,0 +1,187 @@
{extend name='admin@public/content'}
{block name="button"}
<!--{if auth("$classuri/add")}-->
<button data-open="{:url('add')}" 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" action="{:request()->url()}" 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="" 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 nowrap">状态</th>
<th></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">
{if !empty($vo.qrc)}<i class="fa fa-qrcode fa-lg pointer" data-tips-image="{$vo.qrc}" data-tips-text="关键字二维码"></i>{/if}
{$vo.keys}
</td>
<td class="text-left nowrap">{$vo.type}</td>
<td class="text-left nowrap">
{if $vo.type eq '音乐'}
<a data-phone-view='{:url("@wechat/review")}?type=music&title={$vo.music_title|urlencode}&desc={$vo.music_desc|urlencode}'>预览 <i class="fa fa-eye"></i></a>
{elseif $vo.type eq '文字'}
<a data-phone-view='{:url("@wechat/review")}?type=text&content={$vo.content|urlencode}'>预览 <i class="fa fa-eye"></i></a>
{elseif $vo.type eq '图片'}
<a data-phone-view='{:url("@wechat/review")}?type=image&content={$vo.image_url|urlencode}'>预览 <i class="fa fa-eye"></i></a>
{elseif $vo.type eq '图文'}
<a data-phone-view='{:url("@wechat/review")}?type=news&content={$vo.news_id}'>预览 <i class="fa fa-eye"></i></a>
{elseif $vo.type eq '视频'}
<a data-phone-view='{:url("@wechat/review")}?type=video&title={$vo.video_title|urlencode}&desc={$vo.video_desc|urlencode}&url={$vo.video_url|urlencode}'>预览 <i class="fa fa-eye"></i></a>
{else}
{$vo.content}
{/if}
</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-desc">已禁用</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-open='{:url("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("del")}'>删除</a>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
{if isset($page)}<p>{$page|raw}</p>{/if}
{/if}
</form>
{/block}
{block name="script"}
<script>
$(function () {
/**
* 默认类型事件
* @type String
*/
$('body').off('change', 'select[name=type]').on('change', 'select[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) {
case 'news':
return $('[name="news_id"]').trigger('change');
case 'text':
return $('[name="content"]').trigger('change');
case 'image':
return $('[name="image_url"]').trigger('change');
case 'video':
return $('[name="video_url"]').trigger('change');
case 'music':
return $('[name="music_url"]').trigger('change');
case 'voice':
return $('[name="voice_url"]').trigger('change');
}
});
function showReview(params) {
params = params || {};
$('#phone-preview').attr('src', '{"@wechat/review"|app_url}&' + $.param(params));
}
// 图文显示预览
$('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="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');
params.title = $parent.find('[name="music_title"]').val();
params.url = $parent.find('[name="music_url"]').val();
params.image = $parent.find('[name="music_image"]').val();
params.desc = $parent.find('[name="music_desc"]').val();
showReview(params);
});
// 视频显示预览
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');
params.title = $parent.find('[name="video_title"]').val();
params.url = $parent.find('[name="video_url"]').val();
params.desc = $parent.find('[name="video_desc"]').val();
showReview(params);
});
// 默认事件触发
$('select[name=type]').map(function () {
$(this).trigger('change');
});
/*! 删除关键字 */
$('[data-delete]').on('click', function () {
var id = this.getAttribute('data-delete');
var url = this.getAttribute('data-action');
var dialogIndex = $.msg.confirm('确定要删除这条记录吗?', function () {
$.form.load(url, {id: id}, 'post', function (ret) {
if (ret.code === "SUCCESS") {
window.location.reload();
}
$.msg.close(dialogIndex);
});
})
});
});
</script>
{/block}

View File

@ -1,347 +1,333 @@
{extend name='extra@admin/content'}
{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;
border-radius: 0;
border-color: #e7e7eb;
box-shadow: none
}
.menu-editor .arrow {
top: auto !important;
bottom: 15px
}
.menu-editor .popover-title {
margin-top: 0
}
.menu-delete {
font-weight: 400;
font-size: 12px;
}
.menu-submit {
margin-right: 10px
}
</style>
{/block}
{block name='content'}
<div class='mobile-preview pull-left'>
<div class='mobile-header'>公众号</div>
<div class='mobile-body'></div>
<ul class='mobile-footer'>
<!--{foreach $list as $menu}-->
<li class="parent-menu">
<a>
<i class="icon-sub hide"></i>
<span data-type="{$menu.type}" data-content="{$menu.content}">{$menu.name}</span>
</a>
<div class="sub-menu text-center hide">
<ul>
<!--{if empty($menu['sub']) eq false}-->
<!--{foreach $menu.sub as $submenu}-->
<li>
<a class="bottom-border">
<span data-type="{$submenu.type}" data-content="{$submenu.content}">{$submenu.name}</span>
</a>
</li>
<!--{/foreach}-->
<!--{/if}-->
<li class="menu-add"><a><i class="icon-add"></i></a></li>
</ul>
<i class="arrow arrow_out"></i>
<i class="arrow arrow_in"></i>
</div>
</li>
<!--{/foreach}-->
<li class="parent-menu menu-add">
<a><i class="icon-add"></i></a>
</li>
</ul>
</div>
<div class="pull-left" style="position:absolute">
<div class="popover fade right up in menu-editor">
<div class="arrow"></div>
<h3 class="popover-title">
菜单名称
{if auth("$classuri/edit")}
<a class="pull-right menu-delete">删除</a>
{/if}
</h3>
<div class="popover-content menu-content"></div>
</div>
</div>
<div class="hide menu-editor-parent-tpl">
<form class="form-horizontal">
<p>已添加子菜单,仅可设置菜单名称。</p>
<div class="form-group" style="margin-top:50px">
<label class="col-xs-3 control-label">菜单名称</label>
<div class="col-xs-6">
<input name="menu-name" class="form-control input-sm">
<span class="help-block m-b-none">字数不超过5个汉字或16个字母</span>
</div>
</div>
</form>
</div>
<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="col-xs-6">
<input name="menu-name" class="form-control input-sm">
<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="col-xs-8">
<div class="row">
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="text"> 文字消息
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="keys"> 关键字
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="view"> 跳转网页
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="event"> 事件功能
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="miniprogram"> 小程序
</label>
<label class="col-xs-5 font-noraml">
<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="col-xs-10 col-xs-offset-1 editor-content-input"></div>
</div>
</form>
</div>
<div style="clear:both"></div>
<div style="width:830px;padding-top:40px;text-align:center">
{if auth("$classuri/edit")}
<button class="layui-btn menu-submit">保存发布</button>
{/if}
{if auth("$classuri/cancel")}
<button data-load='{:url("$classuri/cancel")}' class="layui-btn layui-btn-danger">取消发布</button>
{/if}
</div>
{/block}
{block name="script"}
<script>
$(function () {
var menu = function () {
this.$btn;
this.listen();
};
menu.prototype.listen = function () {
var self = this;
$('.mobile-footer').on('click', 'li a', function () {
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 () {
var index = $.msg.confirm('删除后菜单下设置的内容将被删除!', function () {
self.del(), $.msg.close(index);
});
});
$('.menu-submit').on('click', function () {
self.submit();
});
};
menu.prototype.add = function () {
var $add = this.$btn.parent('li'), $ul = $add.parent('ul');
if ($ul.hasClass('mobile-footer')) { /* 添加一级菜单 */
var $li = $('<li class="parent-menu"><a class="active"><i class="icon-sub hide"></i> <span>一级菜单</span></a></li>').insertBefore($add);
this.$btn = $li.find('a');
$('<div class="sub-menu text-center hide"><ul><li class="menu-add"><a><i class="icon-add"></i></a></li></ul><i class="arrow arrow_out"></i><i class="arrow arrow_in"></i></div>').appendTo($li);
} else { /* 添加二级菜单 */
this.$btn = $('<li><a class="bottom-border"><span>二级菜单</span></a></li>').prependTo($ul).find('a');
}
this.checkShow();
};
menu.prototype.checkShow = function () {
var $li = this.$btn.parent('li'), $ul = $li.parent('ul');
/* 选中一级菜单时显示二级菜单 */
if ($li.hasClass('parent-menu')) {
$('.parent-menu .sub-menu').not(this.$btn.parent('li').find('.sub-menu').removeClass('hide')).addClass('hide');
}
/* 一级菜单添加按钮 */
var $add = $('li.parent-menu:last');
$add.siblings('li').size() >= 3 ? $add.addClass('hide') : $add.removeClass('hide');
/* 二级菜单添加按钮 */
$add.siblings('li').map(function () {
var $add = $(this).find('ul li:last');
$add.siblings('li').size() >= 5 ? $add.addClass('hide') : $add.removeClass('hide');
});
/* 处理一级菜单 */
var parentWidth = 100 / $('li.parent-menu:visible').size() + '%';
$('li.parent-menu').map(function () {
var $icon = $(this).find('.icon-sub');
$(this).width(parentWidth).find('ul li').size() > 1 ? $icon.removeClass('hide') : $icon.addClass('hide');
});
/* 更新选择中状态 */
$('.mobile-footer a.active').not(this.$btn.addClass('active')).removeClass('active');
this.renderEdit();
return $ul;
};
menu.prototype.del = function () {
var $li = this.$btn.parent('li'), $ul = $li.parent('ul');
var $default = function () {
if ($li.prev('li').size() > 0) {
return $li.prev('li');
}
if ($li.next('li').size() > 0 && !$li.next('li').hasClass('menu-add')) {
return $li.next('li');
}
if ($ul.parents('li.parent-menu').size() > 0) {
return $ul.parents('li.parent-menu');
}
return $('null');
}.call(this);
$li.remove();
this.$btn = $default.find('a:first');
this.checkShow();
};
menu.prototype.renderEdit = function () {
var $span = this.$btn.find('span'), $li = this.$btn.parent('li'), $ul = $li.parent('ul'), $html = '';
if ($li.find('ul li').size() > 1) { /*父菜单*/
$html = $($('.menu-editor-parent-tpl').html());
$html.find('input[name="menu-name"]').val($span.text()).on('change keyup', function () {
$span.text(this.value || ' ');
});
$('.menu-editor .menu-content').html($html);
} else {
$html = $($('.menu-editor-content-tpl').html());
$html.find('input[name="menu-name"]').val($span.text()).on('change keyup', function () {
$span.text(this.value || ' ');
});
$('.menu-editor .menu-content').html($html);
var type = $span.attr('data-type') || 'text';
$html.find('input[name="menu-type"]').on('click', function () {
$span.attr('data-type', this.value || 'text');
var type = this.value, content = $span.data('content') || '请输入内容';
var html = function () {
switch (type) {
case 'miniprogram':
var tpl = '\
<div>\
<div>appid<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{appid}" name="appid"></div>\
<div>url<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{url}" name="url"></div>\
<div>pagepath<input style="display:block" name="pagepath" class="form-control input-sm" value={pagepath}></div>\
</div>';
var _appid = '', _pagepath = '', _url = '';
if (content.indexOf(',') > 0) {
_appid = content.split(',')[0] || '';
_url = content.split(',')[1] || '';
_pagepath = content.split(',')[2] || '';
}
$span.data('appid', _appid), $span.data('url', _url), $span.data('pagepath', _pagepath);
return tpl.replace('{appid}', _appid).replace('{url}', _url).replace('{pagepath}', _pagepath);
case 'customservice':
case 'text':
return '<div>回复内容<textarea style="resize:none;height:225px" name="content" class="form-control input-sm">{content}</textarea></div>'.replace('{content}', content);
case 'view':
return '<div>跳转地址<textarea style="resize:none;height:225px" name="content" class="form-control input-sm">{content}</textarea></div>'.replace('{content}', content);
case 'keys':
return '<div>匹配内容<textarea style="resize:none;height:225px" name="content" class="form-control input-sm">{content}</textarea></div>'.replace('{content}', content);
case 'event':
var options = {
'scancode_push': '扫码推事件',
'scancode_waitmsg': '扫码推事件且弹出“消息接收中”提示框',
'pic_sysphoto': '弹出系统拍照发图',
'pic_photo_or_album': '弹出拍照或者相册发图',
'pic_weixin': '弹出微信相册发图器',
'location_select': '弹出地理位置选择器'
};
var select = [],
tpl = '<div><label class="font-noraml"><input class="cuci-radio" name="content" type="radio" {checked} value="{value}"> {title}</label></div>';
if (!(options[content] || false)) {
content = 'scancode_push';
$span.data('content', content);
}
for (var i in options) {
select.push(tpl.replace('{value}', i).replace('{title}', options[i]).replace('{checked}', (i === content) ? 'checked' : ''));
}
return select.join('');
}
}.call(this);
var $html = $(html), $input = $html.find('input,textarea');
$input.on('change keyup click', function () {
// 将input值写入到span上
$span.data(this.name, $(this).val() || $(this).html());
// 如果是小程序合并内容到span的content上
if (type === 'miniprogram') {
$span.data('content', $span.data('appid') + ',' + $span.data('url') + ',' + $span.data('pagepath'));
}
});
$('.editor-content-input').html($html);
}).filter('input[value="{type}"]'.replace('{type}', type)).trigger('click');
}
};
menu.prototype.submit = function () {
var data = [];
$('li.parent-menu').map(function (index, item) {
if (!$(item).hasClass('menu-add')) {
var menudata = getdata($(item).find('a:first span'));
menudata.index = index + 1;
menudata.pindex = 0;
menudata.sub = [];
menudata.sort = index;
data.push(menudata);
$(item).find('.sub-menu ul li:not(.menu-add) span').map(function (ii, span) {
var submenudata = getdata($(span));
submenudata.index = (index + 1) + '' + (ii + 1);
submenudata.pindex = menudata.index;
submenudata.sort = ii;
data.push(submenudata);
});
}
});
$.form.load('{:url("$classuri/edit")}', {data: data}, 'POST');
function getdata($span) {
var menudata = {};
menudata.name = $span.text();
menudata.type = $span.attr('data-type');
menudata.content = $span.data('content') || '';
return menudata;
}
};
new menu();
});
</script>
{extend name='admin@public/content'}
{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;
border-radius: 0;
border-color: #e7e7eb;
box-shadow: none
}
.menu-editor .arrow {
top: auto !important;
bottom: 15px
}
.menu-editor .popover-title {
margin-top: 0
}
.menu-delete {
font-weight: 400;
font-size: 12px;
}
.menu-submit {
margin-right: 10px
}
</style>
{/block}
{block name='content'}
<div class='mobile-preview pull-left'>
<div class='mobile-header'>公众号</div>
<div class='mobile-body'></div>
<ul class='mobile-footer'>
<!--{foreach $list as $menu}-->
<li class="parent-menu">
<a>
<i class="icon-sub hide"></i>
<span data-type="{$menu.type}" data-content="{$menu.content}">{$menu.name}</span>
</a>
<div class="sub-menu text-center hide">
<ul>
<!--{if empty($menu['sub']) eq false}-->
<!--{foreach $menu.sub as $submenu}-->
<li>
<a class="bottom-border">
<span data-type="{$submenu.type}" data-content="{$submenu.content}">{$submenu.name}</span>
</a>
</li>
<!--{/foreach}-->
<!--{/if}-->
<li class="menu-add"><a><i class="icon-add"></i></a></li>
</ul>
<i class="arrow arrow_out"></i>
<i class="arrow arrow_in"></i>
</div>
</li>
<!--{/foreach}-->
<li class="parent-menu menu-add">
<a><i class="icon-add"></i></a>
</li>
</ul>
</div>
<div class="pull-left" style="position:absolute">
<div class="popover fade right up in menu-editor">
<div class="arrow"></div>
<h3 class="popover-title">
菜单名称
{if auth("$classuri/edit")}
<a class="pull-right menu-delete">删除</a>
{/if}
</h3>
<div class="popover-content menu-content"></div>
</div>
</div>
<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">
<label class="col-xs-3 control-label">菜单名称</label>
<div class="col-xs-8">
<input name="menu-name" class="layui-input block">
<span class="help-block m-b-none">字数不超过5个汉字或16个字母</span>
</div>
</div>
</form>
</div>
<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="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="col-xs-8">
<div class="row">
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="text"> 文字消息
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="keys"> 关键字
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="view"> 跳转网页
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="event"> 事件功能
</label>
<label class="col-xs-5 font-noraml">
<input class="cuci-radio" type="radio" name="menu-type" value="miniprogram"> 小程序
</label>
<label class="col-xs-5 font-noraml">
<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="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">
<!--{if auth("$classuri/edit")}-->
<button class="layui-btn menu-submit">保存发布</button>
<!--{/if}-->
<!--{if auth("$classuri/cancel")}-->
<button data-load='{:url("$classuri/cancel")}' class="layui-btn layui-btn-danger">取消发布</button>
<!--{/if}-->
</div>
{/block}
{block name="script"}
<script>
$(function () {
new function () {
var self = this;
this.listen = function () {
$('.mobile-footer').on('click', 'li a', function () {
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 () {
var dialogIndex = $.msg.confirm('删除后菜单下设置的内容将被删除!', function () {
self.del(), $.msg.close(dialogIndex);
});
});
$('.menu-submit').on('click', function () {
self.submit();
});
};
this.add = function () {
var $add = this.$btn.parent('li'), $ul = $add.parent('ul');
if ($ul.hasClass('mobile-footer')) { /* 添加一级菜单 */
var $li = $('<li class="parent-menu"><a class="active"><i class="icon-sub hide"></i> <span>一级菜单</span></a></li>').insertBefore($add);
this.$btn = $li.find('a');
$('<div class="sub-menu text-center hide"><ul><li class="menu-add"><a><i class="icon-add"></i></a></li></ul><i class="arrow arrow_out"></i><i class="arrow arrow_in"></i></div>').appendTo($li);
} else { /* 添加二级菜单 */
this.$btn = $('<li><a class="bottom-border"><span>二级菜单</span></a></li>').prependTo($ul).find('a');
}
this.checkShow();
};
this.checkShow = function () {
var $li = this.$btn.parent('li'), $ul = $li.parent('ul');
/* 选中一级菜单时显示二级菜单 */
if ($li.hasClass('parent-menu')) {
$('.parent-menu .sub-menu').not(this.$btn.parent('li').find('.sub-menu').removeClass('hide')).addClass('hide');
}
/* 一级菜单添加按钮 */
var $add = $('li.parent-menu:last');
$add.siblings('li').size() >= 3 ? $add.addClass('hide') : $add.removeClass('hide');
/* 二级菜单添加按钮 */
$add.siblings('li').map(function () {
var $add = $(this).find('ul li:last');
$add.siblings('li').size() >= 5 ? $add.addClass('hide') : $add.removeClass('hide');
});
/* 处理一级菜单 */
var parentWidth = 100 / $('li.parent-menu:visible').size() + '%';
$('li.parent-menu').map(function () {
var $icon = $(this).find('.icon-sub');
$(this).width(parentWidth).find('ul li').size() > 1 ? $icon.removeClass('hide') : $icon.addClass('hide');
});
/* 更新选择中状态 */
$('.mobile-footer a.active').not(this.$btn.addClass('active')).removeClass('active');
return this.renderEdit(), $ul;
};
this.del = function () {
var $li = this.$btn.parent('li'), $ul = $li.parent('ul');
var $default = function () {
if ($li.prev('li').size() > 0) {
return $li.prev('li');
}
if ($li.next('li').size() > 0 && !$li.next('li').hasClass('menu-add')) {
return $li.next('li');
}
if ($ul.parents('li.parent-menu').size() > 0) {
return $ul.parents('li.parent-menu');
}
return $('null');
}.call(this);
$li.remove();
this.$btn = $default.find('a:first');
this.checkShow();
};
this.renderEdit = function () {
var $span = this.$btn.find('span'), $li = this.$btn.parent('li'), $html = '';
if ($li.find('ul li').size() > 1) { /* 父菜单 */
$html = $($('.menu-editor-parent-tpl').html());
$html.find('input[name="menu-name"]').val($span.text()).on('change keyup', function () {
$span.text(this.value || ' ');
});
return $('.menu-editor .menu-content').html($html);
}
$html = $($('.menu-editor-content-tpl').html());
$html.find('input[name="menu-name"]').val($span.text()).on('change keyup', function () {
$span.text(this.value || ' ');
});
$('.menu-editor .menu-content').html($html);
var type = $span.attr('data-type') || 'text';
$html.find('input[name="menu-type"]').on('click', function () {
var type = this.value, content = $span.data('content') || '请输入内容';
$span.attr('data-type', this.value || 'text').data('content', content);
var html = (function () {
switch (type) {
case 'miniprogram':
var tpl = '<div>\
<div>appid<input class="layui-input block margin-bottom-10" value="{appid}" name="appid"></div>\
<div>url<input class="layui-input block margin-bottom-10" value="{url}" name="url"></div>\
<div>pagepath<input name="pagepath" class="layui-input block" value={pagepath}></div></div>';
var _appid = '', _pagepath = '', _url = '';
if (content.indexOf(',') > 0) {
_appid = content.split(',')[0] || '';
_url = content.split(',')[1] || '';
_pagepath = content.split(',')[2] || '';
}
$span.data('appid', _appid), $span.data('url', _url), $span.data('pagepath', _pagepath);
return tpl.replace('{appid}', _appid).replace('{url}', _url).replace('{pagepath}', _pagepath);
case 'customservice':
case 'text':
return '<div>回复内容<textarea style="resize:none;height:225px" name="content" class="form-control input-sm">{content}</textarea></div>'.replace('{content}', content);
case 'view':
return '<div>跳转地址<textarea style="resize:none;height:225px" name="content" class="form-control input-sm">{content}</textarea></div>'.replace('{content}', content);
case 'keys':
return '<div>匹配内容<textarea style="resize:none;height:225px" name="content" class="form-control input-sm">{content}</textarea></div>'.replace('{content}', content);
case 'event':
var options = {
'scancode_push': '扫码推事件',
'scancode_waitmsg': '扫码推事件且弹出“消息接收中”提示框',
'pic_sysphoto': '弹出系统拍照发图',
'pic_photo_or_album': '弹出拍照或者相册发图',
'pic_weixin': '弹出微信相册发图器',
'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>';
if (!(options[content] || false)) {
(content = 'scancode_push'), $span.data('content', content);
}
for (var i in options) {
select.push(tpl.replace('{value}', i).replace('{title}', options[i]).replace('{checked}', (i === content) ? 'checked' : ''));
}
return select.join('');
}
}).call(this);
var $html = $(html), $input = $html.find('input,textarea');
$input.on('change keyup click', function () {
// 将input值写入到span上
$span.data(this.name, $(this).val() || $(this).html());
// 如果是小程序合并内容到span的content上
if (type === 'miniprogram') {
$span.data('content', $span.data('appid') + ',' + $span.data('url') + ',' + $span.data('pagepath'));
}
});
$('.editor-content-input').html($html);
}).filter('input[value="{type}"]'.replace('{type}', type)).trigger('click');
};
this.submit = function () {
var data = [];
$('li.parent-menu').map(function (index, item) {
if (!$(item).hasClass('menu-add')) {
var menudata = getdata($(item).find('a:first span'));
menudata.index = index + 1;
menudata.pindex = 0;
menudata.sub = [];
menudata.sort = index;
data.push(menudata);
$(item).find('.sub-menu ul li:not(.menu-add) span').map(function (ii, span) {
var submenudata = getdata($(span));
submenudata.index = (index + 1) + '' + (ii + 1);
submenudata.pindex = menudata.index;
submenudata.sort = ii;
data.push(submenudata);
});
}
});
$.form.load('{:url("$classuri/edit")}', {data: data}, 'post');
function getdata($span) {
var menudata = {};
menudata.name = $span.text();
menudata.type = $span.attr('data-type');
menudata.content = $span.data('content') || '';
return menudata;
}
};
this.listen();
};
});
</script>
{/block}

View File

@ -1,278 +0,0 @@
{extend name='extra@admin/content'}
{block name='content'}
<!--左侧图文列表 开始-->
<div class="panel panel-default news-left">
<div class="panel-heading">图文列表</div>
<div class="panel-body news-box">
{if empty($vo['articles']) eq false}
{foreach $vo.articles as $key=>$value}
<div class="news-item transition" data-id="{$value.id}" style="background-image:url('{$value.local_url}?imageView2/1/w/338/h/190/interlace/1')">
<a class="upload-multiple-close fa fa-close hide"></a>
<span class="news-title">{$value.title}</span>
</div>
<hr/>
{/foreach}
{else}
<div class="news-item transition active news-image" style="background-image:url('__STATIC__/plugs/uploader/theme/image.png')">
<a class="upload-multiple-close fa fa-close hide"></a>
<span class="news-title"></span>
</div>
<hr/>
{/if}
<a href="javascript:void(0)" class='article-add transition' data-text-tip="添加图文"><i class="fa fa-plus"></i></a>
</div>
</div>
<!--左侧图文列表 结束-->
<!--右侧编辑区 开始-->
<div class="panel panel-default news-right" style="overflow:hidden">
<div class="panel-heading">图文内容编辑</div>
<div class="panel-body">
<form class="form-horizontal" role="form" name="news" onsubmit="return false;">
<div class="form-group">
<div class="col-md-12">
<div class="input-group">
<span class="input-group-addon">标题</span>
<input maxlength="64" required="required" title="标题不能为空哦" placeholder="请在这里输入标题" name='title' class="layui-input">
<input type="hidden" name="id">
</div>
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<div class="input-group">
<span class="input-group-addon">作者</span>
<input maxlength="8" required="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 style="color:#ccc">图文封面大图片设置</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">
<br>
<a data-file="one" data-type="jpg,png,jpeg" data-field="local_url" class="btn btn-sm">上传图片</a>
<a data-iframe='{:url("image")}?field=local_url' class="btn btn-sm">选择图片</a>
<br><br>
<label style="margin-left:0;padding-left:10px">
<input data-auto-none type="checkbox" value="1" name="show_cover_pic">
在正文显示此图片
</label>
</div>
</div>
<p class="help-block" style="margin-top:10px;color:#ccc">封面大图片建议尺寸900像素 * 500像素</p>
</div>
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<textarea name='content'></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<label style="color:#aaa">摘要选填如果不填写会默认抓取正文前54个字</label>
<textarea name="digest" class="layui-input" style="height:80px;resize:none;line-height:20px"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<label style="display:block"><span style="color:#aaa;">原文链接<b>选填</b>,填写之后在图文左下方会出现此链接</span>
<input maxlength="200" name='content_source_url' class="layui-input">
</label>
</div>
</div>
<div class="form-actions">
<div class="row">
<div class="col-md-offset-4 col-md-9">
<button data-submit type="button" class="layui-btn">保存图文</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!--右侧编辑区 结束-->
{/block}
{block name='script'}
<script>
$(function () {
var editDdata = {$vo.articles|default=[]|json_encode};
for (var i in editDdata) {
$('.news-item').eq(i).data('item', editDdata[i]);
}
$('body').on('change', '.upload-image-box input', function () {
$('.news-item.active').css('background-image', 'url(' + this.value + ')');
$(this).parent('.upload-image-box').css('background-image', 'url(' + this.value + ')');
});
/*! 实例富文本编辑器 */
var editor, $item;
/*! 默认编辑第一篇图文 */
editor = window.createEditor('[name="content"]');
var $form = $('form[name="news"]'), $body = $('body');
$form.validate();
/*! 数据提交 */
$form.find('button[data-submit]').on('click', function () {
var data = [];
$form.submit();
if (!syncEditor($('.news-item.active'))) {
editor.setData('文章内容不能留空,请输入内容!');
return false;
}
$('.news-item').map(function () {
var item = $(this).data('item');
item.content = item.content || '文章内容不能留空,请输入内容!';
data.push(item);
});
$.form.load('__SELF__', {data: data}, "post");
});
/*! 输入标题显示 */
$form.find('[name="title"]').on('keyup', function () {
if ($item) {
$item.find('.news-title').html(this.value).show();
}
});
/*! 同步编辑器 */
function syncEditor($pItem) {
// 处理上一个编辑器
if ($form && $pItem && $pItem.size() > 0) {
var data = {};
data.id = $form.find('[name=id]').val();
data.title = $form.find('[name=title]').val();
data.local_url = $form.find('[name=local_url]').val();
data.content = editor.getData() || '';
data.author = $form.find('[name=author]').val();
data.digest = $form.find('[name=digest]').val();
data.show_cover_pic = $form.find('[name="show_cover_pic"]').get(0).checked ? 1 : 0;
data.content_source_url = $form.find('[name="content_source_url"]').val();
$form.find('[name=local_url]').trigger('change');
$pItem.data('item', data), $form.submit();
if ($form.find('input.validate-error').size() > 0 || data.content.length < 1) {
((data.content || '').length < 1) && editor.setData('文章内容不能留空,请输入内容!');
$pItem.addClass('active').siblings().removeClass('active');
return false;
}
}
return true;
}
/*! 显示编辑器 */
function showEditor() {
// 读取对象数据
$item = $('.news-item.active');
this.get = function () {
var data = $item.data('item') || {};
data.id = data.id || 0;
data.title = data.title || '';
data.local_url = data.local_url || '__STATIC__/plugs/uploader/theme/image.png';
data.content = data.content || '';
data.author = data.author || '';
data.digest = data.digest || '';
data.content_source_url = data.content_source_url||'';
data.show_cover_pic = data.show_cover_pic || 0;
return data;
};
// 重置表单
$form.get(0).reset();
// 获取当前数据
var data = this.get();
for (var i in data) {
if (i !== 'content' && i !== 'show_cover_pic') {
$form.find('[name="' + i + '"]').val(data[i]).trigger('change');
}
}
if (parseInt(data.show_cover_pic) === 1) {
$form.find('[name="show_cover_pic"]').get(0).checked = true;
}
editor.setData(data.content);
}
/*! 添加新图文 */
$body.off('click', '.news-box .article-add').on('click', '.news-box .article-add', function () {
var $html = $('<div class="news-item transition" style="background-image:url(__STATIC__/plugs/uploader/theme/image.png)"><a class="upload-multiple-close fa fa-close hide"></a><span class="news-title"></span></div><hr />');
$html.insertBefore(this).trigger('click');
$('.news-item').size() >= 7 && $(this).hide();
});
/*! 列表选择 */
$body.off('click', '.news-item').on('click', '.news-item', function () {
if (syncEditor($('.news-item.active'))) {
$(this).addClass('active').siblings().removeClass('active');
showEditor($item);
}
});
/*! 隐藏删除按钮 */
$body.off('mouseleave').on('mouseleave', '.news-item', function () {
$(this).find('.upload-multiple-close').addClass('hide');
});
/*! 显示删除按钮 */
$body.off('mouseenter', '.news-item').on('mouseenter', '.news-item', function () {
$('.upload-multiple-close').addClass('hide');
$(this).find('.upload-multiple-close').removeClass('hide');
});
/*! 删除操作图文 */
$body.off('click', '.upload-multiple-close').on('click', '.upload-multiple-close', function () {
var $box = $(this).parents('.news-item');
$box.add($box.next('hr')).remove();
$('.news-item').size() < 7 && $('.news-box .article-add').show();
});
/*! 默认显示第一个 */
$('.news-box .news-item:first').trigger('click');
});
</script>
{/block}
{block name="style"}
<style>
.panel{border-radius:0}
.news-left {left:20px;width:300px;position:absolute;}
.news-right {position:absolute;left:330px;right:20px;}
.news-left .news-item {position:relative;width:280px;height:150px;max-width:270px;overflow:hidden;border:1px solid #ccc;background-size:cover;background-position:center center;}
.news-left .news-item.active {border:1px solid #44b549 !important;}
.news-left .article-add {font-size:22px;text-align:center;display:block;color:#999;}
.news-left .article-add:hover{color:#666;}
.news-left .news-title{bottom:0;width:272px;color:#fff;display:block;padding:0 5px;overflow:hidden;position:absolute;margin-left:-1px;text-overflow:ellipsis;max-height:6em;background:rgba(0,0,0,0.7);}
.news-right .layui-input{border-radius:0;border:1px solid #e5e6e7;}
.news-right .layui-input:hover, .news-right .layui-input:focus{border-color:#e5e6e7!important;}
.news-right .input-group-addon{background:#fff;border-radius:0;border-color:#e5e6e7;}
.news-right .upload-image-box{width:130px;height:90px;background-size:cover;background-position:center center;border:1px solid rgba(125,125,125,0.1);margin:5px}
.news-item .upload-multiple-close{width:30px;height:30px;line-height:30px;text-align:center;background-color:rgba(0,0,0,.5);color:#fff;float:right;margin-right:-1px;margin-top:-1px}
.news-item .upload-multiple-close:hover{text-decoration:none}
</style>
{/block}

View File

@ -1,43 +0,0 @@
{extend name='extra@admin/main'}
{block name="body"}
<style>
body {
min-width: 100px !important
}
.pagination {
padding: 0 10px
}
.news-image {
cursor: pointer;
width: 111px;
height: 120px;
background-size: cover;
background-position: center center;
float: left;
margin: 10px;
border: 1px solid rgba(125, 125, 125, 0.3)
}
</style>
<div class="news-container" id='news_box'>
{foreach $list as $key=>$vo}
<a class="news-image transition" data-src='{$vo.local_url}' style="background-image:url('{$vo.local_url}')"></a>
{/foreach}
<div style='clear:both'></div>
</div>
{if isset($page)}{$page}{/if}
<script>
require(['jquery'], function () {
$('body').on('click', '[data-open]', function () {
window.location.href = this.getAttribute('data-open');
}).on('click', '.news-image', function () {
var src = this.getAttribute('data-src');
top.$('[name="{$field}"]').val(src).trigger('change');
parent.layer.close(parent.layer.getFrameIndex(window.name));
});
});
</script>
{/block}

View File

@ -1,112 +0,0 @@
<form data-auto='true' action='__SELF__'>
<div class="col-xs-2 news-container">
<h5 class="text-center" style="margin:10px 0">微信图文</h5>
<div class="news-box">
{foreach $vo.articles as $key=>$value}
<div class="news-item transition" data-id="{$value.id}">
<div class="news-image" style='background-image:url({$value.local_url})'></div>
<span class="news-title">{$value.title}</span>
</div>
<hr/>
{/foreach}
</div>
</div>
<div class="col-xs-2 list-container">
<h5 class="text-center" style="margin:10px 0">指定粉丝标签推送 <a data-check-all> 全选 </a></h5>
<div class="list-item">
{foreach $fans_tags as $tag}
<label class='control-label layui-form-label' style='text-align:left!important'>
<input name="fans_tags[]" value='{$tag.id}' type="checkbox"/> {$tag.name} ({$tag.count})
</label>
{/foreach}
{literal}
<script id="push" type="text/template">
{{if data}}
{{each data as value key}}
{{if key <= 200}}
<label>{{value}}</label>
{{/if}}
{{/each}}
{{if (data.length > 200)}}
<label>...</label>
{{/if}}
{{else}}
<h5></h5>
{{/if}}
</script>
{/literal}
<script>
require(['jquery', 'template'], function () {
var $allbtn = $('[data-check-all]').on('click', function () {
var check_status = check_checked();
/*重置和全选数据变化处理*/
$('input[name*=fans_tags]').map(function () {
this.checked = !check_status;
});
check_checked();
postpush();
});
/*重置和全选的效果处理*/
function check_checked() {
var allcheck = true;
$('input[name*=fans_tags]').map(function () {
(!this.checked) && (allcheck = false);
});
return ((allcheck) ? $allbtn.html('重置') : $allbtn.html('全选')), allcheck;
}
/*点击每一个选项都触发事件*/
$('input[name*=fans_tags]').on('click', function () {
check_checked();
postpush();
});
/*数据异步获取并显示出来*/
function postpush() {
var inp = $('input[name*=fans_tags]');
var group = [];
for (var i = 0; i < inp.length; i++) {
if (inp[i].checked === true) {
group.push(inp[i].value);
}
}
$.post("{:url('wechat/news/push')}?action=getuser", {group: group.join(',')}, function (ret) {
var html = template('push', ret);
document.getElementById('push-tags').innerHTML = html;
});
}
}
);
</script>
</div>
<div id='push-tags' class="list-item"></div>
</div>
<div style="clear:both;height:60px"></div>
<div class="bottom-btn text-center">
<button class="layui-btn">立即推送图文</button>
<button type='button' data-close='' data-confirm='确定要取消推送图文吗?' class="layui-btn layui-btn-danger">取消推送图文</button>
</div>
</form>
<style>
body { min-width: 500px}
#push-tags{height:300px;overflow:auto}
.bottom-btn { display: block; background: #F7F7F7; padding: 10px; position: absolute; position: fixed; bottom: 0; width: 100%}
.news-container { width: 200px; padding-right: 8px}
.list-container { width: 578px; padding-right: 8px; padding-left: 0}
.list-container h5 a { font-size: 12px; float: right}
.list-container .list-item { border: 1px solid #eee; padding: 8px}
.list-container .list-item:after { content: ''; display: block; clear: both; width: 100%}
.list-container .list-item label { display: block; width: 25%; float: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis}
.news-container .news-box { border: 1px solid #eee; padding: 8px}
.news-container .news-box hr { margin: 4px}
.news-container .news-box .news-item { position: relative; border: 1px solid #cecece; border-radius: 2px; overflow: hidden; cursor: pointer}
.news-container .news-box .news-image {background-position:center center;background-size:100%;height:90px}
.news-container .news-box .news-title { position: absolute; background: rgba(0, 0, 0, 0.5); color: #fff; padding: 2px; margin: 0; bottom: 0; left: 0; right: 0; text-align: right; white-space: nowrap; text-overflow: ellipsis; overflow: hidden}
</style>

View File

@ -1,62 +0,0 @@
{extend name='extra@admin/main'}
{block name="body"}
<div class="news-container" id='news_box'>
{foreach $list as $key=>$vo}
<div class="news-box item transition" data-news-id='{$vo.id}'>
{foreach $vo.articles as $key=>$value}
<div class="news-item transition" data-id="{$value.id}">
<div class="news-image">
<img alt="image" class="img-responsive" src="{$value.local_url}"/>
</div>
<span class="news-title"> {$value.title}</span>
</div>
{/foreach}
</div>
{/foreach}
</div>
{if isset($page)}<p>{$page}</p>{/if}
{/block}
{block name='style'}
<style>
body { min-width: 500px }
.news-container { margin: 20px 0; width: 100%; position: relative;padding:0 20px}
.news-container .news-box { border: 1px solid #eee; padding: 8px; width: 250px; border-radius: 5px; position: absolute; margin-bottom: 20px; cursor: pointer }
.news-container .news-box:hover, .news-container .news-box.active { box-shadow: 1px 0px 10px #0099CC; border-color: #0099CC }
.news-container .news-box hr { margin: 4px }
.news-container .news-box .table-hover { margin-bottom: 0; margin-top: 10px; border-top: none }
.news-container .news-box .news-item { position: relative; border-radius: 2px; overflow: hidden; }
.news-container .news-box .news-image { text-align: center }
.news-container .news-box .news-image img { height: 159px; width: 100%; border-radius: 2px }
.news-container .news-box .news-btn a { padding: 15px 5px; color: #666 }
.news-container .news-box .news-btn .fa, .news-container .news-box .news-btn .glyphicon { font-size: 1.2em; }
.news-container .news-box .news-btn { display: block; text-align: center; font-size: 1em; color: #cecece; padding: 3px; position: relative; cursor: pointer }
.news-container .news-box .news-title { position: absolute; background: rgba(0, 0, 0, 0.5); color: #fff; padding: 5px; margin: 0; bottom: 0; left: 0; right: 0; text-align: right; white-space: nowrap; text-overflow: ellipsis; overflow: hidden }
</style>
{/block}
{block name="script"}
<script>
require(['jquery.masonry'], function (Masonry) {
var container = document.querySelector('#news_box');
var msnry = new Masonry(container, {itemSelector: '.news-box', columnWidth: 0});
msnry.layout();
/* 事件处理 */
$('.news-container').on('mouseenter', '.news-box', function () {
$(this).addClass('active');
}).on('mouseleave', '.news-box', function () {
$(this).removeClass('active');
});
var seletor = '[name="{$Think.get.field|decode|default=0}"]';
if (seletor) {
$('[data-news-id]').on('click', function () {
window.top.$(seletor).val($(this).attr('data-news-id')).trigger('change');
parent.layer.close(parent.layer.getFrameIndex(window.name))
});
}
});
</script>
{/block}

View File

@ -0,0 +1,362 @@
{extend name='admin@public/content'}
{block name='content'}
<!--左侧图文列表 开始-->
<div class="panel panel-default news-left">
<div class="panel-heading">图文列表</div>
<div class="panel-body news-box">
{if empty($vo['articles']) eq false}
<!--{foreach $vo.articles as $key=>$value}-->
<div class="news-item transition" data-id="{$value.id}" style="background-image:url('{$value.local_url}?imageView2/1/w/338/h/190/interlace/1')">
<a class="upload-multiple-close layui-icon hide">&#x1006;</a>
<span class="news-title">{$value.title}</span>
</div>
<hr/>
<!--{/foreach}-->
{else}
<div class="news-item transition active news-image" style="background-image:url('__STATIC__/plugs/uploader/theme/image.png')">
<a class="upload-multiple-close layui-icon hide">&#x1006;</a>
<span class="news-title"></span>
</div>
<hr/>
{/if}
<a href="javascript:void(0)" class='article-add transition' data-text-tip="添加图文">
<i class="fa fa-plus"></i>
</a>
</div>
</div>
<!--左侧图文列表 结束-->
<!--右侧编辑区 开始-->
<div class="panel panel-default news-right">
<div class="panel-heading">图文内容编辑</div>
<div class="panel-body">
<form class="form-horizontal" role="form" name="news" onsubmit="return false;">
<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">
<input type="hidden" name="id">
</div>
</div>
</div>
<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">
</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="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">
<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>
</div>
</div>
<p class="help-block margin-top-10 color-desc">封面大图片建议尺寸900像素 * 500像素</p>
</div>
</div>
</div>
<div class="form-group">
<div class="col-md-12"><textarea name='content'></textarea></div>
</div>
<div class="form-group">
<div class="col-md-12">
<label class="color-desc">摘要选填如果不填写会默认抓取正文前54个字</label>
<textarea name="digest" class="layui-textarea" style="height:80px;resize:none"></textarea>
</div>
</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>
</div>
</div>
<div class="form-actions">
<div class="row">
<div class="col-md-offset-4 col-md-9">
<button data-submit type="button" class="layui-btn">保存图文</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!--右侧编辑区 结束-->
{/block}
{block name='script'}
<textarea class="hide" id="newsdata">{$vo.articles|default=[]|json_encode=256|raw}</textarea>
<script>
require(['ckeditor'], function () {
var editDdata = JSON.parse(document.getElementById('newsdata').innerHTML);
for (var i in editDdata) {
$('.news-item').eq(i).data('item', editDdata[i]);
}
/*! 实例富文本编辑器 */
var editor, $item, $body = $('body'), $form = $('form[name="news"]');
/*! 默认编辑第一篇图文 */
editor = window.createEditor('[name="content"]');
$form.validate();
/*! 上传图片 */
$body.on('change', '.upload-image-box input', function () {
$('.news-item.active').css('background-image', 'url(' + this.value + ')');
$(this).parent('.upload-image-box').css('background-image', 'url(' + this.value + ')');
});
/*! 数据提交 */
$form.find('button[data-submit]').on('click', function () {
var data = [];
$form.submit();
if (!syncEditor($('.news-item.active'))) {
editor.setData('文章内容不能留空,请输入内容!');
return false;
}
$('.news-item').map(function () {
var item = $(this).data('item');
item.content = item.content || '文章内容不能留空,请输入内容!';
data.push(item);
});
$.form.load('{:request()->url()}', {data: data}, "post");
});
/*! 输入标题显示 */
$form.find('[name="title"]').on('keyup', function () {
if ($item) {
$item.find('.news-title').html(this.value).show();
}
});
/*! 同步编辑器 */
function syncEditor($pItem) {
// 处理上一个编辑器
if ($form && $pItem && $pItem.size() > 0) {
var data = {};
data.id = $form.find('[name=id]').val();
data.title = $form.find('[name=title]').val();
data.local_url = $form.find('[name=local_url]').val();
data.content = editor.getData() || '';
data.author = $form.find('[name=author]').val();
data.digest = $form.find('[name=digest]').val();
data.show_cover_pic = $form.find('[name="show_cover_pic"]').get(0).checked ? 1 : 0;
data.content_source_url = $form.find('[name="content_source_url"]').val();
$form.find('[name=local_url]').trigger('change');
$pItem.data('item', data), $form.submit();
if ($form.find('input.validate-error').size() > 0 || data.content.length < 1) {
((data.content || '').length < 1) && editor.setData('文章内容不能留空,请输入内容!');
$pItem.addClass('active').siblings().removeClass('active');
return false;
}
}
return true;
}
/*! 显示编辑器 */
function showEditor() {
// 读取对象数据
$item = $('.news-item.active');
this.get = function () {
var data = $item.data('item') || {};
data.id = data.id || 0;
data.title = data.title || '';
data.local_url = data.local_url || '__STATIC__/plugs/uploader/theme/image.png';
data.content = data.content || '';
data.author = data.author || '';
data.digest = data.digest || '';
data.content_source_url = data.content_source_url || '';
data.show_cover_pic = data.show_cover_pic || 0;
return data;
};
// 重置表单
$form.get(0).reset();
// 获取当前数据
var data = this.get();
for (var i in data) {
if (i !== 'content' && i !== 'show_cover_pic') {
$form.find('[name="' + i + '"]').val(data[i]).trigger('change');
}
}
if (parseInt(data.show_cover_pic) === 1) {
$form.find('[name="show_cover_pic"]').get(0).checked = true;
}
editor.setData(htmldecode(data.content));
function htmldecode(string) {
var div = document.createElement('div');
div.innerHTML = string;
return div.innerText || div.textContent;
}
}
/*! 添加新图文 */
$body.off('click', '.news-box .article-add').on('click', '.news-box .article-add', function () {
var $html = $('<div class="news-item transition" style="background-image:url(__STATIC__/plugs/uploader/theme/image.png)"><a class="upload-multiple-close layui-icon hide">&#x1006;</a><span class="news-title"></span></div><hr />');
$html.insertBefore(this).trigger('click');
$('.news-item').size() >= 7 && $(this).hide();
});
/*! 列表选择 */
$body.off('click', '.news-item').on('click', '.news-item', function () {
if (syncEditor($('.news-item.active'))) {
$(this).addClass('active').siblings().removeClass('active');
showEditor($item);
}
});
/*! 隐藏删除按钮 */
$body.off('mouseleave').on('mouseleave', '.news-item', function () {
$(this).find('.upload-multiple-close').addClass('hide');
});
/*! 显示删除按钮 */
$body.off('mouseenter', '.news-item').on('mouseenter', '.news-item', function () {
$('.upload-multiple-close').addClass('hide');
$(this).find('.upload-multiple-close').removeClass('hide');
});
/*! 删除操作图文 */
$body.off('click', '.upload-multiple-close').on('click', '.upload-multiple-close', function () {
var $box = $(this).parents('.news-item');
$box.add($box.next('hr')).remove();
$('.news-item').size() < 7 && $('.news-box .article-add').show();
});
/*! 默认显示第一个 */
$('.news-box .news-item:first').trigger('click');
});
</script>
{/block}
{block name="style"}
<style>
.panel {
border-radius: 0
}
.news-left {
left: 20px;
width: 300px;
position: absolute;
}
.news-right {
left: 330px;
right: 20px;
overflow: hidden;
position: absolute;
}
.news-left .news-item {
width: 280px;
height: 150px;
max-width: 270px;
overflow: hidden;
position: relative;
border: 1px solid #ccc;
background-size: cover;
background-position: center center;
}
.news-left .news-item.active {
border: 1px solid #44b549 !important;
}
.news-left .article-add {
color: #999;
display: block;
font-size: 22px;
text-align: center;
}
.news-left .article-add:hover {
color: #666;
}
.news-left .news-title {
bottom: 0;
color: #fff;
width: 272px;
display: block;
padding: 0 5px;
max-height: 6em;
overflow: hidden;
margin-left: -1px;
position: absolute;
text-overflow: ellipsis;
background: rgba(0, 0, 0, 0.7);
}
.news-right .layui-input {
border-radius: 0;
border: 1px solid #e5e6e7;
}
.news-right .layui-input:hover, .news-right .layui-input:focus {
border-color: #e5e6e7 !important;
}
.news-right .input-group-addon {
background: #fff;
border-radius: 0;
border-color: #e5e6e7;
}
.news-right .upload-image-box {
margin: 5px;
width: 130px;
height: 90px;
background-size: cover;
background-position: center center;
border: 1px solid rgba(125, 125, 125, 0.1);
}
.news-item .upload-multiple-close {
color: #fff;
width: 30px;
height: 30px;
float: right;
margin-top: -1px;
line-height: 30px;
text-align: center;
margin-right: -1px;
background-color: rgba(0, 0, 0, .5);
}
.news-item .upload-multiple-close:hover {
text-decoration: none
}
</style>
{/block}

View File

@ -0,0 +1,42 @@
{extend name='admin@public/main'}
{block name='style'}
<style>
.news-image {width:112px;float:left;margin:10px;height:120px;cursor:pointer;background-size:cover;background-position:center center;border:1px solid rgba(125, 125, 125, 0.3)}
.page-style {bottom:0;width:100%;height:50px;padding:0 10px;position:fixed;background:#fff}
.page-style .pagination-trigger, .page-style .pagination {margin:10px 0 !important;;padding:0 10px !important}
</style>
{/block}
{block name="body"}
<div>
{foreach $list as $key=>$vo}
<a class="news-image transition" data-src='{$vo.local_url}' style="background-image:url('{$vo.local_url}')"></a>
{/foreach}
<div style='clear:both'></div>
</div>
<div style="height:50px"></div>
<div class="page-style">
{if isset($page)}{$page|raw}{/if}
</div>
{/block}
{block name="script"}
<script>
$(function () {
/*! 分页事件切换处理 */
$('body').off('change', '.pagination-trigger select').on('change', '.pagination-trigger select', function () {
var urls = this.options[this.selectedIndex].getAttribute('data-url').split('#');
urls.shift();
window.location.href = urls.join('#');
}).off('click', '[data-open]').on('click', '[data-open]', function () {
var url = this.getAttribute('data-open');
window.location.href = url;
}).on('click', '.news-image', function () {
var src = this.getAttribute('data-src');
top.$('[name="{$field}"]').val(src).trigger('change');
parent.layer.close(parent.layer.getFrameIndex(window.name));
});
});
</script>
{/block}

View File

@ -1,170 +1,168 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-open="{:url('add')}" class='layui-btn layui-btn-small'>添加图文</button>
</div>
{/block}
{block name='content'}
<div id="news_box">
{foreach $list as $vo}
<div class="news_item">
<div class='news_tools hide'>
<a data-phone-view="{:url('@wechat/review')}?type=news&content={$vo.id}" href='javascript:void(0)'>预览</a>
<a data-modal="{:url('push')}?id={$vo.id}" href='javascript:void(0)'>推送</a>
<a data-open='{:url("edit")}?id={$vo.id}' href='javascript:void(0)'>编辑</a>
<a data-news-del="{$vo.id}" href='javascript:void(0)'>删除</a>
</div>
{foreach $vo.articles as $k => $v}
{if $k < 1}
<div data-tips-image='{$v.local_url}' class='news_articel_item' style='background-image:url("{$v.local_url}")'>
{if $v.title}<p>{$v.title}</p>{/if}
</div>
<div class="hr-line-dashed"></div>
{else}
<div class='news_articel_item other'>
<div class='right-text'>{$v.title}</div>
<div data-tips-image='{$v.local_url}' class='left-image' style='background-image:url("{$v.local_url}");'>
</div>
</div>
<div class="hr-line-dashed"></div>
{/if}
{/foreach}
</div>
{/foreach}
<div style="clear:both"></div>
{if empty($list)}
<p class="help-block">暂时无记录</p>
{/if}
</div>
{if isset($page)}<p>{$page}</p>{/if}
{/block}
{block name='script'}
<script>
$('body').on('mouseenter', '.news_item', function () {
$(this).find('.news_tools').removeClass('hide');
}).on('mouseleave', '.news_item', function () {
$(this).find('.news_tools').addClass('hide');
});
require(['jquery.masonry'], function (Masonry) {
var container = document.querySelector('#news_box');
var msnry = new Masonry(container, {itemSelector: '.news_item', columnWidth: 0});
msnry.layout();
$('body').on('click', '[data-news-del]', function () {
var self = this;
$.msg.confirm('确定要删除图文吗?', function () {
$.form.load('{:url("del")}', {
field: 'delete',
value: 0,
id: self.getAttribute('data-news-del')
}, 'post', function (ret) {
if (ret.code) {
$(self).parents('.news_item').remove();
return $.msg.success(ret.msg), msnry.layout(), false;
}
return $.msg.error(ret.msg), false;
});
});
});
});
</script>
{/block}
{block name="style"}
<style>
#news_box {
position: relative;
}
#news_box .news_item {
top: 0;
left: 0;
padding: 5px;
margin: 10px;
width: 300px;
position: relative;
border: 1px solid #ccc;
box-sizing: content-box;
}
#news_box .news_item .news_articel_item {
width: 100%;
height: 150px;
overflow: hidden;
position: relative;
background-size: 100%;
background-position: center center;
}
#news_box .news_item .news_articel_item p {
bottom: 0;
width: 100%;
color: #fff;
padding: 5px;
max-height: 5em;
font-size: 12px;
overflow: hidden;
position: absolute;
text-overflow: ellipsis;
background: rgba(0, 0, 0, 0.7);
}
#news_box .news_item .news_articel_item.other {
height: 50px;
padding: 5px 0;
}
#news_box .news_item .news_articel_item .left-image {
width: 50px;
height: 50px;
float: left;
overflow: hidden;
position: relative;
background-size: 100%;
background-position: center center;
}
#news_box .news_item .news_articel_item .right-text {
float: left;
width: 250px;
padding-right: 10px;
overflow: hidden;
text-overflow: ellipsis;
}
#news_box .news_item .hr-line-dashed:last-child {
display: none
}
#news_box .hr-line-dashed {
margin: 6px 0 1px 0
}
#news_box .news_tools {
top: 0;
z-index: 80;
color: #fff;
width: 312px;
padding: 0 5px;
margin-left: -6px;
line-height: 38px;
text-align: right;
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
#news_box .news_tools a {
color: #fff;
margin-left: 10px
}
</style>
{extend name='admin@public/content'}
{block name="button"}
<button data-open="{:url('add')}" class='layui-btn layui-btn-sm'>添加图文</button>
{/block}
{block name='content'}
<div id="news_box">
{foreach $list as $vo}
<div class="news_item">
<div class='news_tools hide'>
<a data-phone-view="{:url('@wechat/review')}?type=news&content={$vo.id}" href='javascript:void(0)'>预览</a>
<a data-modal="{:url('push')}?id={$vo.id}" href='javascript:void(0)'>推送</a>
<a data-open='{:url("edit")}?id={$vo.id}' href='javascript:void(0)'>编辑</a>
<a data-news-del="{$vo.id}" href='javascript:void(0)'>删除</a>
</div>
{foreach $vo.articles as $k => $v}
{if $k < 1}
<div data-tips-image='{$v.local_url}' class='news_articel_item' style='background-image:url("{$v.local_url}")'>
{if $v.title}<p>{$v.title}</p>{/if}
</div>
<div class="hr-line-dashed"></div>
{else}
<div class='news_articel_item other'>
<div class='right-text'>{$v.title}</div>
<div data-tips-image='{$v.local_url}' class='left-image' style='background-image:url("{$v.local_url}");'></div>
</div>
<div class="hr-line-dashed"></div>
{/if}
{/foreach}
</div>
{/foreach}
<div style="clear:both"></div>
{if empty($list)}
<p class="help-block text-center well"> 哦!</p>
{/if}
</div>
{if isset($page)}<p>{$page|raw}</p>{/if}
{/block}
{block name='script'}
<script>
$('body').on('mouseenter', '.news_item', function () {
$(this).find('.news_tools').removeClass('hide');
}).on('mouseleave', '.news_item', function () {
$(this).find('.news_tools').addClass('hide');
});
require(['jquery.masonry'], function (Masonry) {
var container = document.querySelector('#news_box');
var msnry = new Masonry(container, {itemSelector: '.news_item', columnWidth: 0});
msnry.layout();
$('body').on('click', '[data-news-del]', function () {
var self = this;
var dialogIndex = $.msg.confirm('确定要删除图文吗?', function () {
$.form.load('{:url("del")}', {
field: 'delete',
value: 0,
id: self.getAttribute('data-news-del')
}, 'post', function (ret) {
if (ret.code) {
$(self).parents('.news_item').remove();
return $.msg.success(ret.msg), msnry.layout(), false;
}
return $.msg.error(ret.msg), false;
});
$.msg.close(dialogIndex);
});
});
});
</script>
{/block}
{block name="style"}
<style>
#news_box {
position: relative;
}
#news_box .news_item {
top: 0;
left: 0;
padding: 5px;
margin: 10px;
width: 300px;
position: relative;
border: 1px solid #ccc;
box-sizing: content-box;
}
#news_box .news_item .news_articel_item {
width: 100%;
height: 150px;
overflow: hidden;
position: relative;
background-size: 100%;
background-position: center center;
}
#news_box .news_item .news_articel_item p {
bottom: 0;
width: 100%;
color: #fff;
padding: 5px;
max-height: 5em;
font-size: 12px;
overflow: hidden;
position: absolute;
text-overflow: ellipsis;
background: rgba(0, 0, 0, 0.7);
}
#news_box .news_item .news_articel_item.other {
height: 50px;
padding: 5px 0;
}
#news_box .news_item .news_articel_item .left-image {
width: 50px;
height: 50px;
float: left;
overflow: hidden;
position: relative;
background-size: 100%;
background-position: center center;
}
#news_box .news_item .news_articel_item .right-text {
float: left;
width: 250px;
padding-right: 10px;
overflow: hidden;
text-overflow: ellipsis;
}
#news_box .news_item .hr-line-dashed:last-child {
display: none
}
#news_box .hr-line-dashed {
margin: 6px 0 1px 0
}
#news_box .news_tools {
top: 0;
z-index: 80;
color: #fff;
width: 312px;
padding: 0 5px;
margin-left: -6px;
line-height: 38px;
text-align: right;
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
#news_box .news_tools a {
color: #fff;
margin-left: 10px
}
</style>
{/block}

View File

@ -0,0 +1,192 @@
<form data-auto='true' action='{:request()->url()}' style="position:relative">
<div class="col-xs-2 news-container">
<h5 class="text-center" style="margin:10px 0">微信图文</h5>
<div class="news-box">
{foreach $vo.articles as $key=>$value}
<div class="news-item transition" data-id="{$value.id}">
<div class="news-image" style='background-image:url({$value.local_url})'></div>
<span class="news-title">{$value.title}</span>
</div>
<hr/>
{/foreach}
</div>
</div>
<div class="col-xs-2 list-container">
<h5 class="text-center" style="margin:10px 0">指定粉丝标签推送 <a data-check-all> 全选 </a></h5>
<div class="list-item">
{foreach $fans_tags as $tag}
<label class='control-label layui-form-label' style='text-align:left!important'>
<input name="fans_tags[]" value='{$tag.id}' type="checkbox"/> {$tag.name} ({$tag.count})
</label>
{/foreach}
{literal}
<script id="push" type="text/template">
{{if data}}
{{each data as value key}}
{{if key <= 200}}
<label>{{value}}</label>
{{/if}}
{{/each}}
{{if (data.length > 200)}}
<label>...</label>
{{/if}}
{{else}}
<h5></h5>
{{/if}}
</script>
{/literal}
</div>
<div id='push-tags' class="list-item"></div>
</div>
<div style="clear:both;max-height:60px"></div>
<div class="bottom-btn text-center">
<button class="layui-btn">立即推送图文</button>
<button type='button' data-close='' data-confirm='确定要取消推送图文吗?' class="layui-btn layui-btn-danger">取消推送图文
</button>
</div>
</form>
<script>
require(['jquery', 'template'], function () {
var $allbtn = $('[data-check-all]').on('click', function () {
var check_status = check_checked();
$('input[name*=fans_tags]').map(function () {
this.checked = !check_status;
});
check_checked(), postpush();
});
/*重置和全选的效果处理*/
function check_checked() {
var allcheck = true;
$('input[name*=fans_tags]').map(function () {
(!this.checked) && (allcheck = false);
});
return ((allcheck) ? $allbtn.html('重置') : $allbtn.html('全选')), allcheck;
}
/*点击每一个选项都触发事件*/
$('input[name*=fans_tags]').on('click', function () {
check_checked();
postpush();
});
/*数据异步获取并显示出来*/
function postpush() {
var inp = $('input[name*=fans_tags]');
var group = [];
for (var i = 0; i < inp.length; i++) {
if (inp[i].checked === true) {
group.push(inp[i].value);
}
}
$.post("{:url('wechat/news/push')}?action=getuser", {group: group.join(',')}, function (ret) {
var html = template('push', ret);
document.getElementById('push-tags').innerHTML = html;
});
}
});
</script>
<style>
body {
min-width: 500px
}
#push-tags {
max-height: 300px;
overflow: auto
}
.bottom-btn {
bottom: 0;
width: 100%;
padding: 10px;
display: block;
background: #F7F7F7;
position: absolute;
}
.news-container {
width: 200px;
padding-right: 8px
}
.list-container {
width: 578px;
padding-left: 0;
padding-right: 8px;
}
.list-container h5 a {
float: right;
font-size: 12px;
}
.list-container .list-item {
padding: 8px;
overflow: auto;
max-height: 300px;
border: 1px solid #eee;
}
.list-container .list-item:after {
content: '';
clear: both;
width: 100%;
display: block;
}
.list-container .list-item label {
width: 25%;
float: left;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis
}
.news-container .news-box {
padding: 8px;
border: 1px solid #eee;
}
.news-container .news-box hr {
margin: 4px
}
.news-container .news-box .news-item {
cursor: pointer;
overflow: hidden;
position: relative;
border-radius: 2px;
border: 1px solid #cecece;
}
.news-container .news-box .news-image {
height: 90px;
background-size: 100%;
background-position: center center;
}
.news-container .news-box .news-title {
position: absolute;
background: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 2px;
margin: 0;
bottom: 0;
left: 0;
right: 0;
text-align: right;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden
}
</style>

View File

@ -0,0 +1,80 @@
{extend name='admin@public/main'}
{block name='style'}
<style>
body{min-width:500px}
#news_box{position:relative;}
#news_box .news_item{top:0;left:0;width:232px;margin:10px;padding:5px;cursor:pointer;position:relative;border:1px solid #ccc;box-sizing:content-box;}
#news_box .news_item:hover,
#news_box .news_item.active{box-shadow:1px 0 10px #09c;border-color:#09c;}
#news_box .news_item .news_articel_item{width:100%;height:150px;overflow:hidden;position:relative;background-size:100%;background-position:center center;}
#news_box .news_item .news_articel_item p{bottom:0;width:100%;color:#fff;padding:5px;max-height:5em;font-size:12px;overflow:hidden;position:absolute;text-overflow:ellipsis;background:rgba(0, 0, 0, 0.7);}
#news_box .news_item .news_articel_item.other{height:50px;padding:5px 0;}
#news_box .news_item .news_articel_item .left-image{width:50px;height:50px;float:left;overflow:hidden;position:relative;background-size:100%;background-position:center center;}
#news_box .news_item .news_articel_item .right-text{float:left;width:180px;padding-right:10px;overflow:hidden;text-overflow:ellipsis;}
#news_box .news_item .hr-line-dashed:last-child{display:none}
#news_box .hr-line-dashed{margin:6px 0 1px 0}
.page-style{bottom:0;width:100%;padding:0 10px;position:fixed;background:#fff;height:50px}
.page-style .pagination,.page-style .pagination-trigger{margin:10px 0!important;padding:0 10px!important;}
</style>
{/block}
{block name="body"}
<div class="news-container" id='news_box'>
{foreach $list as $vo}
<div class="news_item" data-news-id="{$vo.id}">
{foreach $vo.articles as $k => $v}
{if $k < 1}
<div class='news_articel_item' style='background-image:url("{$v.local_url}")'>
{if $v.title}<p>{$v.title}</p>{/if}
</div>
<div class="hr-line-dashed"></div>
{else}
<div class='news_articel_item other'>
<div class='right-text'>{$v.title}</div>
<div class='left-image' style='background-image:url("{$v.local_url}");'></div>
</div>
<div class="hr-line-dashed"></div>
{/if}
{/foreach}
</div>
{/foreach}
<div style="clear:both"></div>
{if empty($list)}<p class="help-block text-center well"> 哦!</p>{/if}
</div>
<div style="height:50px"></div>
<div class="page-style">{if isset($page)}{$page|raw}{/if}</div>
{/block}
{block name="script"}
<script>
require(['jquery.masonry'], function (Masonry){
var container = document.querySelector('#news_box');
var msnry = new Masonry(container,{itemSelector:'.news_item', columnWidth:0});
msnry.layout();
/* 事件处理 */
$('.news_item').on('mouseenter', '.news-box', function (){
$(this).addClass('active');
}).on('mouseleave', '.news-box', function (){
$(this).removeClass('active');
});
var seletor = '[name="{$Think.get.field|decode|default=0}"]';
if (seletor){
$('[data-news-id]').on('click', function (){
window.top.$(seletor).val($(this).attr('data-news-id')).trigger('change');
parent.layer.close(parent.layer.getFrameIndex(window.name))
});
}
// 分页事件处理
$('body').off('change', '.pagination-trigger select').on('change', '.pagination-trigger select', function (){
var urls = this.options[this.selectedIndex].getAttribute('data-url').split('#');
urls.shift();
window.location.href = urls.join('#');
}).off('click', '[data-open]').on('click', '[data-open]', function (){
var url = this.getAttribute('data-open');
window.location.href = url;
});
});
</script>
{/block}

View File

@ -1,178 +1,177 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="initial-scale=1,maximum-scale=1">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="__STATIC__/plugs/aui/aui.css">
</head>
<body class='aui-scroll-x'>
<style>
* {font-family: "Microsoft YaHei" !important;letter-spacing: .01rem}
html,body{display:block;height:100%;overflow:auto!important}
.aui-chat .aui-chat-media img {border-radius:0}
.aui-chat .aui-chat-inner {max-width:80%!important;}
.aui-chat .bg-white {background: #f5f5f5!important;border:1px solid #ccc;}
.aui-chat .time {color: #f5f5f5;background:rgba(0,0,0,.3);padding:.1rem .3rem;border-radius:.2rem;font-size:.5rem;}
.aui-chat .aui-chat-content .aui-chat-arrow.two {top:.7rem!important;background:#f5f5f5!important;left:-0.25rem!important;}
.aui-chat .aui-chat-content .aui-chat-arrow.one {top:.7rem!important;background:#f5f5f5!important;border:1px solid #ccc!important;left:-0.28rem!important;}
.aui-card-list-content-padded img {max-width: 100% !important;}
</style>
<script src="__STATIC__/plugs/jquery/jquery.min.js" type="text/javascript"></script>
{if ($type eq 'text') or ($type eq 'image') or ($type eq 'music')}
<section class="aui-chat">
<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 src="__STATIC__/theme/default/img/head.gif"/>
</div>
<div class="aui-chat-inner">
{if $type eq 'text'}
<div class="aui-chat-content bg-white">
<div class="aui-chat-arrow one"></div>
<div class="aui-chat-arrow two"></div>
{$content|default=''}
</div>
{elseif $type eq 'image'}
<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="__STATIC__/theme/default/img/image.png"}'/>
</div>
{elseif $type eq 'music'}
<div class="aui-chat-content" style='background:#080'>
<div class="aui-chat-arrow one" style="background:#080!important;"></div>
<div class="aui-chat-arrow two" style="background:#080!important;"></div>
<table>
<tr>
<td style='overflow:hidden;white-space:nowrap;color:#f5f5f5;min-width:100%'>
{$title|default=''}
</td>
<td style='overflow:hidden;white-space:nowrap;color:#f5f5f5;max-width:100%;' rowspan="2">
<div style='position:absolute;right:0;top:0;bottom:0;width:2.5rem;background:#080;border-radius:5px'></div>
<div style='width:1.5rem;height:1.5rem;background:#0a0;padding:.1rem;text-align:center;position:absolute;right:.5rem;top:1rem'>
<i style='font-size:1rem' class='aui-iconfont aui-icon-video'></i>
</div>
</td>
</tr>
<tr>
<td style='overflow:hidden;white-space:nowrap;color:#f5f5f5;font-size:.3rem;'>
{$desc|default=''}          
</td>
</tr>
</table>
</div>
{/if}
</div>
</div>
</section>
{elseif $type eq 'article'}
<section class="aui-content">
<div class="aui-card-list" style='margin-bottom:0'>
<div class="aui-card-list-header" style='font-size:1rem'>{$vo.title|default=''}</div>
<div class="aui-info" style='padding:0 15px'>
<div class="aui-info-item" style='font-size:0.8rem;color:#666'>
<span class="aui-margin-l-5">{:date('Y-m-d',strtotime($vo['create_at']))}</span>
<span class="aui-margin-l-5" style='color:#0099CC'>{$vo.author|default=''}</span>
</div>
</div>
{if $vo.show_cover_pic eq 1}
<div class="aui-card-list-content-padded"><img src="{$vo.local_url}"/></div>
{/if}
<div class="aui-card-list-content-padded" style="color:#333;font-size:0.8rem">{$vo.content|default=''}</div>
{if $vo.content_source_url}
<div class="aui-card-list-footer" style="color:#999;">
<div>
<a style='color:#0099CC' target='_blank' href='__SELF__'>阅读原文</a>
</div>
</div>
{/if}
</div>
</section>
{elseif $type eq 'video'}
<section class="aui-chat">
<div class="aui-chat-header"><span class="time">{:date('H:i')}</span></div>
<div class="aui-chat-item">
<div class="aui-chat-content"
style='background: #fff;border:1px solid #ccc;width:100%;max-width:100%;padding:0'>
<section class="aui-content">
<div class="aui-card-list" style='margin-bottom:0;background: none'>
<div class="aui-card-list-header"
style='padding:0 .3rem 0 .3rem;min-height:1.5rem;white-space:nowrap;overflow: hidden;text-overflow:ellipsis'>
{$title|default=''}
</div>
<div style='font-size:.5rem;padding:0 .3rem .3rem .3rem;color:#999'>{:date('m月d日')}</div>
<div class="aui-card-list-content-padded aui-border-b" style='padding:0 .3rem'>
<video src="{$url|default=''}" width="100%" controls preload></video>
</div>
<div class="aui-card-list-footer" style='min-height:.8rem;padding:.2rem .3rem'>
<div style='font-size:.55rem;white-space:nowrap;overflow: hidden;text-overflow:ellipsis '>
{$desc|default=''}
</div>
</div>
</div>
</section>
</div>
</div>
</section>
{elseif $type eq 'news'}
<section class="aui-chat">
<div class="aui-chat-header"><span class="time">{:date('H:i')}</span></div>
<div class="aui-chat-item">
<div class="aui-chat-content" style='background: #fff;border:1px solid #ccc;width:100%;max-width:100%;padding:0'>
<section class="aui-content">
{if !empty($articles)}
{foreach $articles as $key=>$vo}
{if count($articles) gt 1}
{if $key < 1}
<div data-href="{:url('wechat/review/index')}?content={$vo.id}&type=article" class="aui-card-list" style="cursor:pointer;margin:0;padding:.5rem .5rem .3rem .5rem;display:block;background:none">
<div class="aui-card-list-content" style='width:100%;height:10rem;background-repeat:no-repeat;background-image:url("{$vo.local_url}");background-position:center;background-size:cover'></div>
<div class="aui-card-list-header" style='left:.5rem;right:.5rem;position:absolute;bottom:0.2rem;display:block;max-height:6em;overflow:hidden;text-overflow:ellipsis;background:rgba(0,0,0,.8);color:#fff'>
{$vo.title|default=''}
</div>
</div>
{else}
<table data-href="{:url('wechat/review/index')}?content={$vo.id}&type=article" class="aui-border-t" style='cursor:pointer;width:100%;padding:0;margin:0;margin:0;padding:.3rem .5rem .5rem .5rem;'>
<tr style='width:100%;padding:0;margin:0;'>
<td style="text-overflow:ellipsis;overflow:hidden;display:inline-block;">{$vo.title}</td>
<td style='width:3rem;height:3rem;background-repeat:no-repeat;background-image:url("{$vo.local_url}");background-position:center;background-size:cover'></td>
</tr>
</table>
{/if}
{else}
<div class="aui-card-list" style="margin:0;padding:.5rem .5rem .3rem .5rem;display:block;background:none">
<div class="aui-card-list-header" style='padding:0;margin:0;min-height:1.2rem;display:block;overflow:hidden;text-overflow:ellipsis;'>
{$vo.title|default=''}
</div>
<div style="padding:5px 0;color:#999;min-height:1rem;display:block;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:12px">
{:date('m月d日')}
</div>
<div class="aui-card-list-content" style='width:100%;height:10rem;background-repeat:no-repeat;background-image:url("{$vo.local_url}");background-position:center;background-size:cover'></div>
<div class="aui-card-list-content-padded" style="color:#7b7b7b;padding:0;display:block;overflow:hidden;text-overflow:ellipsis">
{:str_replace([' ',"\n"],'',strip_tags($vo.digest))} ...
</div>
</div>
<div class="aui-card-list-content-padded aui-border-t" style="padding-top:.3rem">
<a class="aui-list-item-arrow" style="color:#333;font-size:.6rem;display:block" href="{:url('wechat/review/index')}?content={$vo.id}&type=article">阅读全文</a>
</div>
{/if}
{/foreach}
{/if}
</section>
</div>
</div>
</section>
<script>
$(function () {
$('[data-href]').on('click', function () {
window.location.href = this.getAttribute('data-href');
});
});
</script>
{/if}
</body>
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="initial-scale=1,maximum-scale=1">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="__STATIC__/plugs/aui/aui.css">
</head>
<body class='aui-scroll-x'>
<style>
* {font-family: "Microsoft YaHei" !important;letter-spacing: .01rem}
html,body{display:block;height:100%;overflow:auto!important}
.aui-chat .aui-chat-media img {border-radius:0}
.aui-chat .aui-chat-inner {max-width:80%!important;}
.aui-chat .bg-white {background: #f5f5f5!important;border:1px solid #ccc;}
.aui-chat .time {color: #f5f5f5;background:rgba(0,0,0,.3);padding:.1rem .3rem;border-radius:.2rem;font-size:.5rem;}
.aui-chat .aui-chat-content .aui-chat-arrow.two {top:.7rem!important;background:#f5f5f5!important;left:-0.25rem!important;}
.aui-chat .aui-chat-content .aui-chat-arrow.one {top:.7rem!important;background:#f5f5f5!important;border:1px solid #ccc!important;left:-0.28rem!important;}
.aui-card-list-content-padded img {max-width: 100% !important;}
</style>
<script src="__STATIC__/plugs/jquery/jquery.min.js" type="text/javascript"></script>
{if ($type eq 'text') or ($type eq 'image') or ($type eq 'music')}
<section class="aui-chat">
<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"/>
</div>
<div class="aui-chat-inner">
{if $type eq 'text'}
<div class="aui-chat-content bg-white">
<div class="aui-chat-arrow one"></div>
<div class="aui-chat-arrow two"></div>
{$content|default=''}
</div>
{elseif $type eq 'image'}
<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"}'/>
</div>
{elseif $type eq 'music'}
<div class="aui-chat-content" style='background:#080'>
<div class="aui-chat-arrow one" style="background:#080!important;"></div>
<div class="aui-chat-arrow two" style="background:#080!important;"></div>
<table>
<tr>
<td style='overflow:hidden;white-space:nowrap;color:#f5f5f5;min-width:100%'>
{$title|default=''}
</td>
<td style='overflow:hidden;white-space:nowrap;color:#f5f5f5;max-width:100%;' rowspan="2">
<div style='position:absolute;right:0;top:0;bottom:0;width:2.5rem;background:#080;border-radius:5px'></div>
<div style='width:1.5rem;height:1.5rem;background:#0a0;padding:.1rem;text-align:center;position:absolute;right:.5rem;top:1rem'>
<i style='font-size:1rem' class='aui-iconfont aui-icon-video'></i>
</div>
</td>
</tr>
<tr>
<td style='overflow:hidden;white-space:nowrap;color:#f5f5f5;font-size:.3rem;'>
{$desc|default=''}          
</td>
</tr>
</table>
</div>
{/if}
</div>
</div>
</section>
{elseif $type eq 'article'}
<section class="aui-content">
<div class="aui-card-list" style='margin-bottom:0'>
<div class="aui-card-list-header" style='font-size:1rem'>{$vo.title|default=''}</div>
<div class="aui-info" style='padding:0 15px'>
<div class="aui-info-item" style='font-size:0.8rem;color:#666'>
<span class="aui-margin-l-5">{:date('Y-m-d',strtotime($vo['create_at']))}</span>
<span class="aui-margin-l-5" style='color:#0099CC'>{$vo.author|default=''}</span>
</div>
</div>
{if $vo.show_cover_pic eq 1}
<div class="aui-card-list-content-padded"><img src="{$vo.local_url}"/></div>
{/if}
<div class="aui-card-list-content-padded" style="color:#333;font-size:0.8rem">{$vo.content|default=''|raw}</div>
{if $vo.content_source_url}
<div class="aui-card-list-footer" style="color:#999;">
<div>
<a style='color:#0099CC' target='_blank' href='{:request()->url()}'>阅读原文</a>
</div>
</div>
{/if}
</div>
</section>
{elseif $type eq 'video'}
<section class="aui-chat">
<div class="aui-chat-header"><span class="time">{:date('H:i')}</span></div>
<div class="aui-chat-item">
<div class="aui-chat-content"
style='background: #fff;border:1px solid #ccc;width:100%;max-width:100%;padding:0'>
<section class="aui-content">
<div class="aui-card-list" style='margin-bottom:0;background: none'>
<div class="aui-card-list-header" style='padding:0 .3rem 0 .3rem;min-height:1.5rem;white-space:nowrap;overflow: hidden;text-overflow:ellipsis'>
{$title|default=''}
</div>
<div style='font-size:.5rem;padding:0 .3rem .3rem .3rem;color:#999'>{:date('m月d日')}</div>
<div class="aui-card-list-content-padded aui-border-b" style='padding:0 .3rem'>
<video src="{$url|default=''}" width="100%" controls preload></video>
</div>
<div class="aui-card-list-footer" style='min-height:.8rem;padding:.2rem .3rem'>
<div style='font-size:.55rem;white-space:nowrap;overflow: hidden;text-overflow:ellipsis '>
{$desc|default=''}
</div>
</div>
</div>
</section>
</div>
</div>
</section>
{elseif $type eq 'news'}
<section class="aui-chat">
<div class="aui-chat-header"><span class="time">{:date('H:i')}</span></div>
<div class="aui-chat-item">
<div class="aui-chat-content" style='background: #fff;border:1px solid #ccc;width:100%;max-width:100%;padding:0'>
<section class="aui-content">
{if !empty($articles)}
{foreach $articles as $key=>$vo}
{if count($articles) gt 1}
{if $key < 1}
<div data-href="{:url('wechat/review/index')}?content={$vo.id}&type=article" class="aui-card-list" style="cursor:pointer;margin:0;padding:.5rem .5rem .3rem .5rem;display:block;background:none">
<div class="aui-card-list-content" style='width:100%;height:10rem;background-repeat:no-repeat;background-image:url("{$vo.local_url}");background-position:center;background-size:cover'></div>
<div class="aui-card-list-header" style='left:.5rem;right:.5rem;position:absolute;bottom:0.2rem;display:block;max-height:6em;overflow:hidden;text-overflow:ellipsis;background:rgba(0,0,0,.8);color:#fff'>
{$vo.title|default=''}
</div>
</div>
{else}
<table data-href="{:url('wechat/review/index')}?content={$vo.id}&type=article" class="aui-border-t" style='cursor:pointer;width:100%;margin:0;padding:.3rem .5rem .5rem .5rem;'>
<tr style='width:100%;padding:0;margin:0;'>
<td style="text-overflow:ellipsis;overflow:hidden;display:inline-block;">{$vo.title}</td>
<td style='width:3rem;height:3rem;background-repeat:no-repeat;background-image:url("{$vo.local_url}");background-position:center;background-size:cover'></td>
</tr>
</table>
{/if}
{else}
<div class="aui-card-list" style="margin:0;padding:.5rem .5rem .3rem .5rem;display:block;background:none">
<div class="aui-card-list-header" style='padding:0;margin:0;min-height:1.2rem;display:block;overflow:hidden;text-overflow:ellipsis;'>
{$vo.title|default=''}
</div>
<div style="padding:5px 0;color:#999;min-height:1rem;display:block;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:12px">
{:date('m月d日')}
</div>
<div class="aui-card-list-content" style='width:100%;height:10rem;background-repeat:no-repeat;background-image:url("{$vo.local_url}");background-position:center;background-size:cover'></div>
<div class="aui-card-list-content-padded" style="color:#7b7b7b;padding:0;display:block;overflow:hidden;text-overflow:ellipsis">
{:str_replace([' ',"\n"],'',strip_tags($vo.digest))} ...
</div>
</div>
<div class="aui-card-list-content-padded aui-border-t" style="padding-top:.3rem">
<a class="aui-list-item-arrow" style="color:#333;font-size:.6rem;display:block" href="{:url('wechat/review/index')}?content={$vo.id}&type=article">阅读全文</a>
</div>
{/if}
{/foreach}
{/if}
</section>
</div>
</div>
</section>
<script>
$(function () {
$('[data-href]').on('click', function () {
window.location.href = this.getAttribute('data-href');
});
});
</script>
{/if}
</body>
</html>

View File

@ -1,89 +0,0 @@
{extend name='extra@admin/content'}
{block name="button"}
<div class="nowrap pull-right" style="margin-top:10px">
<button data-modal="{:url('add')}" data-title="添加标签" class='layui-btn layui-btn-small'> 添加标签 </button>
<button data-load="{:url('sync')}" class='layui-btn layui-btn-small'> 同步标签 </button>
</div>
{/block}
{block name="content"}
<!-- 表单搜索 开始 -->
<form class="animated form-search" action="__SELF__" onsubmit="return false" method="get">
<div class="row">
<div class="col-xs-3">
<div class="form-group">
<input type="text" name="name" value="{$Think.get.name|default=''}" placeholder="标签" class="input-sm form-control">
</div>
</div>
<div class="col-xs-1">
<div class="form-group">
<button type="submit" class="btn btn-sm btn-white"><i class="fa fa-search"></i> 搜索</button>
</div>
</div>
</div>
</form>
<!-- 表单搜索 结束 -->
<form onsubmit="return false;" data-auto="" method="POST">
<input type="hidden" value="resort" name="action"/>
<table class="table table-hover">
<thead>
<tr>
<th class='list-table-check-td'>
<input data-none-auto="" data-check-target='.list-check-box' type='checkbox'/>
</th>
<th class='text-center'>ID</th>
<th class='text-center'>标签</th>
<th class='text-center'>类型</th>
<th class='text-center'>粉丝数</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.id}' type='checkbox'/>
</td>
<td class='text-center'>{$vo.id|default='0'}</td>
<td class='text-center'>{$vo.name|default=''}</td>
<td class='text-center'>{$vo.id < 100 ? "系统标签" : "自定义标签"}</td>
<td class='text-center'>{$vo.count|default=''}</td>
<td class='text-center nowrap'>
{if auth("$classuri/edit")}
{if $vo.id >= 100}
<span class="text-explode">|</span>
<a data-modal='{:url("$classuri/edit")}?id={$vo.id}' data-title="编辑标签" href="javascript:void(0)">编辑</a>
{else}
<a href="javascript:void(0)" style="color:#999">编辑</a>
{/if}
{/if}
{if auth("$classuri/del")}
<span class="text-explode">|</span>
{if $vo.id >= 100}
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("$classuri/del")}' href="javascript:void(0)">删除</a>
{else}
<a href="javascript:void(0)" style="color:#999">删除</a>
{/if}
{/if}
</td>
</tr>
{/foreach}
{if empty($list)}
<tr><td colspan="6" style="text-align:center"> !</td></tr>
{/if}
</tbody>
</table>
{if isset($page)}<p>{$page}</p>{/if}
</form>
{/block}

Some files were not shown because too many files have changed in this diff Show More