[更新]同步Framework代码

This commit is contained in:
Anyon 2019-04-30 17:48:27 +08:00
parent a629755132
commit 8e8e327a14
60 changed files with 1196 additions and 898 deletions

View File

@ -1,136 +1,200 @@
/* /*
Navicat Premium Data Transfer Navicat Premium Data Transfer
Source Server : ctolog.com Source Server : local.server.cuci.cc
Source Server Type : MySQL Source Server Type : MySQL
Source Server Version : 50562 Source Server Version : 50562
Source Host : 127.0.0.1:3306 Source Host : server.cuci.cc:3306
Source Schema : admin_v4 Source Schema : ThinkAdmin
Target Server Type : MySQL Target Server Type : MySQL
Target Server Version : 50562 Target Server Version : 50562
File Encoding : 65001 File Encoding : 65001
Date: 02/04/2019 13:45:37 Date: 30/04/2019 17:30:52
*/ */
SET NAMES utf8mb4; SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0; SET FOREIGN_KEY_CHECKS = 0;
-- ---------------------------- -- ----------------------------
-- Table structure for store_express -- Table structure for store_express_company
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS `store_express`; DROP TABLE IF EXISTS `store_express_company`;
CREATE TABLE `store_express` ( CREATE TABLE `store_express_company` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`express_title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '快递公司名称', `express_title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '快递公司名称',
`express_code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '快递公司代码', `express_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '快递公司代码',
`express_desc` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '快递公司描述', `express_desc` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '快递公司描述',
`status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0.无效,1.有效)', `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0.无效,1.有效)',
`sort` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '排序权重', `sort` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '排序权重',
`is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '删除状态(1删除,0未删除)', `is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '删除状态(1删除,0未删除)',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE
INDEX `index_store_express_code`(`express_code`) USING BTREE, ) ENGINE = InnoDB AUTO_INCREMENT = 95 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '商城-快递-公司';
INDEX `index_store_express_status`(`status`) USING BTREE,
INDEX `index_store_express_deleted`(`is_deleted`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 97 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商城-快递' ROW_FORMAT = Compact;
-- ---------------------------- -- ----------------------------
-- Records of store_express -- Records of store_express_company
-- ---------------------------- -- ----------------------------
INSERT INTO `store_express` VALUES (5, 'AAE全球专递', 'aae', NULL, 0, 0, 0, '2017-09-12 11:53:40'); INSERT INTO `store_express_company` VALUES (5, 'AAE全球专递', 'aae', NULL, 0, 0, 0, '2017-09-12 11:53:40');
INSERT INTO `store_express` VALUES (6, '安捷快递', 'anjie', '', 0, 0, 0, '2017-09-13 15:27:26'); INSERT INTO `store_express_company` VALUES (6, '安捷快递', 'anjie', '', 0, 0, 0, '2017-09-13 15:27:26');
INSERT INTO `store_express` VALUES (7, '安信达快递', 'anxindakuaixi', NULL, 0, 0, 0, '2017-09-13 16:05:19'); INSERT INTO `store_express_company` VALUES (7, '安信达快递', 'anxindakuaixi', NULL, 0, 0, 0, '2017-09-13 16:05:19');
INSERT INTO `store_express` VALUES (8, '彪记快递', 'biaojikuaidi', NULL, 0, 0, 0, '2017-09-13 16:05:26'); INSERT INTO `store_express_company` VALUES (8, '彪记快递', 'biaojikuaidi', NULL, 0, 0, 0, '2017-09-13 16:05:26');
INSERT INTO `store_express` VALUES (9, 'BHT', 'bht', '', 0, 0, 0, '2017-09-13 16:05:37'); INSERT INTO `store_express_company` VALUES (9, 'BHT', 'bht', '', 0, 0, 0, '2017-09-13 16:05:37');
INSERT INTO `store_express` VALUES (10, '百福东方国际物流', 'baifudongfang', NULL, 0, 0, 0, '2017-09-13 16:05:41'); INSERT INTO `store_express_company` VALUES (10, '百福东方国际物流', 'baifudongfang', NULL, 0, 0, 0, '2017-09-13 16:05:41');
INSERT INTO `store_express` VALUES (11, '中国东方COE', 'coe', NULL, 0, 0, 0, '2017-09-13 16:05:48'); INSERT INTO `store_express_company` VALUES (11, '中国东方COE', 'coe', NULL, 0, 0, 0, '2017-09-13 16:05:48');
INSERT INTO `store_express` VALUES (12, '长宇物流', 'changyuwuliu', NULL, 0, 0, 0, '2017-09-13 16:05:58'); INSERT INTO `store_express_company` VALUES (12, '长宇物流', 'changyuwuliu', NULL, 0, 0, 0, '2017-09-13 16:05:58');
INSERT INTO `store_express` VALUES (13, '大田物流', 'datianwuliu', NULL, 0, 0, 0, '2017-09-13 16:06:06'); INSERT INTO `store_express_company` VALUES (13, '大田物流', 'datianwuliu', NULL, 0, 0, 0, '2017-09-13 16:06:06');
INSERT INTO `store_express` VALUES (14, '德邦物流', 'debangwuliu', NULL, 1, 1, 0, '2017-09-13 16:06:14'); INSERT INTO `store_express_company` VALUES (14, '德邦物流', 'debangwuliu', '', 1, 1, 0, '2017-09-13 16:06:14');
INSERT INTO `store_express` VALUES (15, 'DHL', 'dhl', NULL, 0, 0, 0, '2017-09-13 16:06:24'); INSERT INTO `store_express_company` VALUES (15, 'DHL', 'dhl', NULL, 0, 0, 0, '2017-09-13 16:06:24');
INSERT INTO `store_express` VALUES (16, 'DPEX', 'dpex', NULL, 0, 0, 0, '2017-09-13 16:06:29'); INSERT INTO `store_express_company` VALUES (16, 'DPEX', 'dpex', NULL, 0, 0, 0, '2017-09-13 16:06:29');
INSERT INTO `store_express` VALUES (17, 'd速快递', 'dsukuaidi', NULL, 0, 0, 0, '2017-09-13 16:06:34'); INSERT INTO `store_express_company` VALUES (17, 'd速快递', 'dsukuaidi', NULL, 0, 0, 0, '2017-09-13 16:06:34');
INSERT INTO `store_express` VALUES (18, '递四方', 'disifang', NULL, 0, 0, 0, '2017-09-13 16:06:40'); INSERT INTO `store_express_company` VALUES (18, '递四方', 'disifang', NULL, 0, 0, 0, '2017-09-13 16:06:40');
INSERT INTO `store_express` VALUES (19, 'EMS快递', 'ems', '', 1, 0, 0, '2017-09-13 16:06:47'); INSERT INTO `store_express_company` VALUES (19, 'EMS快递', 'ems', '', 1, 0, 0, '2017-09-13 16:06:47');
INSERT INTO `store_express` VALUES (20, 'FEDEX国外', 'fedex', NULL, 0, 0, 0, '2017-09-13 16:06:56'); INSERT INTO `store_express_company` VALUES (20, 'FEDEX国外', 'fedex', NULL, 0, 0, 0, '2017-09-13 16:06:56');
INSERT INTO `store_express` VALUES (21, '飞康达物流', 'feikangda', NULL, 0, 0, 0, '2017-09-13 16:07:03'); INSERT INTO `store_express_company` VALUES (21, '飞康达物流', 'feikangda', NULL, 0, 0, 0, '2017-09-13 16:07:03');
INSERT INTO `store_express` VALUES (22, '凤凰快递', 'fenghuangkuaidi', NULL, 0, 0, 0, '2017-09-13 16:07:10'); INSERT INTO `store_express_company` VALUES (22, '凤凰快递', 'fenghuangkuaidi', NULL, 0, 0, 0, '2017-09-13 16:07:10');
INSERT INTO `store_express` VALUES (23, '飞快达', 'feikuaida', NULL, 0, 0, 0, '2017-09-13 16:07:16'); INSERT INTO `store_express_company` VALUES (23, '飞快达', 'feikuaida', NULL, 0, 0, 0, '2017-09-13 16:07:16');
INSERT INTO `store_express` VALUES (24, '国通快递', 'guotongkuaidi', NULL, 0, 0, 0, '2017-09-13 16:07:27'); INSERT INTO `store_express_company` VALUES (24, '国通快递', 'guotongkuaidi', NULL, 0, 0, 0, '2017-09-13 16:07:27');
INSERT INTO `store_express` VALUES (25, '港中能达物流', 'ganzhongnengda', NULL, 0, 0, 0, '2017-09-13 16:07:33'); INSERT INTO `store_express_company` VALUES (25, '港中能达物流', 'ganzhongnengda', NULL, 0, 0, 0, '2017-09-13 16:07:33');
INSERT INTO `store_express` VALUES (26, '广东邮政物流', 'guangdongyouzhengwuliu', NULL, 0, 0, 0, '2017-09-13 16:08:22'); INSERT INTO `store_express_company` VALUES (26, '广东邮政物流', 'guangdongyouzhengwuliu', NULL, 0, 0, 0, '2017-09-13 16:08:22');
INSERT INTO `store_express` VALUES (27, '共速达', 'gongsuda', NULL, 0, 0, 0, '2017-09-13 16:08:48'); INSERT INTO `store_express_company` VALUES (27, '共速达', 'gongsuda', NULL, 0, 0, 0, '2017-09-13 16:08:48');
INSERT INTO `store_express` VALUES (28, '汇通快运', 'huitongkuaidi', NULL, 1, 0, 0, '2017-09-13 16:08:56'); INSERT INTO `store_express_company` VALUES (28, '汇通快运', 'huitongkuaidi', NULL, 0, 0, 0, '2017-09-13 16:08:56');
INSERT INTO `store_express` VALUES (29, '恒路物流', 'hengluwuliu', NULL, 0, 0, 0, '2017-09-13 16:09:02'); INSERT INTO `store_express_company` VALUES (29, '恒路物流', 'hengluwuliu', NULL, 0, 0, 0, '2017-09-13 16:09:02');
INSERT INTO `store_express` VALUES (30, '华夏龙物流', 'huaxialongwuliu', NULL, 0, 0, 0, '2017-09-13 16:09:12'); INSERT INTO `store_express_company` VALUES (30, '华夏龙物流', 'huaxialongwuliu', NULL, 0, 0, 0, '2017-09-13 16:09:12');
INSERT INTO `store_express` VALUES (31, '海红', 'haihongwangsong', NULL, 0, 0, 0, '2017-09-13 16:09:20'); INSERT INTO `store_express_company` VALUES (31, '海红', 'haihongwangsong', NULL, 0, 0, 0, '2017-09-13 16:09:20');
INSERT INTO `store_express` VALUES (32, '海外环球', 'haiwaihuanqiu', NULL, 0, 0, 0, '2017-09-13 16:09:27'); INSERT INTO `store_express_company` VALUES (32, '海外环球', 'haiwaihuanqiu', NULL, 0, 0, 0, '2017-09-13 16:09:27');
INSERT INTO `store_express` VALUES (33, '佳怡物流', 'jiayiwuliu', NULL, 0, 0, 0, '2017-09-13 16:09:35'); INSERT INTO `store_express_company` VALUES (33, '佳怡物流', 'jiayiwuliu', NULL, 0, 0, 0, '2017-09-13 16:09:35');
INSERT INTO `store_express` VALUES (34, '京广速递', 'jinguangsudikuaijian', NULL, 0, 0, 0, '2017-09-13 16:09:42'); INSERT INTO `store_express_company` VALUES (34, '京广速递', 'jinguangsudikuaijian', NULL, 0, 0, 0, '2017-09-13 16:09:42');
INSERT INTO `store_express` VALUES (35, '急先达', 'jixianda', NULL, 0, 0, 0, '2017-09-13 16:09:49'); INSERT INTO `store_express_company` VALUES (35, '急先达', 'jixianda', NULL, 0, 0, 0, '2017-09-13 16:09:49');
INSERT INTO `store_express` VALUES (36, '佳吉物流', 'jjwl', NULL, 0, 0, 0, '2017-09-13 16:10:01'); INSERT INTO `store_express_company` VALUES (36, '佳吉物流', 'jjwl', NULL, 0, 0, 0, '2017-09-13 16:10:01');
INSERT INTO `store_express` VALUES (37, '加运美物流', 'jymwl', NULL, 0, 0, 0, '2017-09-13 16:10:13'); INSERT INTO `store_express_company` VALUES (37, '加运美物流', 'jymwl', NULL, 0, 0, 0, '2017-09-13 16:10:13');
INSERT INTO `store_express` VALUES (38, '金大物流', 'jindawuliu', NULL, 0, 0, 0, '2017-09-13 16:10:22'); INSERT INTO `store_express_company` VALUES (38, '金大物流', 'jindawuliu', NULL, 0, 0, 0, '2017-09-13 16:10:22');
INSERT INTO `store_express` VALUES (39, '嘉里大通', 'jialidatong', NULL, 0, 0, 0, '2017-09-13 16:10:33'); INSERT INTO `store_express_company` VALUES (39, '嘉里大通', 'jialidatong', NULL, 0, 0, 0, '2017-09-13 16:10:33');
INSERT INTO `store_express` VALUES (40, '晋越快递', 'jykd', NULL, 0, 0, 0, '2017-09-13 16:10:40'); INSERT INTO `store_express_company` VALUES (40, '晋越快递', 'jykd', NULL, 0, 0, 0, '2017-09-13 16:10:40');
INSERT INTO `store_express` VALUES (41, '快捷速递', 'kuaijiesudi', NULL, 0, 0, 0, '2017-09-13 16:10:49'); INSERT INTO `store_express_company` VALUES (41, '快捷速递', 'kuaijiesudi', NULL, 0, 0, 0, '2017-09-13 16:10:49');
INSERT INTO `store_express` VALUES (42, '联邦快递(国内)', 'lianb', NULL, 0, 0, 0, '2017-09-13 16:10:58'); INSERT INTO `store_express_company` VALUES (42, '联邦快递(国内)', 'lianb', NULL, 0, 0, 0, '2017-09-13 16:10:58');
INSERT INTO `store_express` VALUES (43, '联昊通物流', 'lianhaowuliu', NULL, 0, 0, 0, '2017-09-13 16:11:07'); INSERT INTO `store_express_company` VALUES (43, '联昊通物流', 'lianhaowuliu', NULL, 0, 0, 0, '2017-09-13 16:11:07');
INSERT INTO `store_express` VALUES (44, '龙邦物流', 'longbanwuliu', NULL, 0, 0, 0, '2017-09-13 16:11:15'); INSERT INTO `store_express_company` VALUES (44, '龙邦物流', 'longbanwuliu', NULL, 0, 0, 0, '2017-09-13 16:11:15');
INSERT INTO `store_express` VALUES (45, '立即送', 'lijisong', NULL, 0, 0, 0, '2017-09-13 16:11:25'); INSERT INTO `store_express_company` VALUES (45, '立即送', 'lijisong', NULL, 0, 0, 0, '2017-09-13 16:11:25');
INSERT INTO `store_express` VALUES (46, '乐捷递', 'lejiedi', NULL, 0, 0, 0, '2017-09-13 16:11:36'); INSERT INTO `store_express_company` VALUES (46, '乐捷递', 'lejiedi', NULL, 0, 0, 0, '2017-09-13 16:11:36');
INSERT INTO `store_express` VALUES (47, '民航快递', 'minghangkuaidi', NULL, 0, 0, 0, '2017-09-13 16:11:45'); INSERT INTO `store_express_company` VALUES (47, '民航快递', 'minghangkuaidi', NULL, 0, 0, 0, '2017-09-13 16:11:45');
INSERT INTO `store_express` VALUES (48, '美国快递', 'meiguokuaidi', NULL, 0, 0, 0, '2017-09-13 16:11:53'); INSERT INTO `store_express_company` VALUES (48, '美国快递', 'meiguokuaidi', NULL, 0, 0, 0, '2017-09-13 16:11:53');
INSERT INTO `store_express` VALUES (49, '门对门', 'menduimen', NULL, 0, 0, 0, '2017-09-13 16:12:01'); INSERT INTO `store_express_company` VALUES (49, '门对门', 'menduimen', NULL, 0, 0, 0, '2017-09-13 16:12:01');
INSERT INTO `store_express` VALUES (50, 'OCS', 'ocs', NULL, 0, 0, 0, '2017-09-13 16:12:10'); INSERT INTO `store_express_company` VALUES (50, 'OCS', 'ocs', NULL, 0, 0, 0, '2017-09-13 16:12:10');
INSERT INTO `store_express` VALUES (51, '配思货运', 'peisihuoyunkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:18'); INSERT INTO `store_express_company` VALUES (51, '配思货运', 'peisihuoyunkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:18');
INSERT INTO `store_express` VALUES (52, '全晨快递', 'quanchenkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:26'); INSERT INTO `store_express_company` VALUES (52, '全晨快递', 'quanchenkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:26');
INSERT INTO `store_express` VALUES (53, '全峰快递', 'quanfengkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:34'); INSERT INTO `store_express_company` VALUES (53, '全峰快递', 'quanfengkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:34');
INSERT INTO `store_express` VALUES (54, '全际通物流', 'quanjitong', NULL, 0, 0, 0, '2017-09-13 16:12:41'); INSERT INTO `store_express_company` VALUES (54, '全际通物流', 'quanjitong', NULL, 0, 0, 0, '2017-09-13 16:12:41');
INSERT INTO `store_express` VALUES (55, '全日通快递', 'quanritongkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:49'); INSERT INTO `store_express_company` VALUES (55, '全日通快递', 'quanritongkuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:49');
INSERT INTO `store_express` VALUES (56, '全一快递', 'quanyikuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:56'); INSERT INTO `store_express_company` VALUES (56, '全一快递', 'quanyikuaidi', NULL, 0, 0, 0, '2017-09-13 16:12:56');
INSERT INTO `store_express` VALUES (57, '如风达', 'rufengda', NULL, 0, 0, 0, '2017-09-13 16:13:03'); INSERT INTO `store_express_company` VALUES (57, '如风达', 'rufengda', NULL, 0, 0, 0, '2017-09-13 16:13:03');
INSERT INTO `store_express` VALUES (58, '三态速递', 'santaisudi', NULL, 0, 0, 0, '2017-09-13 16:13:15'); INSERT INTO `store_express_company` VALUES (58, '三态速递', 'santaisudi', NULL, 0, 0, 0, '2017-09-13 16:13:15');
INSERT INTO `store_express` VALUES (59, '盛辉物流', 'shenghuiwuliu', NULL, 0, 0, 0, '2017-09-13 16:13:22'); INSERT INTO `store_express_company` VALUES (59, '盛辉物流', 'shenghuiwuliu', NULL, 0, 0, 0, '2017-09-13 16:13:22');
INSERT INTO `store_express` VALUES (60, '申通', 'shentong', NULL, 1, 0, 0, '2017-09-13 16:13:34'); INSERT INTO `store_express_company` VALUES (60, '申通', 'shentong', NULL, 0, 0, 0, '2017-09-13 16:13:34');
INSERT INTO `store_express` VALUES (61, '顺丰', 'shunfeng', '', 0, 0, 0, '2017-09-13 16:13:41'); INSERT INTO `store_express_company` VALUES (61, '顺丰', 'shunfeng', '', 0, 0, 0, '2017-09-13 16:13:41');
INSERT INTO `store_express` VALUES (62, '速尔物流', 'sue', NULL, 1, 0, 0, '2017-09-13 16:13:48'); INSERT INTO `store_express_company` VALUES (62, '速尔物流', 'sue', NULL, 0, 0, 0, '2017-09-13 16:13:48');
INSERT INTO `store_express` VALUES (63, '盛丰物流', 'shengfeng', NULL, 0, 0, 0, '2017-09-13 16:13:55'); INSERT INTO `store_express_company` VALUES (63, '盛丰物流', 'shengfeng', NULL, 0, 0, 0, '2017-09-13 16:13:55');
INSERT INTO `store_express` VALUES (64, '赛澳递', 'saiaodi', NULL, 0, 0, 0, '2017-09-13 16:14:02'); INSERT INTO `store_express_company` VALUES (64, '赛澳递', 'saiaodi', NULL, 0, 0, 0, '2017-09-13 16:14:02');
INSERT INTO `store_express` VALUES (65, '天地华宇', 'tiandihuayu', NULL, 0, 0, 0, '2017-09-13 16:14:11'); INSERT INTO `store_express_company` VALUES (65, '天地华宇', 'tiandihuayu', NULL, 0, 0, 0, '2017-09-13 16:14:11');
INSERT INTO `store_express` VALUES (66, '天天快递', 'tiantian', NULL, 1, 0, 0, '2017-09-13 16:14:19'); INSERT INTO `store_express_company` VALUES (66, '天天快递', 'tiantian', NULL, 0, 0, 0, '2017-09-13 16:14:19');
INSERT INTO `store_express` VALUES (67, 'TNT', 'tnt', NULL, 0, 0, 0, '2017-09-13 16:14:26'); INSERT INTO `store_express_company` VALUES (67, 'TNT', 'tnt', NULL, 0, 0, 0, '2017-09-13 16:14:26');
INSERT INTO `store_express` VALUES (68, 'UPS', 'ups', NULL, 0, 0, 0, '2017-09-13 16:14:29'); INSERT INTO `store_express_company` VALUES (68, 'UPS', 'ups', NULL, 0, 0, 0, '2017-09-13 16:14:29');
INSERT INTO `store_express` VALUES (69, '万家物流', 'wanjiawuliu', NULL, 0, 0, 0, '2017-09-13 16:14:37'); INSERT INTO `store_express_company` VALUES (69, '万家物流', 'wanjiawuliu', NULL, 0, 0, 0, '2017-09-13 16:14:37');
INSERT INTO `store_express` VALUES (70, '文捷航空速递', 'wenjiesudi', NULL, 0, 0, 0, '2017-09-13 16:14:46'); INSERT INTO `store_express_company` VALUES (70, '文捷航空速递', 'wenjiesudi', NULL, 0, 0, 0, '2017-09-13 16:14:46');
INSERT INTO `store_express` VALUES (71, '伍圆', 'wuyuan', NULL, 0, 0, 0, '2017-09-13 16:14:52'); INSERT INTO `store_express_company` VALUES (71, '伍圆', 'wuyuan', NULL, 0, 0, 0, '2017-09-13 16:14:52');
INSERT INTO `store_express` VALUES (72, '万象物流', 'wxwl', NULL, 0, 0, 0, '2017-09-13 16:15:00'); INSERT INTO `store_express_company` VALUES (72, '万象物流', 'wxwl', NULL, 0, 0, 0, '2017-09-13 16:15:00');
INSERT INTO `store_express` VALUES (73, '新邦物流', 'xinbangwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:06'); INSERT INTO `store_express_company` VALUES (73, '新邦物流', 'xinbangwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:06');
INSERT INTO `store_express` VALUES (74, '信丰物流', 'xinfengwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:15'); INSERT INTO `store_express_company` VALUES (74, '信丰物流', 'xinfengwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:15');
INSERT INTO `store_express` VALUES (75, '亚风速递', 'yafengsudi', NULL, 0, 0, 0, '2017-09-13 16:15:23'); INSERT INTO `store_express_company` VALUES (75, '亚风速递', 'yafengsudi', NULL, 0, 0, 0, '2017-09-13 16:15:23');
INSERT INTO `store_express` VALUES (76, '一邦速递', 'yibangwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:30'); INSERT INTO `store_express_company` VALUES (76, '一邦速递', 'yibangwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:30');
INSERT INTO `store_express` VALUES (77, '优速物流', 'youshuwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:36'); INSERT INTO `store_express_company` VALUES (77, '优速物流', 'youshuwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:36');
INSERT INTO `store_express` VALUES (78, '邮政包裹挂号信', 'youzhengguonei', NULL, 0, 3, 0, '2017-09-13 16:15:44'); INSERT INTO `store_express_company` VALUES (78, '邮政包裹挂号信', 'youzhengguonei', NULL, 0, 3, 0, '2017-09-13 16:15:44');
INSERT INTO `store_express` VALUES (79, '邮政国际包裹挂号信', 'youzhengguoji', NULL, 1, 2, 0, '2017-09-13 16:15:51'); INSERT INTO `store_express_company` VALUES (79, '邮政国际包裹挂号信', 'youzhengguoji', NULL, 0, 2, 0, '2017-09-13 16:15:51');
INSERT INTO `store_express` VALUES (80, '远成物流', 'yuanchengwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:57'); INSERT INTO `store_express_company` VALUES (80, '远成物流', 'yuanchengwuliu', NULL, 0, 0, 0, '2017-09-13 16:15:57');
INSERT INTO `store_express` VALUES (81, '圆通速递', 'yuantong', NULL, 1, 1, 0, '2017-09-13 16:16:03'); INSERT INTO `store_express_company` VALUES (81, '圆通速递', 'yuantong', '', 1, 1, 0, '2017-09-13 16:16:03');
INSERT INTO `store_express` VALUES (82, '源伟丰快递', 'yuanweifeng', NULL, 0, 0, 0, '2017-09-13 16:16:10'); INSERT INTO `store_express_company` VALUES (82, '源伟丰快递', 'yuanweifeng', NULL, 0, 0, 0, '2017-09-13 16:16:10');
INSERT INTO `store_express` VALUES (83, '元智捷诚快递', 'yuanzhijiecheng', NULL, 0, 0, 0, '2017-09-13 16:16:17'); INSERT INTO `store_express_company` VALUES (83, '元智捷诚快递', 'yuanzhijiecheng', NULL, 0, 0, 0, '2017-09-13 16:16:17');
INSERT INTO `store_express` VALUES (84, '韵达快运', 'yunda', NULL, 1, 0, 0, '2017-09-13 16:16:24'); INSERT INTO `store_express_company` VALUES (84, '韵达快运', 'yunda', NULL, 0, 0, 0, '2017-09-13 16:16:24');
INSERT INTO `store_express` VALUES (85, '运通快递', 'yuntongkuaidi', NULL, 0, 0, 0, '2017-09-13 16:16:33'); INSERT INTO `store_express_company` VALUES (85, '运通快递', 'yuntongkuaidi', NULL, 0, 0, 0, '2017-09-13 16:16:33');
INSERT INTO `store_express` VALUES (86, '越丰物流', 'yuefengwuliu', NULL, 0, 0, 0, '2017-09-13 16:16:40'); INSERT INTO `store_express_company` VALUES (86, '越丰物流', 'yuefengwuliu', NULL, 0, 0, 0, '2017-09-13 16:16:40');
INSERT INTO `store_express` VALUES (87, '源安达', 'yad', NULL, 0, 0, 0, '2017-09-13 16:16:47'); INSERT INTO `store_express_company` VALUES (87, '源安达', 'yad', NULL, 0, 0, 0, '2017-09-13 16:16:47');
INSERT INTO `store_express` VALUES (88, '银捷速递', 'yinjiesudi', NULL, 0, 0, 0, '2017-09-13 16:16:56'); INSERT INTO `store_express_company` VALUES (88, '银捷速递', 'yinjiesudi', NULL, 0, 0, 0, '2017-09-13 16:16:56');
INSERT INTO `store_express` VALUES (89, '宅急送', 'zhaijisong', NULL, 0, 0, 0, '2017-09-13 16:17:03'); INSERT INTO `store_express_company` VALUES (89, '宅急送', 'zhaijisong', NULL, 0, 0, 0, '2017-09-13 16:17:03');
INSERT INTO `store_express` VALUES (90, '中铁快运', 'zhongtiekuaiyun', NULL, 0, 0, 0, '2017-09-13 16:17:10'); INSERT INTO `store_express_company` VALUES (90, '中铁快运', 'zhongtiekuaiyun', NULL, 0, 0, 0, '2017-09-13 16:17:10');
INSERT INTO `store_express` VALUES (91, '中通速递', 'zhongtong', '', 1, 0, 0, '2017-09-13 16:17:16'); INSERT INTO `store_express_company` VALUES (91, '中通速递', 'zhongtong', '', 0, 0, 0, '2017-09-13 16:17:16');
INSERT INTO `store_express` VALUES (92, '中邮物流', 'zhongyouwuliu', NULL, 0, 0, 0, '2017-09-13 16:17:27'); INSERT INTO `store_express_company` VALUES (92, '中邮物流', 'zhongyouwuliu', NULL, 0, 0, 0, '2017-09-13 16:17:27');
INSERT INTO `store_express` VALUES (93, '忠信达', 'zhongxinda', NULL, 0, 0, 0, '2017-09-13 16:17:34'); INSERT INTO `store_express_company` VALUES (93, '忠信达', 'zhongxinda', NULL, 0, 0, 0, '2017-09-13 16:17:34');
INSERT INTO `store_express` VALUES (94, '芝麻开门', 'zhimakaimen', NULL, 1, 0, 1, '2017-09-13 16:17:41'); INSERT INTO `store_express_company` VALUES (94, '芝麻开门', 'zhimakaimen', '', 0, 0, 0, '2017-09-13 16:17:41');
INSERT INTO `store_express` VALUES (95, '中通快运', 'zhongtongkuaiyun', '', 1, 0, 0, '2019-03-28 15:04:41');
INSERT INTO `store_express` VALUES (96, '德邦快递', 'debangkuaidi', '', 1, 0, 0, '2019-03-28 15:05:30'); -- ----------------------------
-- Table structure for store_express_province
-- ----------------------------
DROP TABLE IF EXISTS `store_express_province`;
CREATE TABLE `store_express_province` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '地区名称',
`sort` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '排序权限',
`status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '数据状态',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_express_province_title`(`title`) USING BTREE,
INDEX `index_store_express_province_status`(`status`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3261 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商城-快递-省份';
-- ----------------------------
-- Records of store_express_province
-- ----------------------------
INSERT INTO `store_express_province` VALUES (1, '北京市', 1, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (19, '天津市', 2, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (37, '河北省', 3, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (217, '山西省', 4, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (348, '内蒙古自治区', 5, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (464, '辽宁省', 6, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (579, '吉林省', 7, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (649, '黑龙江省', 8, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (792, '上海市', 9, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (810, '江苏省', 10, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (920, '浙江省', 11, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1021, '安徽省', 12, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1143, '福建省', 13, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1238, '江西省', 14, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1350, '山东省', 15, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1505, '河南省', 16, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1681, '湖北省', 17, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1798, '湖南省', 18, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (1935, '广东省', 19, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2079, '广西壮族自治区', 20, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2205, '海南省', 21, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2236, '重庆市', 22, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2277, '四川省', 23, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2482, '贵州省', 24, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2580, '云南省', 25, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2726, '西藏自治区', 26, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2808, '陕西省', 27, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (2926, '甘肃省', 28, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (3027, '青海省', 29, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (3080, '宁夏回族自治区', 30, 1, '2017-09-12 11:53:40');
INSERT INTO `store_express_province` VALUES (3108, '新疆维吾尔自治区', 31, 1, '2017-09-12 11:53:40');
-- ----------------------------
-- Table structure for store_express_template
-- ----------------------------
DROP TABLE IF EXISTS `store_express_template`;
CREATE TABLE `store_express_template` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`rule` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '省份规则内容',
`order_reduction_state` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '订单满减状态',
`order_reduction_price` decimal(20, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '订单满减金额',
`first_number` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '首件数量',
`first_price` decimal(20, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '首件邮费',
`next_number` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '续件数量',
`next_price` decimal(20, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '续件邮费',
`is_default` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '默认规则',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_express_template_is_default`(`is_default`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商城-快递-模板';
-- ---------------------------- -- ----------------------------
-- Table structure for store_goods -- Table structure for store_goods
@ -157,7 +221,7 @@ CREATE TABLE `store_goods` (
INDEX `index_store_goods_status`(`status`) USING BTREE, INDEX `index_store_goods_status`(`status`) USING BTREE,
INDEX `index_store_goods_cate_id`(`cate_id`) USING BTREE, INDEX `index_store_goods_cate_id`(`cate_id`) USING BTREE,
INDEX `index_store_goods_is_deleted`(`is_deleted`) USING BTREE INDEX `index_store_goods_is_deleted`(`is_deleted`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-记录' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-记录';
-- ---------------------------- -- ----------------------------
-- Table structure for store_goods_cate -- Table structure for store_goods_cate
@ -175,7 +239,7 @@ CREATE TABLE `store_goods_cate` (
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_goods_cate_is_deleted`(`is_deleted`) USING BTREE, INDEX `index_store_goods_cate_is_deleted`(`is_deleted`) USING BTREE,
INDEX `index_store_goods_cate_status`(`status`) USING BTREE INDEX `index_store_goods_cate_status`(`status`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-分类' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-分类';
-- ---------------------------- -- ----------------------------
-- Table structure for store_goods_list -- Table structure for store_goods_list
@ -190,13 +254,14 @@ CREATE TABLE `store_goods_list` (
`number_sales` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '销售数量', `number_sales` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '销售数量',
`number_stock` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '商品库存', `number_stock` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '商品库存',
`number_virtual` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '虚拟销量', `number_virtual` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '虚拟销量',
`number_express` bigint(20) UNSIGNED NULL DEFAULT 1 COMMENT '快递数量',
`status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '商品状态', `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '商品状态',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_goods_list_id`(`goods_id`) USING BTREE, INDEX `index_store_goods_list_id`(`goods_id`) USING BTREE,
INDEX `index_store_goods_list_spec`(`goods_spec`) USING BTREE, INDEX `index_store_goods_list_spec`(`goods_spec`) USING BTREE,
INDEX `index_store_goods_list_status`(`status`) USING BTREE INDEX `index_store_goods_list_status`(`status`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-详情' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-详情';
-- ---------------------------- -- ----------------------------
-- Table structure for store_goods_stock -- Table structure for store_goods_stock
@ -210,8 +275,8 @@ CREATE TABLE `store_goods_stock` (
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_goods_stock_gid`(`goods_id`) USING BTREE, INDEX `index_store_goods_stock_gid`(`goods_id`) USING BTREE,
INDEX `index_store_goods_stock_spec`(`goods_spec`) USING BTREE INDEX `index_store_goods_stock_spec`(`goods_spec`(191)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-入库' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品-入库';
-- ---------------------------- -- ----------------------------
-- Table structure for store_member -- Table structure for store_member
@ -231,7 +296,7 @@ CREATE TABLE `store_member` (
INDEX `index_store_member_openid`(`openid`) USING BTREE, INDEX `index_store_member_openid`(`openid`) USING BTREE,
INDEX `index_store_member_phone`(`phone`) USING BTREE, INDEX `index_store_member_phone`(`phone`) USING BTREE,
INDEX `index_store_member_vip_level`(`vip_level`) USING BTREE INDEX `index_store_member_vip_level`(`vip_level`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员-记录' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员-记录';
-- ---------------------------- -- ----------------------------
-- Table structure for store_member_address -- Table structure for store_member_address
@ -251,7 +316,7 @@ CREATE TABLE `store_member_address` (
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_member_address_mid`(`mid`) USING BTREE, INDEX `index_store_member_address_mid`(`mid`) USING BTREE,
INDEX `index_store_member_address_is_default`(`is_default`) USING BTREE INDEX `index_store_member_address_is_default`(`is_default`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员-收货地址' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员-地址';
-- ---------------------------- -- ----------------------------
-- Table structure for store_member_sms_history -- Table structure for store_member_sms_history
@ -267,7 +332,7 @@ CREATE TABLE `store_member_sms_history` (
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_member_sms_history_phone`(`phone`) USING BTREE, INDEX `index_store_member_sms_history_phone`(`phone`) USING BTREE,
INDEX `index_store_member_sms_history_mid`(`mid`) USING BTREE INDEX `index_store_member_sms_history_mid`(`mid`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员-短信' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员-短信';
-- ---------------------------- -- ----------------------------
-- Table structure for store_order -- Table structure for store_order
@ -318,7 +383,7 @@ CREATE TABLE `store_order` (
INDEX `index_store_groups_order_refund_state`(`refund_state`) USING BTREE, INDEX `index_store_groups_order_refund_state`(`refund_state`) USING BTREE,
INDEX `index_store_groups_order_status`(`status`) USING BTREE, INDEX `index_store_groups_order_status`(`status`) USING BTREE,
INDEX `index_store_groups_order_pay_no`(`pay_no`) USING BTREE INDEX `index_store_groups_order_pay_no`(`pay_no`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '订单-记录' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '订单-记录';
-- ---------------------------- -- ----------------------------
-- Table structure for store_order_list -- Table structure for store_order_list
@ -329,7 +394,6 @@ CREATE TABLE `store_order_list` (
`mid` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '会员ID', `mid` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '会员ID',
`from_id` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '推荐会员', `from_id` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '推荐会员',
`order_no` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '订单单号', `order_no` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '订单单号',
`number` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '交易数量',
`goods_id` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '商品标识', `goods_id` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '商品标识',
`goods_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '商品标题', `goods_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '商品标题',
`goods_logo` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '商品图标', `goods_logo` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '商品图标',
@ -340,11 +404,13 @@ CREATE TABLE `store_order_list` (
`price_express` decimal(20, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '快递费用', `price_express` decimal(20, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '快递费用',
`price_rate` decimal(20, 4) UNSIGNED NULL DEFAULT 0.0000 COMMENT '分成比例', `price_rate` decimal(20, 4) UNSIGNED NULL DEFAULT 0.0000 COMMENT '分成比例',
`price_rate_amount` decimal(20, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '分成金额', `price_rate_amount` decimal(20, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '分成金额',
`number_goods` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '商品数量',
`number_express` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '快递数量',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_goods_list_id`(`goods_id`) USING BTREE, INDEX `index_store_goods_list_id`(`goods_id`) USING BTREE,
INDEX `index_store_goods_list_spec`(`goods_spec`) USING BTREE INDEX `index_store_goods_list_spec`(`goods_spec`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '订单-详情' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '订单-详情';
-- ---------------------------- -- ----------------------------
-- Table structure for store_profit_record -- Table structure for store_profit_record
@ -360,7 +426,7 @@ CREATE TABLE `store_profit_record` (
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_store_member_phone`(`profit_price`) USING BTREE INDEX `index_store_member_phone`(`profit_price`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '拥金-记录' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '拥金-记录';
-- ---------------------------- -- ----------------------------
-- Table structure for store_profit_used -- Table structure for store_profit_used
@ -384,7 +450,7 @@ CREATE TABLE `store_profit_used` (
INDEX `index_store_profit_used_mid`(`mid`) USING BTREE, INDEX `index_store_profit_used_mid`(`mid`) USING BTREE,
INDEX `index_store_profit_used_appid`(`appid`) USING BTREE, INDEX `index_store_profit_used_appid`(`appid`) USING BTREE,
INDEX `index_store_profit_used_status`(`status`) USING BTREE INDEX `index_store_profit_used_status`(`status`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '拥金-提现' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '拥金-提现';
-- ---------------------------- -- ----------------------------
-- Table structure for system_auth -- Table structure for system_auth
@ -400,7 +466,7 @@ CREATE TABLE `system_auth` (
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_system_auth_status`(`status`) USING BTREE, INDEX `index_system_auth_status`(`status`) USING BTREE,
INDEX `index_system_auth_title`(`title`) USING BTREE INDEX `index_system_auth_title`(`title`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-权限' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-权限';
-- ---------------------------- -- ----------------------------
-- Table structure for system_auth_node -- Table structure for system_auth_node
@ -412,8 +478,8 @@ CREATE TABLE `system_auth_node` (
`node` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '节点', `node` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '节点',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_system_auth_auth`(`auth`) USING BTREE, INDEX `index_system_auth_auth`(`auth`) USING BTREE,
INDEX `index_system_auth_node`(`node`) USING BTREE INDEX `index_system_auth_node`(`node`(191)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-权限-授权' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-权限-授权';
-- ---------------------------- -- ----------------------------
-- Table structure for system_config -- Table structure for system_config
@ -425,7 +491,7 @@ CREATE TABLE `system_config` (
`value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '配置值', `value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '配置值',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_system_config_name`(`name`) USING BTREE INDEX `index_system_config_name`(`name`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 70 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-配置' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 70 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-配置';
-- ---------------------------- -- ----------------------------
-- Records of system_config -- Records of system_config
@ -454,8 +520,8 @@ INSERT INTO `system_config` VALUES (45, 'wechat_mch_id', '1332187001');
INSERT INTO `system_config` VALUES (46, 'wechat_mch_key', 'A82DC5BD1F3359081049C568D8502BC5'); INSERT INTO `system_config` VALUES (46, 'wechat_mch_key', 'A82DC5BD1F3359081049C568D8502BC5');
INSERT INTO `system_config` VALUES (47, 'wechat_mch_ssl_type', 'p12'); INSERT INTO `system_config` VALUES (47, 'wechat_mch_ssl_type', 'p12');
INSERT INTO `system_config` VALUES (48, 'wechat_mch_ssl_p12', '65b8e4f56718182d/1bc857ee646aa15d.p12'); INSERT INTO `system_config` VALUES (48, 'wechat_mch_ssl_p12', '65b8e4f56718182d/1bc857ee646aa15d.p12');
INSERT INTO `system_config` VALUES (49, 'wechat_mch_ssl_key', ''); INSERT INTO `system_config` VALUES (49, 'wechat_mch_ssl_key', 'cc2e3e1345123930/c407d033294f283d.pem');
INSERT INTO `system_config` VALUES (50, 'wechat_mch_ssl_cer', ''); INSERT INTO `system_config` VALUES (50, 'wechat_mch_ssl_cer', '966eaf89299e9c95/7014872cc109b29a.pem');
INSERT INTO `system_config` VALUES (51, 'wechat_token', 'mytoken'); INSERT INTO `system_config` VALUES (51, 'wechat_token', 'mytoken');
INSERT INTO `system_config` VALUES (52, 'wechat_appid', 'wx60a43dd8161666d4'); INSERT INTO `system_config` VALUES (52, 'wechat_appid', 'wx60a43dd8161666d4');
INSERT INTO `system_config` VALUES (53, 'wechat_appsecret', '9978422e0e431643d4b42868d183d60b'); INSERT INTO `system_config` VALUES (53, 'wechat_appsecret', '9978422e0e431643d4b42868d183d60b');
@ -463,10 +529,10 @@ INSERT INTO `system_config` VALUES (54, 'wechat_encodingaeskey', '');
INSERT INTO `system_config` VALUES (55, 'wechat_push_url', '消息推送地址http://127.0.0.1:8000/wechat/api.push'); INSERT INTO `system_config` VALUES (55, 'wechat_push_url', '消息推送地址http://127.0.0.1:8000/wechat/api.push');
INSERT INTO `system_config` VALUES (56, 'wechat_type', 'thr'); INSERT INTO `system_config` VALUES (56, 'wechat_type', 'thr');
INSERT INTO `system_config` VALUES (57, 'wechat_thr_appid', 'wx60a43dd8161666d4'); INSERT INTO `system_config` VALUES (57, 'wechat_thr_appid', 'wx60a43dd8161666d4');
INSERT INTO `system_config` VALUES (58, 'wechat_thr_appkey', '8007da35fd45afe88f2ccc05fe22324d'); INSERT INTO `system_config` VALUES (58, 'wechat_thr_appkey', 'cb1610a7030b373c233d2921a8f81f21');
INSERT INTO `system_config` VALUES (60, 'wechat_thr_appurl', '消息推送地址http://127.0.0.1:8000/wechat/api.push'); INSERT INTO `system_config` VALUES (60, 'wechat_thr_appurl', '消息推送地址http://127.0.0.1:8000/wechat/api.push');
INSERT INTO `system_config` VALUES (61, 'component_appid', 'wx1b8278fa121d8dc6'); INSERT INTO `system_config` VALUES (61, 'component_appid', 'wx28b58798480874f9');
INSERT INTO `system_config` VALUES (62, 'component_appsecret', 'cf5af39408fb3b977584a40d399d298c'); INSERT INTO `system_config` VALUES (62, 'component_appsecret', '87ddce1cc24e4cd691039f926febd942');
INSERT INTO `system_config` VALUES (63, 'component_token', 'P8QHTIxpBEq88IrxatqhgpBm2OAQROkI'); INSERT INTO `system_config` VALUES (63, 'component_token', 'P8QHTIxpBEq88IrxatqhgpBm2OAQROkI');
INSERT INTO `system_config` VALUES (64, 'component_encodingaeskey', 'L5uFIa0U6KLalPyXckyqoVIJYLhsfrg8k9YzybZIHsx'); INSERT INTO `system_config` VALUES (64, 'component_encodingaeskey', 'L5uFIa0U6KLalPyXckyqoVIJYLhsfrg8k9YzybZIHsx');
INSERT INTO `system_config` VALUES (65, 'system_message_state', '0'); INSERT INTO `system_config` VALUES (65, 'system_message_state', '0');
@ -485,7 +551,7 @@ CREATE TABLE `system_data` (
`value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '配置值', `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '配置值',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_system_data_name`(`name`) USING BTREE INDEX `index_system_data_name`(`name`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-数据' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-数据';
-- ---------------------------- -- ----------------------------
-- Records of system_data -- Records of system_data
@ -497,8 +563,8 @@ INSERT INTO `system_data` VALUES (1, 'menudata', '[{\"name\":\"请输入名称\"
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS `system_jobs`; DROP TABLE IF EXISTS `system_jobs`;
CREATE TABLE `system_jobs` ( CREATE TABLE `system_jobs` (
`id` int(11) NOT NULL AUTO_INCREMENT, `id` bigint(20) NOT NULL AUTO_INCREMENT,
`queue` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `queue` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`attempts` bigint(20) UNSIGNED NOT NULL DEFAULT 0, `attempts` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`reserved` bigint(20) UNSIGNED NOT NULL DEFAULT 0, `reserved` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
@ -510,8 +576,9 @@ CREATE TABLE `system_jobs` (
INDEX `index_system_jobs_attempts`(`attempts`) USING BTREE, INDEX `index_system_jobs_attempts`(`attempts`) USING BTREE,
INDEX `index_system_jobs_reserved_at`(`reserved_at`) USING BTREE, INDEX `index_system_jobs_reserved_at`(`reserved_at`) USING BTREE,
INDEX `index_system_jobs_available_at`(`available_at`) USING BTREE, INDEX `index_system_jobs_available_at`(`available_at`) USING BTREE,
INDEX `index_system_jobs_create_at`(`created_at`) USING BTREE INDEX `index_system_jobs_create_at`(`created_at`) USING BTREE,
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-任务' ROW_FORMAT = Compact; INDEX `index_system_jobs_queue`(`queue`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-任务';
-- ---------------------------- -- ----------------------------
-- Table structure for system_jobs_log -- Table structure for system_jobs_log
@ -531,7 +598,7 @@ CREATE TABLE `system_jobs_log` (
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_system_jobs_log_status`(`status`) USING BTREE INDEX `index_system_jobs_log_status`(`status`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-任务-日志' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-任务-日志';
-- ---------------------------- -- ----------------------------
-- Table structure for system_log -- Table structure for system_log
@ -546,7 +613,13 @@ CREATE TABLE `system_log` (
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '操作人用户名', `username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '操作人用户名',
`create_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-日志' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-日志';
-- ----------------------------
-- Records of system_log
-- ----------------------------
INSERT INTO `system_log` VALUES (1, 'admin/login/index', '127.0.0.1', '系统管理', '用户登录系统成功', 'admin', '2019-04-30 13:49:46');
INSERT INTO `system_log` VALUES (2, 'admin/login/index', '127.0.0.1', '系统管理', '用户登录系统成功', 'admin', '2019-04-30 17:14:22');
-- ---------------------------- -- ----------------------------
-- Table structure for system_menu -- Table structure for system_menu
@ -565,51 +638,53 @@ CREATE TABLE `system_menu` (
`status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0:禁用,1:启用)', `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0:禁用,1:启用)',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_system_menu_node`(`node`) USING BTREE, INDEX `index_system_menu_node`(`node`(191)) USING BTREE,
INDEX `index_system_menu_status`(`status`) USING BTREE INDEX `index_system_menu_status`(`status`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 51 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-菜单' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 54 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-菜单';
-- ---------------------------- -- ----------------------------
-- Records of system_menu -- Records of system_menu
-- ---------------------------- -- ----------------------------
INSERT INTO `system_menu` VALUES (1, 0, '后台首页', '', '', 'admin/index/main', '', '_self', 100, 1, '2018-09-05 17:59:38'); INSERT INTO `system_menu` VALUES (1, 0, '后台首页', '', '', 'admin/index/main', '', '_self', 100, 1, '2018-09-05 17:59:38');
INSERT INTO `system_menu` VALUES (2, 0, '系统管理', '', '', '#', '', '_self', 300, 1, '2018-09-05 18:04:52'); INSERT INTO `system_menu` VALUES (2, 0, '系统管理', '', '', '#', '', '_self', 300, 1, '2018-09-05 18:04:52');
INSERT INTO `system_menu` VALUES (3, 12, '系统菜单', '', 'layui-icon layui-icon-layouts', 'admin/menu/index', '', '_self', 3, 1, '2018-09-05 18:05:26'); INSERT INTO `system_menu` VALUES (3, 12, '系统菜单管理', '', 'layui-icon layui-icon-layouts', 'admin/menu/index', '', '_self', 3, 1, '2018-09-05 18:05:26');
INSERT INTO `system_menu` VALUES (4, 2, '系统配置', '', '', '#', '', '_self', 10, 1, '2018-09-05 18:07:17'); INSERT INTO `system_menu` VALUES (4, 2, '系统配置', '', '', '#', '', '_self', 10, 1, '2018-09-05 18:07:17');
INSERT INTO `system_menu` VALUES (5, 12, '用户管理', '', 'layui-icon layui-icon-username', 'admin/user/index', '', '_self', 4, 1, '2018-09-06 11:10:42'); INSERT INTO `system_menu` VALUES (5, 12, '系统用户管理', '', 'layui-icon layui-icon-username', 'admin/user/index', '', '_self', 4, 1, '2018-09-06 11:10:42');
INSERT INTO `system_menu` VALUES (6, 12, '节点管理', '', 'layui-icon layui-icon-template', 'admin/node/index', '', '_self', 1, 1, '2018-09-06 14:16:13'); INSERT INTO `system_menu` VALUES (6, 12, '功能节点管理', '', 'layui-icon layui-icon-template', 'admin/node/index', '', '_self', 1, 1, '2018-09-06 14:16:13');
INSERT INTO `system_menu` VALUES (7, 12, '权限管理', '', 'layui-icon layui-icon-vercode', 'admin/auth/index', '', '_self', 2, 1, '2018-09-06 15:17:14'); INSERT INTO `system_menu` VALUES (7, 12, '访问权限管理', '', 'layui-icon layui-icon-vercode', 'admin/auth/index', '', '_self', 2, 1, '2018-09-06 15:17:14');
INSERT INTO `system_menu` VALUES (10, 4, '文件存储', '', 'layui-icon layui-icon-template-1', 'admin/config/file', '', '_self', 2, 1, '2018-09-06 16:43:19'); INSERT INTO `system_menu` VALUES (10, 4, '文件存储配置', '', 'layui-icon layui-icon-template-1', 'admin/config/file', '', '_self', 2, 1, '2018-09-06 16:43:19');
INSERT INTO `system_menu` VALUES (11, 4, '系统参数', '', 'layui-icon layui-icon-set', 'admin/config/info', '', '_self', 1, 1, '2018-09-06 16:43:47'); INSERT INTO `system_menu` VALUES (11, 4, '系统参数配置', '', 'layui-icon layui-icon-set', 'admin/config/info', '', '_self', 1, 1, '2018-09-06 16:43:47');
INSERT INTO `system_menu` VALUES (12, 2, '权限管理', '', '', '#', '', '_self', 20, 1, '2018-09-06 18:01:31'); INSERT INTO `system_menu` VALUES (12, 2, '权限管理', '', '', '#', '', '_self', 20, 1, '2018-09-06 18:01:31');
INSERT INTO `system_menu` VALUES (13, 0, '商城管理', '', '', '#', '', '_self', 200, 1, '2018-10-12 13:56:29'); INSERT INTO `system_menu` VALUES (13, 0, '商城管理', '', '', '#', '', '_self', 200, 1, '2018-10-12 13:56:29');
INSERT INTO `system_menu` VALUES (14, 48, '商品管理', '', 'layui-icon layui-icon-component', 'store/goods/index', '', '_self', 30, 1, '2018-10-12 13:56:48'); INSERT INTO `system_menu` VALUES (14, 48, '商品信息管理', '', 'layui-icon layui-icon-component', 'store/goods/index', '', '_self', 30, 1, '2018-10-12 13:56:48');
INSERT INTO `system_menu` VALUES (16, 0, '微信管理', '', '', '#', '', '_self', 210, 1, '2018-10-31 15:15:27'); INSERT INTO `system_menu` VALUES (16, 0, '微信管理', '', '', '#', '', '_self', 210, 1, '2018-10-31 15:15:27');
INSERT INTO `system_menu` VALUES (17, 16, '微信管理', '', '', '#', '', '_self', 10, 1, '2018-10-31 15:16:46'); INSERT INTO `system_menu` VALUES (17, 16, '微信管理', '', '', '#', '', '_self', 10, 1, '2018-10-31 15:16:46');
INSERT INTO `system_menu` VALUES (18, 17, '微信配置', '', 'layui-icon layui-icon-set', 'wechat/config/options', '', '_self', 1, 1, '2018-10-31 15:17:11'); INSERT INTO `system_menu` VALUES (18, 17, '微信授权配置', '', 'layui-icon layui-icon-set', 'wechat/config/options', '', '_self', 1, 1, '2018-10-31 15:17:11');
INSERT INTO `system_menu` VALUES (19, 17, '支付配置', '', 'layui-icon layui-icon-rmb', 'wechat/config/payment', '', '_self', 2, 1, '2018-10-31 18:28:09'); INSERT INTO `system_menu` VALUES (19, 17, '微信支付配置', '', 'layui-icon layui-icon-rmb', 'wechat/config/payment', '', '_self', 2, 1, '2018-10-31 18:28:09');
INSERT INTO `system_menu` VALUES (20, 16, '微信定制', '', '', '#', '', '_self', 20, 1, '2018-11-13 11:46:27'); INSERT INTO `system_menu` VALUES (20, 16, '微信定制', '', '', '#', '', '_self', 20, 1, '2018-11-13 11:46:27');
INSERT INTO `system_menu` VALUES (21, 20, '图文管理', '', 'layui-icon layui-icon-template', 'wechat/news/index', '', '_self', 1, 1, '2018-11-13 11:46:55'); INSERT INTO `system_menu` VALUES (21, 20, '图文素材管理', '', 'layui-icon layui-icon-template', 'wechat/news/index', '', '_self', 1, 1, '2018-11-13 11:46:55');
INSERT INTO `system_menu` VALUES (22, 20, '粉丝管理', '', 'layui-icon layui-icon-user', 'wechat/fans/index', '', '_self', 2, 1, '2018-11-15 09:51:13'); INSERT INTO `system_menu` VALUES (22, 20, '粉丝信息管理', '', 'layui-icon layui-icon-user', 'wechat/fans/index', '', '_self', 2, 1, '2018-11-15 09:51:13');
INSERT INTO `system_menu` VALUES (23, 20, '回复规则', '', 'layui-icon layui-icon-engine', 'wechat/keys/index', '', '_self', 3, 1, '2018-11-22 11:29:08'); INSERT INTO `system_menu` VALUES (23, 20, '回复规则管理', '', 'layui-icon layui-icon-engine', 'wechat/keys/index', '', '_self', 3, 1, '2018-11-22 11:29:08');
INSERT INTO `system_menu` VALUES (24, 20, '关注回复', '', 'layui-icon layui-icon-senior', 'wechat/keys/subscribe', '', '_self', 4, 1, '2018-11-27 11:45:28'); INSERT INTO `system_menu` VALUES (24, 20, '关注回复配置', '', 'layui-icon layui-icon-senior', 'wechat/keys/subscribe', '', '_self', 4, 1, '2018-11-27 11:45:28');
INSERT INTO `system_menu` VALUES (25, 20, '默认回复', '', 'layui-icon layui-icon-survey', 'wechat/keys/defaults', '', '_self', 5, 1, '2018-11-27 11:45:58'); INSERT INTO `system_menu` VALUES (25, 20, '默认回复配置', '', 'layui-icon layui-icon-survey', 'wechat/keys/defaults', '', '_self', 5, 1, '2018-11-27 11:45:58');
INSERT INTO `system_menu` VALUES (26, 20, '微信菜单', '', 'layui-icon layui-icon-cellphone', 'wechat/menu/index', '', '_self', 6, 1, '2018-11-27 17:56:56'); INSERT INTO `system_menu` VALUES (26, 20, '微信菜单管理', '', 'layui-icon layui-icon-cellphone', 'wechat/menu/index', '', '_self', 6, 1, '2018-11-27 17:56:56');
INSERT INTO `system_menu` VALUES (27, 4, '任务管理', '', 'layui-icon layui-icon-log', 'admin/queue/index', '', '_self', 3, 1, '2018-11-29 11:13:34'); INSERT INTO `system_menu` VALUES (27, 4, '系统任务管理', '', 'layui-icon layui-icon-log', 'admin/queue/index', '', '_self', 3, 1, '2018-11-29 11:13:34');
INSERT INTO `system_menu` VALUES (35, 4, '消息管理', '', 'layui-icon layui-icon-notice', 'admin/message/index', '', '_self', 4, 1, '2018-12-24 14:03:52'); INSERT INTO `system_menu` VALUES (35, 4, '系统消息管理', '', 'layui-icon layui-icon-notice', 'admin/message/index', '', '_self', 4, 1, '2018-12-24 14:03:52');
INSERT INTO `system_menu` VALUES (37, 0, '开放平台', '', '', '#', '', '_self', 220, 1, '2018-12-28 13:29:25'); INSERT INTO `system_menu` VALUES (37, 0, '开放平台', '', '', '#', '', '_self', 220, 1, '2018-12-28 13:29:25');
INSERT INTO `system_menu` VALUES (38, 40, '开放平台配置', '', 'layui-icon layui-icon-set', 'service/config/index', '', '_self', 0, 1, '2018-12-28 13:29:44'); INSERT INTO `system_menu` VALUES (38, 40, '开放平台配置', '', 'layui-icon layui-icon-set', 'service/config/index', '', '_self', 0, 1, '2018-12-28 13:29:44');
INSERT INTO `system_menu` VALUES (39, 40, '公众授权管理', '', 'layui-icon layui-icon-template-1', 'service/index/index', '', '_self', 0, 1, '2018-12-28 13:30:07'); INSERT INTO `system_menu` VALUES (39, 40, '公众授权管理', '', 'layui-icon layui-icon-template-1', 'service/index/index', '', '_self', 0, 1, '2018-12-28 13:30:07');
INSERT INTO `system_menu` VALUES (40, 37, '开放平台管理', '', '', '#', '', '_self', 0, 1, '2018-12-28 16:05:46'); INSERT INTO `system_menu` VALUES (40, 37, '开放平台管理', '', '', '#', '', '_self', 0, 1, '2018-12-28 16:05:46');
INSERT INTO `system_menu` VALUES (42, 48, '会员管理', '', 'layui-icon layui-icon-username', 'store/member/index', '', '_self', 50, 1, '2019-01-22 14:24:23'); INSERT INTO `system_menu` VALUES (42, 48, '会员信息管理', '', 'layui-icon layui-icon-user', 'store/member/index', '', '_self', 50, 1, '2019-01-22 14:24:23');
INSERT INTO `system_menu` VALUES (43, 48, '订单管理', '', 'layui-icon layui-icon-template-1', 'store/order/index', '', '_self', 40, 1, '2019-01-22 14:46:22'); INSERT INTO `system_menu` VALUES (43, 48, '订单记录管理', '', 'layui-icon layui-icon-template-1', 'store/order/index', '', '_self', 40, 1, '2019-01-22 14:46:22');
INSERT INTO `system_menu` VALUES (44, 48, '商品分类', '', 'layui-icon layui-icon-app', 'store/goods_cate/index', '', '_self', 20, 1, '2019-01-23 10:41:06'); INSERT INTO `system_menu` VALUES (44, 48, '商品分类管理', '', 'layui-icon layui-icon-app', 'store/goods_cate/index', '', '_self', 20, 1, '2019-01-23 10:41:06');
INSERT INTO `system_menu` VALUES (45, 47, '商城配置', '', 'layui-icon layui-icon-set', 'store/config/index', '', '_self', 10, 1, '2019-01-24 16:47:33'); INSERT INTO `system_menu` VALUES (45, 47, '商城参数配置', '', 'layui-icon layui-icon-set', 'store/config/index', '', '_self', 10, 1, '2019-01-24 16:47:33');
INSERT INTO `system_menu` VALUES (46, 47, '短信记录', '', 'layui-icon layui-icon-tabs', 'store/message/index', '', '_self', 30, 1, '2019-01-24 18:09:58'); INSERT INTO `system_menu` VALUES (46, 47, '短信发送记录', '', 'layui-icon layui-icon-console', 'store/message/index', '', '_self', 30, 1, '2019-01-24 18:09:58');
INSERT INTO `system_menu` VALUES (47, 13, '商城配置', '', '', '#', '', '_self', 10, 1, '2019-01-25 16:47:49'); INSERT INTO `system_menu` VALUES (47, 13, '商城配置', '', '', '#', '', '_self', 10, 1, '2019-01-25 16:47:49');
INSERT INTO `system_menu` VALUES (48, 13, '数据管理', '', '', '#', '', '_self', 20, 1, '2019-01-25 16:48:35'); INSERT INTO `system_menu` VALUES (48, 13, '数据管理', '', '', '#', '', '_self', 20, 1, '2019-01-25 16:48:35');
INSERT INTO `system_menu` VALUES (49, 4, '系统日志', '', 'layui-icon layui-icon-form', 'admin/log/index', '', '_self', 5, 1, '2019-02-18 12:56:56'); INSERT INTO `system_menu` VALUES (49, 4, '系统日志管理', '', 'layui-icon layui-icon-form', 'admin/log/index', '', '_self', 5, 1, '2019-02-18 12:56:56');
INSERT INTO `system_menu` VALUES (50, 47, '快递管理', '', 'layui-icon layui-icon-release', 'store/express/index', '', '_self', 40, 1, '2019-04-01 17:10:59'); INSERT INTO `system_menu` VALUES (50, 47, '快递公司管理', '', 'layui-icon layui-icon-form', 'store/express_company/index', '', '_self', 40, 1, '2019-04-01 17:10:59');
INSERT INTO `system_menu` VALUES (52, 47, '邮费模板管理', '', 'layui-icon layui-icon-fonts-clear', 'store/express_template/index', '', '_self', 60, 1, '2019-04-23 13:17:10');
INSERT INTO `system_menu` VALUES (53, 47, '配送省份管理', '', 'layui-icon layui-icon-location', 'store/express_province/index', '', '_self', 55, 1, '2019-04-24 14:47:27');
-- ---------------------------- -- ----------------------------
-- Table structure for system_message -- Table structure for system_message
@ -629,7 +704,7 @@ CREATE TABLE `system_message` (
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_system_message_code`(`code`) USING BTREE INDEX `index_system_message_code`(`code`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-消息' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-消息';
-- ---------------------------- -- ----------------------------
-- Table structure for system_node -- Table structure for system_node
@ -648,136 +723,114 @@ CREATE TABLE `system_node` (
INDEX `index_system_node_is_menu`(`is_menu`) USING BTREE, INDEX `index_system_node_is_menu`(`is_menu`) USING BTREE,
INDEX `index_system_node_is_auth`(`is_auth`) USING BTREE, INDEX `index_system_node_is_auth`(`is_auth`) USING BTREE,
INDEX `index_system_node_is_login`(`is_login`) USING BTREE INDEX `index_system_node_is_login`(`is_login`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 187 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-节点' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 110 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-节点';
-- ---------------------------- -- ----------------------------
-- Records of system_node -- Records of system_node
-- ---------------------------- -- ----------------------------
INSERT INTO `system_node` VALUES (1, 'admin', '系统管理', 0, 1, 1, '2018-09-06 14:20:42'); INSERT INTO `system_node` VALUES (1, 'admin', '系统管理', 0, 1, 1, '2019-04-30 17:18:30');
INSERT INTO `system_node` VALUES (2, 'admin/menu', '菜单管理', 0, 1, 1, '2018-09-06 14:23:01'); INSERT INTO `system_node` VALUES (2, 'admin/auth/index', '系统权限管理', 1, 1, 1, '2019-04-30 17:18:32');
INSERT INTO `system_node` VALUES (3, 'admin/menu/index', '菜单列表', 1, 1, 1, '2018-09-06 14:23:01'); INSERT INTO `system_node` VALUES (3, 'admin/auth/apply', '权限配置节点', 0, 1, 1, '2019-04-30 17:18:33');
INSERT INTO `system_node` VALUES (4, 'admin/menu/edit', '编辑菜单', 0, 1, 1, '2018-09-06 14:23:01'); INSERT INTO `system_node` VALUES (4, 'admin/auth/add', '添加系统权限', 0, 1, 1, '2019-04-30 17:18:33');
INSERT INTO `system_node` VALUES (5, 'admin/menu/add', '添加菜单', 0, 1, 1, '2018-09-06 14:23:01'); INSERT INTO `system_node` VALUES (5, 'admin/auth/edit', '编辑系统权限', 0, 1, 1, '2019-04-30 17:18:33');
INSERT INTO `system_node` VALUES (6, 'admin/menu/resume', '启用菜单', 0, 1, 1, '2018-09-06 14:23:01'); INSERT INTO `system_node` VALUES (6, 'admin/auth/forbid', '禁用系统权限', 0, 1, 1, '2019-04-30 17:18:33');
INSERT INTO `system_node` VALUES (7, 'admin/menu/forbid', '禁用菜单', 0, 1, 1, '2018-09-06 14:23:02'); INSERT INTO `system_node` VALUES (7, 'admin/auth/resume', '启用系统权限', 0, 1, 1, '2019-04-30 17:18:33');
INSERT INTO `system_node` VALUES (8, 'admin/menu/del', '删除菜单', 0, 1, 1, '2018-09-06 14:23:02'); INSERT INTO `system_node` VALUES (8, 'admin/auth/del', '删除系统权限', 0, 1, 1, '2019-04-30 17:18:33');
INSERT INTO `system_node` VALUES (9, 'admin/node/index', '节点列表', 1, 1, 1, '2018-09-06 14:24:20'); INSERT INTO `system_node` VALUES (9, 'admin/config/info', '系统参数配置', 1, 1, 1, '2019-04-30 17:18:34');
INSERT INTO `system_node` VALUES (10, 'admin/node/clear', '清理节点', 0, 1, 1, '2018-09-06 14:24:20'); INSERT INTO `system_node` VALUES (10, 'admin/config/file', '文件存储配置', 1, 1, 1, '2019-04-30 17:18:34');
INSERT INTO `system_node` VALUES (11, 'admin/node/save', '更新节点', 0, 1, 1, '2018-09-06 14:24:20'); INSERT INTO `system_node` VALUES (11, 'admin/log/index', '系统操作日志', 1, 1, 1, '2019-04-30 17:18:35');
INSERT INTO `system_node` VALUES (12, 'admin/user/index', '用户列表', 1, 1, 1, '2018-09-06 14:24:21'); INSERT INTO `system_node` VALUES (12, 'admin/log/del', '删除系统日志', 0, 1, 1, '2019-04-30 17:18:35');
INSERT INTO `system_node` VALUES (13, 'admin/user/auth', '用户授权', 0, 1, 1, '2018-09-06 14:24:21'); INSERT INTO `system_node` VALUES (13, 'admin/menu/index', '系统菜单管理', 1, 1, 1, '2019-04-30 17:18:36');
INSERT INTO `system_node` VALUES (14, 'admin/user/add', '添加用户', 0, 1, 1, '2018-09-06 14:24:21'); INSERT INTO `system_node` VALUES (14, 'admin/menu/add', '添加系统菜单', 0, 1, 1, '2019-04-30 17:18:36');
INSERT INTO `system_node` VALUES (15, 'admin/user/edit', '编辑用户', 0, 1, 1, '2018-09-06 14:24:21'); INSERT INTO `system_node` VALUES (15, 'admin/menu/edit', '编辑系统菜单', 0, 1, 1, '2019-04-30 17:18:37');
INSERT INTO `system_node` VALUES (16, 'admin/user/pass', '修改密码', 0, 1, 1, '2018-09-06 14:24:22'); INSERT INTO `system_node` VALUES (16, 'admin/menu/resume', '启用系统菜单', 0, 1, 1, '2019-04-30 17:18:37');
INSERT INTO `system_node` VALUES (17, 'admin/user/del', '删除用户', 0, 1, 1, '2018-09-06 14:24:22'); INSERT INTO `system_node` VALUES (17, 'admin/menu/forbid', '禁用系统菜单', 0, 1, 1, '2019-04-30 17:18:37');
INSERT INTO `system_node` VALUES (18, 'admin/user/forbid', '禁用用户', 0, 1, 1, '2018-09-06 14:24:22'); INSERT INTO `system_node` VALUES (18, 'admin/menu/del', '删除系统菜单', 0, 1, 1, '2019-04-30 17:18:37');
INSERT INTO `system_node` VALUES (19, 'admin/user/resume', '启用用户', 0, 1, 1, '2018-09-06 14:24:22'); INSERT INTO `system_node` VALUES (19, 'admin/message/index', '', 1, 1, 1, '2019-04-30 17:18:38');
INSERT INTO `system_node` VALUES (20, 'admin/node', '节点管理', 0, 1, 1, '2018-09-06 14:35:36'); INSERT INTO `system_node` VALUES (20, 'admin/message/state', '设置消息状态', 0, 1, 1, '2019-04-30 17:18:38');
INSERT INTO `system_node` VALUES (21, 'admin/user', '用户管理', 0, 1, 1, '2018-09-06 14:36:09'); INSERT INTO `system_node` VALUES (21, 'admin/message/del', '删除系统消息', 0, 1, 1, '2019-04-30 17:18:38');
INSERT INTO `system_node` VALUES (22, 'admin/auth', '权限管理', 0, 1, 1, '2018-09-06 15:16:10'); INSERT INTO `system_node` VALUES (22, 'admin/message/clear', '清理所有消息', 0, 1, 1, '2019-04-30 17:18:38');
INSERT INTO `system_node` VALUES (23, 'admin/auth/index', '权限列表', 1, 1, 1, '2018-09-06 15:16:10'); INSERT INTO `system_node` VALUES (23, 'admin/message/onoff', '设置消息开关', 0, 1, 1, '2019-04-30 17:18:38');
INSERT INTO `system_node` VALUES (24, 'admin/auth/apply', '节点授权', 0, 1, 1, '2018-09-06 15:16:10'); INSERT INTO `system_node` VALUES (24, 'admin/node/index', '系统节点管理', 1, 1, 1, '2019-04-30 17:18:40');
INSERT INTO `system_node` VALUES (25, 'admin/auth/add', '添加授权', 0, 1, 1, '2018-09-06 15:16:10'); INSERT INTO `system_node` VALUES (25, 'admin/node/clear', '清理无效的节点', 0, 1, 1, '2019-04-30 17:18:40');
INSERT INTO `system_node` VALUES (26, 'admin/auth/edit', '编辑权限', 0, 1, 1, '2018-09-06 15:16:10'); INSERT INTO `system_node` VALUES (26, 'admin/node/save', '更新节点数据', 0, 1, 1, '2019-04-30 17:18:40');
INSERT INTO `system_node` VALUES (27, 'admin/auth/forbid', '禁用权限', 0, 1, 1, '2018-09-06 15:16:11'); INSERT INTO `system_node` VALUES (27, 'admin/queue/index', '系统消息任务', 1, 1, 1, '2019-04-30 17:18:40');
INSERT INTO `system_node` VALUES (28, 'admin/auth/resume', '启用权限', 0, 1, 1, '2018-09-06 15:16:11'); INSERT INTO `system_node` VALUES (28, 'admin/queue/redo', '重置失败的任务', 0, 1, 1, '2019-04-30 17:18:41');
INSERT INTO `system_node` VALUES (29, 'admin/auth/del', '删除权限', 0, 1, 1, '2018-09-06 15:16:11'); INSERT INTO `system_node` VALUES (29, 'admin/queue/del', '删除消息任务', 0, 1, 1, '2019-04-30 17:18:41');
INSERT INTO `system_node` VALUES (30, 'admin/config', '参数配置', 0, 1, 1, '2018-09-06 16:41:18'); INSERT INTO `system_node` VALUES (30, 'admin/user/index', '系统用户管理', 1, 1, 1, '2019-04-30 17:18:42');
INSERT INTO `system_node` VALUES (32, 'admin/config/file', '文件存储', 1, 1, 1, '2018-09-06 16:41:19'); INSERT INTO `system_node` VALUES (31, 'admin/user/auth', '用户授权管理', 0, 1, 1, '2019-04-30 17:18:42');
INSERT INTO `system_node` VALUES (34, 'admin/config/info', '系统信息', 1, 1, 1, '2018-09-06 16:42:10'); INSERT INTO `system_node` VALUES (32, 'admin/user/add', '添加系统用户', 0, 1, 1, '2019-04-30 17:18:42');
INSERT INTO `system_node` VALUES (36, 'store/goods/index', '商品列表', 1, 1, 1, '2018-10-12 13:54:45'); INSERT INTO `system_node` VALUES (33, 'admin/user/edit', '编辑系统用户', 0, 1, 1, '2019-04-30 17:18:43');
INSERT INTO `system_node` VALUES (37, 'store/goods/add', '添加商品', 0, 1, 1, '2018-10-12 13:54:45'); INSERT INTO `system_node` VALUES (34, 'admin/user/pass', '修改用户密码', 0, 1, 1, '2019-04-30 17:18:43');
INSERT INTO `system_node` VALUES (38, 'store/goods/edit', '编辑商品', 0, 1, 1, '2018-10-12 13:54:46'); INSERT INTO `system_node` VALUES (35, 'admin/user/del', '删除系统用户', 0, 1, 1, '2019-04-30 17:18:43');
INSERT INTO `system_node` VALUES (39, 'store', '商城管理', 0, 1, 1, '2018-10-12 13:54:53'); INSERT INTO `system_node` VALUES (36, 'admin/user/forbid', '禁用系统用户', 0, 1, 1, '2019-04-30 17:18:43');
INSERT INTO `system_node` VALUES (40, 'store/goods', '商品管理', 0, 1, 1, '2018-10-12 13:55:20'); INSERT INTO `system_node` VALUES (37, 'admin/user/resume', '启用系统用户', 0, 1, 1, '2019-04-30 17:18:43');
INSERT INTO `system_node` VALUES (41, 'store/goods/forbid', '禁用商品', 0, 1, 1, '2018-10-12 16:49:02'); INSERT INTO `system_node` VALUES (38, 'service', '开放平台', 0, 1, 1, '2019-04-30 17:20:46');
INSERT INTO `system_node` VALUES (42, 'store/goods/resume', '启用商品', 0, 1, 1, '2018-10-16 18:31:42'); INSERT INTO `system_node` VALUES (39, 'service/config/index', '开放平台参数配置', 1, 1, 1, '2019-04-30 17:20:47');
INSERT INTO `system_node` VALUES (43, 'store/goods/del', '删除商品', 0, 1, 1, '2018-10-16 18:31:50'); INSERT INTO `system_node` VALUES (40, 'service/index/index', '授权公众号管理', 1, 1, 1, '2019-04-30 17:20:48');
INSERT INTO `system_node` VALUES (44, 'store/goods/stock', '商品入库', 0, 1, 1, '2018-10-22 17:58:37'); INSERT INTO `system_node` VALUES (41, 'service/index/clearquota', '清理调用次数', 0, 1, 1, '2019-04-30 17:20:48');
INSERT INTO `system_node` VALUES (45, 'wechat', '微信模块', 0, 1, 1, '2018-10-31 15:13:55'); INSERT INTO `system_node` VALUES (42, 'service/index/sync', '同步指定授权公众号', 0, 1, 1, '2019-04-30 17:20:48');
INSERT INTO `system_node` VALUES (46, 'wechat/config', '微信配置', 0, 1, 1, '2018-10-31 15:14:00'); INSERT INTO `system_node` VALUES (43, 'service/index/syncall', '同步所有授权公众号', 0, 1, 1, '2019-04-30 17:20:49');
INSERT INTO `system_node` VALUES (51, 'wechat/config/payment', '微信支付', 1, 1, 1, '2018-11-01 11:19:37'); INSERT INTO `system_node` VALUES (44, 'service/index/del', '删除公众号授权', 0, 1, 1, '2019-04-30 17:20:49');
INSERT INTO `system_node` VALUES (53, 'wechat/config/options', '授权配置', 1, 1, 1, '2018-11-01 11:27:55'); INSERT INTO `system_node` VALUES (45, 'service/index/forbid', '禁用公众号授权', 0, 1, 1, '2019-04-30 17:20:49');
INSERT INTO `system_node` VALUES (54, 'wechat/news/index', '图文列表', 1, 1, 1, '2018-11-13 11:45:46'); INSERT INTO `system_node` VALUES (46, 'service/index/resume', '启用公众号授权', 0, 1, 1, '2019-04-30 17:20:49');
INSERT INTO `system_node` VALUES (56, 'wechat/news/select', '选择图文', 0, 1, 1, '2018-11-13 11:45:46'); INSERT INTO `system_node` VALUES (47, 'store', '商城管理', 0, 1, 1, '2019-04-30 17:20:56');
INSERT INTO `system_node` VALUES (57, 'wechat/news/add', '添加图文', 0, 1, 1, '2018-11-13 11:45:47'); INSERT INTO `system_node` VALUES (48, 'store/config/index', '商城参数配置', 1, 1, 1, '2019-04-30 17:20:57');
INSERT INTO `system_node` VALUES (58, 'wechat/news/edit', '编辑图文', 0, 1, 1, '2018-11-13 11:45:47'); INSERT INTO `system_node` VALUES (55, 'store/express_company/index', '快递公司管理', 1, 1, 1, '2019-04-30 17:20:59');
INSERT INTO `system_node` VALUES (59, 'wechat/news/del', '删除图文', 0, 1, 1, '2018-11-13 11:45:47'); INSERT INTO `system_node` VALUES (56, 'store/express_company/add', '添加快递公司', 0, 1, 1, '2019-04-30 17:20:59');
INSERT INTO `system_node` VALUES (61, 'wechat/fans/index', '粉丝列表', 1, 1, 1, '2018-11-15 09:50:28'); INSERT INTO `system_node` VALUES (57, 'store/express_company/edit', '编辑快递公司', 0, 1, 1, '2019-04-30 17:20:59');
INSERT INTO `system_node` VALUES (62, 'wechat/fans', '微信粉丝', 0, 1, 1, '2018-11-15 09:50:34'); INSERT INTO `system_node` VALUES (58, 'store/express_company/forbid', '禁用快递公司', 0, 1, 1, '2019-04-30 17:20:59');
INSERT INTO `system_node` VALUES (63, 'wechat/news', '微信图文', 0, 1, 1, '2018-11-15 11:31:16'); INSERT INTO `system_node` VALUES (59, 'store/express_company/resume', '启用快递公司', 0, 1, 1, '2019-04-30 17:20:59');
INSERT INTO `system_node` VALUES (64, 'wechat/fans/sync', '同步粉丝', 0, 1, 1, '2018-11-22 11:27:26'); INSERT INTO `system_node` VALUES (60, 'store/express_company/del', '删除快递公司', 0, 1, 1, '2019-04-30 17:20:59');
INSERT INTO `system_node` VALUES (65, 'wechat/keys/index', '回复规则列表', 1, 1, 1, '2018-11-22 11:27:27'); INSERT INTO `system_node` VALUES (61, 'store/express_province/index', '配送省份管理', 1, 1, 1, '2019-04-30 17:21:00');
INSERT INTO `system_node` VALUES (66, 'wechat/keys/add', '添加回复规则', 0, 1, 1, '2018-11-22 11:27:27'); INSERT INTO `system_node` VALUES (62, 'store/express_province/add', '添加配送省份', 0, 1, 1, '2019-04-30 17:21:00');
INSERT INTO `system_node` VALUES (67, 'wechat/keys/edit', '编辑回复规则', 0, 1, 1, '2018-11-22 11:27:27'); INSERT INTO `system_node` VALUES (63, 'store/express_province/edit', '编辑配送省份', 0, 1, 1, '2019-04-30 17:21:00');
INSERT INTO `system_node` VALUES (68, 'wechat/keys/del', '删除回复规则', 0, 1, 1, '2018-11-22 11:27:27'); INSERT INTO `system_node` VALUES (64, 'store/express_province/resume', '启用配送省份', 0, 1, 1, '2019-04-30 17:21:00');
INSERT INTO `system_node` VALUES (69, 'wechat/keys/forbid', '禁用回复规则', 0, 1, 1, '2018-11-22 11:27:27'); INSERT INTO `system_node` VALUES (65, 'store/express_province/forbid', '禁用配送省份', 0, 1, 1, '2019-04-30 17:21:00');
INSERT INTO `system_node` VALUES (70, 'wechat/keys/resume', '启用回复规则', 0, 1, 1, '2018-11-22 11:27:28'); INSERT INTO `system_node` VALUES (66, 'store/express_province/del', '删除配送省份', 0, 1, 1, '2019-04-30 17:21:00');
INSERT INTO `system_node` VALUES (71, 'wechat/keys', '回复规则管理', 0, 1, 1, '2018-11-23 10:26:06'); INSERT INTO `system_node` VALUES (67, 'store/express_template/index', '邮费模板管理', 1, 1, 1, '2019-04-30 17:21:01');
INSERT INTO `system_node` VALUES (72, 'wechat/keys/subscribe', '关注回复规则', 1, 1, 1, '2018-11-27 11:43:27'); INSERT INTO `system_node` VALUES (68, 'store/goods/index', '商品信息管理', 1, 1, 1, '2019-04-30 17:21:02');
INSERT INTO `system_node` VALUES (73, 'wechat/keys/defaults', '默认回复规则', 1, 1, 1, '2018-11-27 11:43:27'); INSERT INTO `system_node` VALUES (69, 'store/goods/stock', '商品库存入库', 0, 1, 1, '2019-04-30 17:21:02');
INSERT INTO `system_node` VALUES (74, 'wechat/fans/setblack', '拉黑粉丝', 0, 1, 1, '2018-11-27 16:23:21'); INSERT INTO `system_node` VALUES (70, 'store/goods/add', '添加商品信息', 0, 1, 1, '2019-04-30 17:21:02');
INSERT INTO `system_node` VALUES (75, 'wechat/fans/delblack', '取消拉黑', 0, 1, 1, '2018-11-27 16:23:21'); INSERT INTO `system_node` VALUES (71, 'store/goods/edit', '编辑商品信息', 0, 1, 1, '2019-04-30 17:21:02');
INSERT INTO `system_node` VALUES (76, 'wechat/menu/index', '微信菜单显示', 1, 1, 1, '2018-11-27 17:56:28'); INSERT INTO `system_node` VALUES (72, 'store/goods/forbid', '禁用商品信息', 0, 1, 1, '2019-04-30 17:21:02');
INSERT INTO `system_node` VALUES (77, 'wechat/menu/edit', '更新微信菜单', 0, 1, 1, '2018-11-27 17:56:28'); INSERT INTO `system_node` VALUES (73, 'store/goods/resume', '启用商品信息', 0, 1, 1, '2019-04-30 17:21:02');
INSERT INTO `system_node` VALUES (78, 'wechat/menu/cancel', '取消微信菜单', 0, 1, 1, '2018-11-27 17:56:29'); INSERT INTO `system_node` VALUES (74, 'store/goods/del', '删除商品信息', 0, 1, 1, '2019-04-30 17:21:03');
INSERT INTO `system_node` VALUES (79, 'wechat/menu', '微信菜单管理', 0, 1, 1, '2018-11-28 16:03:03'); INSERT INTO `system_node` VALUES (75, 'store/goods_cate/index', '商品分类管理', 1, 1, 1, '2019-04-30 17:21:03');
INSERT INTO `system_node` VALUES (80, 'admin/queue/index', '任务列表', 1, 1, 1, '2018-11-29 11:12:54'); INSERT INTO `system_node` VALUES (76, 'store/goods_cate/add', '添加商品分类', 0, 1, 1, '2019-04-30 17:21:03');
INSERT INTO `system_node` VALUES (81, 'admin/queue', '任务管理', 0, 1, 1, '2018-11-29 11:13:05'); INSERT INTO `system_node` VALUES (77, 'store/goods_cate/edit', '编辑添加商品分类', 0, 1, 1, '2019-04-30 17:21:03');
INSERT INTO `system_node` VALUES (82, 'admin/queue/redo', '重启任务', 0, 1, 1, '2018-11-29 15:17:43'); INSERT INTO `system_node` VALUES (78, 'store/goods_cate/forbid', '禁用添加商品分类', 0, 1, 1, '2019-04-30 17:21:03');
INSERT INTO `system_node` VALUES (83, 'admin/queue/del', '删除任务', 0, 1, 1, '2018-12-04 15:16:59'); INSERT INTO `system_node` VALUES (79, 'store/goods_cate/resume', '启用商品分类', 0, 1, 1, '2019-04-30 17:21:04');
INSERT INTO `system_node` VALUES (114, 'admin/message/index', '消息管理', 1, 1, 1, '2018-12-24 14:03:09'); INSERT INTO `system_node` VALUES (80, 'store/goods_cate/del', '删除商品分类', 0, 1, 1, '2019-04-30 17:21:04');
INSERT INTO `system_node` VALUES (115, 'admin/message', '消息管理', 0, 1, 1, '2018-12-24 14:03:14'); INSERT INTO `system_node` VALUES (81, 'store/member/index', '会员信息管理', 1, 1, 1, '2019-04-30 17:21:04');
INSERT INTO `system_node` VALUES (116, 'admin/message/state', '消息状态', 0, 1, 1, '2018-12-24 18:41:37'); INSERT INTO `system_node` VALUES (82, 'store/message/index', '短信发送管理', 1, 1, 1, '2019-04-30 17:21:05');
INSERT INTO `system_node` VALUES (117, 'admin/message/del', '删除消息', 0, 1, 1, '2018-12-24 18:41:37'); INSERT INTO `system_node` VALUES (83, 'store/order/index', '订单记录管理', 1, 1, 1, '2019-04-30 17:21:06');
INSERT INTO `system_node` VALUES (118, 'service', '开放平台', 0, 1, 1, '2018-12-28 13:27:38'); INSERT INTO `system_node` VALUES (84, 'store/order/express', '修改快递管理', 0, 1, 1, '2019-04-30 17:21:07');
INSERT INTO `system_node` VALUES (119, 'service/config', '开放平台', 0, 1, 1, '2018-12-28 13:27:41'); INSERT INTO `system_node` VALUES (85, 'store/order/expressquery', '', 0, 1, 1, '2019-04-30 17:21:07');
INSERT INTO `system_node` VALUES (120, 'service/config/index', '开放平台配置', 1, 1, 1, '2018-12-28 13:27:42'); INSERT INTO `system_node` VALUES (86, 'wechat/config/options', '公众号授权绑定', 1, 1, 1, '2019-04-30 17:21:28');
INSERT INTO `system_node` VALUES (121, 'service/index/index', '公众号授权列表', 1, 1, 1, '2018-12-28 13:27:42'); INSERT INTO `system_node` VALUES (87, 'wechat/config/payment', '公众号支付配置', 1, 1, 1, '2019-04-30 17:21:28');
INSERT INTO `system_node` VALUES (122, 'service/index/sync', '同步公众号授权', 0, 1, 1, '2018-12-28 13:27:42'); INSERT INTO `system_node` VALUES (88, 'wechat/fans/index', '微信粉丝管理', 1, 1, 1, '2019-04-30 17:21:29');
INSERT INTO `system_node` VALUES (123, 'service/index/syncall', '公众号所有授权', 0, 1, 1, '2018-12-28 13:27:43'); INSERT INTO `system_node` VALUES (89, 'wechat/fans/setblack', '批量拉黑粉丝', 0, 1, 1, '2019-04-30 17:21:29');
INSERT INTO `system_node` VALUES (124, 'service/index/del', '删除公众号授权', 0, 1, 1, '2018-12-28 13:27:43'); INSERT INTO `system_node` VALUES (90, 'wechat/fans/delblack', '取消拉黑粉丝', 0, 1, 1, '2019-04-30 17:21:29');
INSERT INTO `system_node` VALUES (125, 'service/index/forbid', '禁用公众号授权', 0, 1, 1, '2018-12-28 13:27:43'); INSERT INTO `system_node` VALUES (91, 'wechat/fans/sync', '同步粉丝列表', 0, 1, 1, '2019-04-30 17:21:29');
INSERT INTO `system_node` VALUES (126, 'service/index/resume', '启用公众号授权', 0, 1, 1, '2018-12-28 13:27:43'); INSERT INTO `system_node` VALUES (92, 'wechat/fans/del', '删除粉丝信息', 0, 1, 1, '2019-04-30 17:21:29');
INSERT INTO `system_node` VALUES (127, 'service/index', '公众号授权管理', 0, 1, 1, '2018-12-28 13:27:59'); INSERT INTO `system_node` VALUES (93, 'wechat/keys/index', '回复规则管理', 1, 1, 1, '2019-04-30 17:21:30');
INSERT INTO `system_node` VALUES (147, 'admin/message/clear', '清理消息', 0, 1, 1, '2019-01-05 13:23:49'); INSERT INTO `system_node` VALUES (94, 'wechat/keys/add', '添加关键字', 0, 1, 1, '2019-04-30 17:21:30');
INSERT INTO `system_node` VALUES (148, 'admin/message/onoff', '消息开关', 0, 1, 1, '2019-01-05 13:23:49'); INSERT INTO `system_node` VALUES (95, 'wechat/keys/edit', '编辑关键字', 0, 1, 1, '2019-04-30 17:21:30');
INSERT INTO `system_node` VALUES (149, 'store/page/index', '页面管理', 1, 1, 1, '2019-01-18 09:58:00'); INSERT INTO `system_node` VALUES (96, 'wechat/keys/del', '删除关键字', 0, 1, 1, '2019-04-30 17:21:30');
INSERT INTO `system_node` VALUES (150, 'store/page/add', '添加页面', 0, 1, 1, '2019-01-18 09:58:00'); INSERT INTO `system_node` VALUES (97, 'wechat/keys/forbid', '禁用关键字', 0, 1, 1, '2019-04-30 17:21:30');
INSERT INTO `system_node` VALUES (151, 'store/page/edit', '编辑页面', 0, 1, 1, '2019-01-18 09:58:00'); INSERT INTO `system_node` VALUES (98, 'wechat/keys/resume', '启用关键字', 0, 1, 1, '2019-04-30 17:21:31');
INSERT INTO `system_node` VALUES (152, 'store/page/forbid', '禁用页面', 0, 1, 1, '2019-01-18 09:58:00'); INSERT INTO `system_node` VALUES (99, 'wechat/keys/subscribe', '关注默认回复', 0, 1, 1, '2019-04-30 17:21:31');
INSERT INTO `system_node` VALUES (153, 'store/page/resume', '启用页面', 0, 1, 1, '2019-01-18 09:58:01'); INSERT INTO `system_node` VALUES (100, 'wechat/keys/defaults', '无配置默认回复', 0, 1, 1, '2019-04-30 17:21:31');
INSERT INTO `system_node` VALUES (154, 'store/page/del', '删除页面', 0, 1, 1, '2019-01-18 09:58:01'); INSERT INTO `system_node` VALUES (101, 'wechat/menu/index', '微信菜单管理', 1, 1, 1, '2019-04-30 17:21:31');
INSERT INTO `system_node` VALUES (155, 'store/page', '页面管理', 0, 1, 1, '2019-01-18 09:58:07'); INSERT INTO `system_node` VALUES (102, 'wechat/menu/edit', '编辑微信菜单', 0, 1, 1, '2019-04-30 17:21:31');
INSERT INTO `system_node` VALUES (156, 'store/member/index', '商城会员管理', 1, 1, 1, '2019-01-22 14:23:55'); INSERT INTO `system_node` VALUES (103, 'wechat/menu/cancel', '取消微信菜单', 0, 1, 1, '2019-04-30 17:21:31');
INSERT INTO `system_node` VALUES (157, 'store/member', '商城会员管理', 0, 1, 1, '2019-01-22 14:24:02'); INSERT INTO `system_node` VALUES (104, 'wechat/news/index', '微信图文管理', 1, 1, 1, '2019-04-30 17:21:32');
INSERT INTO `system_node` VALUES (158, 'store/order/index', '商城订单管理', 1, 1, 1, '2019-01-22 14:45:52'); INSERT INTO `system_node` VALUES (105, 'wechat/news/select', '图文选择器', 0, 1, 1, '2019-04-30 17:21:33');
INSERT INTO `system_node` VALUES (159, 'store/order', '商城订单管理', 0, 1, 1, '2019-01-22 14:45:59'); INSERT INTO `system_node` VALUES (106, 'wechat/news/add', '添加微信图文', 0, 1, 1, '2019-04-30 17:21:33');
INSERT INTO `system_node` VALUES (160, 'store/goods_cate/index', '商品分类管理', 1, 1, 1, '2019-01-23 10:39:54'); INSERT INTO `system_node` VALUES (107, 'wechat/news/edit', '编辑微信图文', 0, 1, 1, '2019-04-30 17:21:33');
INSERT INTO `system_node` VALUES (161, 'store/goods_cate/add', '添加商品分类', 0, 1, 1, '2019-01-23 10:39:54'); INSERT INTO `system_node` VALUES (108, 'wechat/news/del', '删除微信图文', 0, 1, 1, '2019-04-30 17:21:33');
INSERT INTO `system_node` VALUES (162, 'store/goods_cate/edit', '编辑商品分类', 0, 1, 1, '2019-01-23 10:39:54'); INSERT INTO `system_node` VALUES (109, 'wechat', '微信管理', 0, 1, 1, '2019-04-30 17:21:53');
INSERT INTO `system_node` VALUES (163, 'store/goods_cate/forbid', '禁用商品分类', 0, 1, 1, '2019-01-23 10:39:55');
INSERT INTO `system_node` VALUES (164, 'store/goods_cate/resume', '启用商品分类', 0, 1, 1, '2019-01-23 10:39:55');
INSERT INTO `system_node` VALUES (165, 'store/goods_cate/del', '删除商品分类', 0, 1, 1, '2019-01-23 10:39:55');
INSERT INTO `system_node` VALUES (166, 'store/goods_cate', '商品分类', 0, 1, 1, '2019-01-23 10:40:01');
INSERT INTO `system_node` VALUES (167, 'store/config/index', '商城配置', 1, 1, 1, '2019-01-24 16:47:01');
INSERT INTO `system_node` VALUES (168, 'store/config', '商城配置', 0, 1, 1, '2019-01-24 16:47:09');
INSERT INTO `system_node` VALUES (169, 'store/message/index', '短信消息', 1, 1, 1, '2019-01-24 18:09:05');
INSERT INTO `system_node` VALUES (170, 'store/message', '短信消息', 0, 1, 1, '2019-01-24 18:09:12');
INSERT INTO `system_node` VALUES (171, 'admin/log/index', '日志管理列表', 1, 1, 1, '2019-02-18 12:56:07');
INSERT INTO `system_node` VALUES (172, 'admin/log/del', '删除日志管理', 0, 1, 1, '2019-02-18 12:56:07');
INSERT INTO `system_node` VALUES (173, 'admin/log', '系统日志管理', 0, 1, 1, '2019-02-18 12:56:15');
INSERT INTO `system_node` VALUES (176, 'wechat/fans/del', '删除粉丝', 0, 1, 1, '2019-03-18 10:58:10');
INSERT INTO `system_node` VALUES (177, 'service/index/clearquota', '清空调用次数', 0, 1, 1, '2019-03-30 16:39:17');
INSERT INTO `system_node` VALUES (178, 'store/express/index', '快递公司管理', 1, 1, 1, '2019-04-01 17:09:27');
INSERT INTO `system_node` VALUES (179, 'store/express/add', '添加快递公司', 0, 1, 1, '2019-04-01 17:09:27');
INSERT INTO `system_node` VALUES (180, 'store/express/edit', '编辑快递公司', 0, 1, 1, '2019-04-01 17:09:27');
INSERT INTO `system_node` VALUES (181, 'store/express/forbid', '禁用快递公司', 0, 1, 1, '2019-04-01 17:09:27');
INSERT INTO `system_node` VALUES (182, 'store/express/resume', '启用快递公司', 0, 1, 1, '2019-04-01 17:09:28');
INSERT INTO `system_node` VALUES (183, 'store/express/del', '删除快递公司', 0, 1, 1, '2019-04-01 17:09:28');
INSERT INTO `system_node` VALUES (184, 'store/order/express', '商城订单发货', 0, 1, 1, '2019-04-01 17:09:30');
INSERT INTO `system_node` VALUES (185, 'store/order/expressquery', '商城快递查询', 0, 1, 1, '2019-04-01 17:09:30');
INSERT INTO `system_node` VALUES (186, 'store/express', '快递公司管理', 0, 1, 1, '2019-04-01 17:09:55');
-- ---------------------------- -- ----------------------------
-- Table structure for system_user -- Table structure for system_user
@ -786,10 +839,10 @@ DROP TABLE IF EXISTS `system_user`;
CREATE TABLE `system_user` ( CREATE TABLE `system_user` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户账号', `username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户账号',
`password` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户密码', `password` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户密码',
`qq` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系QQ', `qq` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系QQ',
`mail` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系邮箱', `mail` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系邮箱',
`phone` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系手机', `phone` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系手机',
`login_at` datetime NULL DEFAULT NULL COMMENT '登录时间', `login_at` datetime NULL DEFAULT NULL COMMENT '登录时间',
`login_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '登录IP', `login_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '登录IP',
`login_num` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '登录次数', `login_num` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '登录次数',
@ -802,12 +855,13 @@ CREATE TABLE `system_user` (
UNIQUE INDEX `index_system_user_username`(`username`) USING BTREE, UNIQUE INDEX `index_system_user_username`(`username`) USING BTREE,
INDEX `index_system_user_status`(`status`) USING BTREE, INDEX `index_system_user_status`(`status`) USING BTREE,
INDEX `index_system_user_deleted`(`is_deleted`) USING BTREE INDEX `index_system_user_deleted`(`is_deleted`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10001 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-用户' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 10002 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-用户';
-- ---------------------------- -- ----------------------------
-- Records of system_user -- Records of system_user
-- ---------------------------- -- ----------------------------
INSERT INTO `system_user` VALUES (10000, 'admin', '21232f297a57a5a743894a0e4a801fc3', '22222222', '', '', '2019-04-01 16:55:15', '127.0.0.1', 500, '', '', 1, 0, '2015-11-13 15:14:22'); INSERT INTO `system_user` VALUES (10000, 'admin', '21232f297a57a5a743894a0e4a801fc3', '22222222', '', '', '2019-04-30 17:14:22', '127.0.0.1', 548, '', '', 1, 0, '2015-11-13 15:14:22');
INSERT INTO `system_user` VALUES (10001, 'test', '662af1cd1976f09a9f8cecc868ccc0a2', '', '', '', '2019-04-18 13:28:57', '127.0.0.1', 1, '1', '', 1, 0, '2019-04-18 13:28:23');
-- ---------------------------- -- ----------------------------
-- Table structure for wechat_fans -- Table structure for wechat_fans
@ -840,7 +894,7 @@ CREATE TABLE `wechat_fans` (
INDEX `index_wechat_fans_unionid`(`unionid`) USING BTREE, INDEX `index_wechat_fans_unionid`(`unionid`) USING BTREE,
INDEX `index_wechat_fans_is_back`(`is_black`) USING BTREE, INDEX `index_wechat_fans_is_back`(`is_black`) USING BTREE,
INDEX `index_wechat_fans_subscribe`(`subscribe`) USING BTREE INDEX `index_wechat_fans_subscribe`(`subscribe`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-粉丝' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-粉丝';
-- ---------------------------- -- ----------------------------
-- Table structure for wechat_fans_tags -- Table structure for wechat_fans_tags
@ -854,7 +908,7 @@ CREATE TABLE `wechat_fans_tags` (
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
INDEX `index_wechat_fans_tags_id`(`id`) USING BTREE, INDEX `index_wechat_fans_tags_id`(`id`) USING BTREE,
INDEX `index_wechat_fans_tags_appid`(`appid`) USING BTREE INDEX `index_wechat_fans_tags_appid`(`appid`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-粉丝-标签' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-粉丝-标签';
-- ---------------------------- -- ----------------------------
-- Table structure for wechat_keys -- Table structure for wechat_keys
@ -863,28 +917,28 @@ DROP TABLE IF EXISTS `wechat_keys`;
CREATE TABLE `wechat_keys` ( CREATE TABLE `wechat_keys` (
`id` bigint(20) NOT NULL AUTO_INCREMENT, `id` bigint(20) NOT NULL AUTO_INCREMENT,
`appid` char(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '公众号APPID', `appid` char(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '公众号APPID',
`type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '类型text 文件消息image 图片消息news 图文消息', `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '类型(text,image,news)',
`keys` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '关键字', `keys` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '关键字',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '文本内容', `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '文本内容',
`image_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '图片链接', `image_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '图片链接',
`voice_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '语音链接', `voice_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '语音链接',
`music_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '音乐标题', `music_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '音乐标题',
`music_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '音乐链接', `music_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '音乐链接',
`music_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '音乐缩略图链接', `music_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '缩略图片',
`music_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '音乐描述', `music_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '音乐描述',
`video_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '视频标题', `video_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '视频标题',
`video_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '视频URL', `video_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '视频URL',
`video_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '视频描述', `video_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '视频描述',
`news_id` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '图文ID', `news_id` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '图文ID',
`sort` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '排序字段', `sort` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '排序字段',
`status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '0 禁用1 启用', `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0禁用,1启用)',
`create_by` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '创建人', `create_by` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '创建人',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_wechat_keys_appid`(`appid`) USING BTREE, INDEX `index_wechat_keys_appid`(`appid`) USING BTREE,
INDEX `index_wechat_keys_type`(`type`) USING BTREE, INDEX `index_wechat_keys_type`(`type`) USING BTREE,
INDEX `index_wechat_keys_keys`(`keys`) USING BTREE INDEX `index_wechat_keys_keys`(`keys`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-关键字' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-关键字';
-- ---------------------------- -- ----------------------------
-- Table structure for wechat_media -- Table structure for wechat_media
@ -904,7 +958,7 @@ CREATE TABLE `wechat_media` (
INDEX `index_wechat_media_md5`(`md5`) USING BTREE, INDEX `index_wechat_media_md5`(`md5`) USING BTREE,
INDEX `index_wechat_media_type`(`type`) USING BTREE, INDEX `index_wechat_media_type`(`type`) USING BTREE,
INDEX `index_wechat_media_media_id`(`media_id`) USING BTREE INDEX `index_wechat_media_media_id`(`media_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-素材' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-素材';
-- ---------------------------- -- ----------------------------
-- Table structure for wechat_news -- Table structure for wechat_news
@ -914,14 +968,14 @@ CREATE TABLE `wechat_news` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`media_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '永久素材MediaID', `media_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '永久素材MediaID',
`local_url` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '永久素材显示URL', `local_url` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '永久素材显示URL',
`article_id` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '关联图文ID,用,号做分割', `article_id` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '关联图文ID(用英文逗号做分割)',
`is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '是否删除', `is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '是否删除',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人', `create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `index_wechat_news_artcle_id`(`article_id`) USING BTREE, INDEX `index_wechat_news_artcle_id`(`article_id`) USING BTREE,
INDEX `index_wechat_news_media_id`(`media_id`) USING BTREE INDEX `index_wechat_news_media_id`(`media_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-图文' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-图文';
-- ---------------------------- -- ----------------------------
-- Table structure for wechat_news_article -- Table structure for wechat_news_article
@ -931,15 +985,15 @@ CREATE TABLE `wechat_news_article` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '素材标题', `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '素材标题',
`local_url` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '永久素材显示URL', `local_url` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '永久素材显示URL',
`show_cover_pic` tinyint(4) UNSIGNED NULL DEFAULT 0 COMMENT '显示封面(0 不显示, 1 显示)', `show_cover_pic` tinyint(4) UNSIGNED NULL DEFAULT 0 COMMENT '显示封面(0不显示,1显示)',
`author` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '作者', `author` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '文章作者',
`digest` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '摘要内容', `digest` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '摘要内容',
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '图文内容', `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '图文内容',
`content_source_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '原文地址', `content_source_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '原文地址',
`read_num` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '阅读', `read_num` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '阅读',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-图文-文章' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-图文-文章';
-- ---------------------------- -- ----------------------------
-- Table structure for wechat_service_config -- Table structure for wechat_service_config
@ -976,6 +1030,6 @@ CREATE TABLE `wechat_service_config` (
UNIQUE INDEX `index_wechat_service_config_authorizer_appid`(`authorizer_appid`) USING BTREE, UNIQUE INDEX `index_wechat_service_config_authorizer_appid`(`authorizer_appid`) USING BTREE,
INDEX `index_wechat_service_config_status`(`status`) USING BTREE, INDEX `index_wechat_service_config_status`(`status`) USING BTREE,
INDEX `index_wechat_service_config_is_deleted`(`is_deleted`) USING BTREE INDEX `index_wechat_service_config_is_deleted`(`is_deleted`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-授权' ROW_FORMAT = Compact; ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '微信-授权';
SET FOREIGN_KEY_CHECKS = 1; SET FOREIGN_KEY_CHECKS = 1;

View File

@ -84,6 +84,7 @@ class Config extends Controller
if (isset($post['storage_type']) && $post['storage_type'] === 'local') { if (isset($post['storage_type']) && $post['storage_type'] === 'local') {
$exts = array_unique(explode(',', $post['storage_local_exts'])); $exts = array_unique(explode(',', $post['storage_local_exts']));
if (in_array('php', $exts)) $this->error('禁止上传可执行文件到本地服务器!'); if (in_array('php', $exts)) $this->error('禁止上传可执行文件到本地服务器!');
sort($exts);
$post['storage_local_exts'] = join(',', $exts); $post['storage_local_exts'] = join(',', $exts);
} }
foreach ($post as $key => $value) sysconf($key, $value); foreach ($post as $key => $value) sysconf($key, $value);

View File

@ -24,22 +24,42 @@ use think\Db;
*/ */
class Login extends Controller class Login extends Controller
{ {
/** /**
* 用户登录 * 后台登录入口
*/
public function index()
{
$this->title = '系统登录';
}
/**
* 后台登录页面显示
*/
protected function _index_get()
{
if (\app\admin\service\Auth::isLogin()) {
$this->redirect('@admin');
} else {
$this->loginskey = session('loginskey');
if (empty($this->loginskey)) {
$this->loginskey = uniqid();
session('loginskey', $this->loginskey);
}
$this->fetch();
}
}
/**
* 后台登录数据处理
* @throws \think\Exception * @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException * @throws \think\exception\DbException
* @throws \think\exception\PDOException * @throws \think\exception\PDOException
*/ */
public function index() protected function _index_post()
{ {
$this->title = '管理登录';
$this->applyCsrfToken();
if ($this->request->isGet()) {
session('loginskey', $this->skey = session('loginskey') ? session('loginskey') : uniqid());
return $this->fetch();
}
$data = $this->_input([ $data = $this->_input([
'username' => $this->request->post('username'), 'username' => $this->request->post('username'),
'password' => $this->request->post('password'), 'password' => $this->request->post('password'),

View File

@ -22,6 +22,16 @@ use library\Controller;
*/ */
class Message extends Controller class Message extends Controller
{ {
/**
* Message constructor.
*/
public function __construct()
{
parent::__construct();
if (!\app\admin\service\Auth::isLogin()) {
$this->error('访问授权失败,请重新登录授权再试!');
}
}
/** /**
* 获取系统消息列表 * 获取系统消息列表

View File

@ -4,9 +4,7 @@
文件将存储在本地服务器,需确保服务器的 public/upload 目录有写入权限,还需要有足够的存储空间。 文件将存储在本地服务器,需确保服务器的 public/upload 目录有写入权限,还需要有足够的存储空间。
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label"> <label class="layui-form-label">AllowExts<br><span class="nowrap color-desc">允许类型</span></label>
AllowExts<br><span class="nowrap color-desc">允许上传文件</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_local_exts" required value="{:sysconf('storage_local_exts')}" placeholder="请输入系统文件上传后缀" class="layui-input"> <input type="text" name="storage_local_exts" required value="{:sysconf('storage_local_exts')}" placeholder="请输入系统文件上传后缀" class="layui-input">
<p class="help-block">设置系统允许上传文件的后缀多个以英文逗号隔开。如png,jpg,rar,doc</p> <p class="help-block">设置系统允许上传文件的后缀多个以英文逗号隔开。如png,jpg,rar,doc</p>

View File

@ -4,9 +4,14 @@
文件将上传到阿里云OSS空间需要配置OSS公开访问及跨域策略目前已实现自动创建空间及配置访问策略 文件将上传到阿里云OSS空间需要配置OSS公开访问及跨域策略目前已实现自动创建空间及配置访问策略
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label"> <label class="layui-form-label">AllowExts<br><span class="nowrap color-desc">允许类型</span></label>
Protocol<br><span class="nowrap color-desc">访问协议</span> <div class="layui-input-block">
</label> <input type="text" name="storage_local_exts" required value="{:sysconf('storage_local_exts')}" placeholder="请输入系统文件上传后缀" class="layui-input">
<p class="help-block">设置系统允许上传文件的后缀多个以英文逗号隔开。如png,jpg,rar,doc</p>
</div>
</div>
<div class="layui-form-item">
<label class="layui-form-label label-required">Protocol<br><span class="nowrap color-desc">访问协议</span></label>
<div class="layui-input-block"> <div class="layui-input-block">
<!--{foreach ['http','https','auto'] as $pro}--> <!--{foreach ['http','https','auto'] as $pro}-->
<label class="think-radio"> <label class="think-radio">
@ -21,18 +26,14 @@
</div> </div>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label"> <label class="layui-form-label">Bucket<br><span class="nowrap color-desc">空间名称</span></label>
Bucket<br><span class="nowrap color-desc">空间名称</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_oss_bucket" required value="{:sysconf('storage_oss_bucket')}" placeholder="请输入OSS Bucket (空间名称)" class="layui-input"> <input type="text" name="storage_oss_bucket" required value="{:sysconf('storage_oss_bucket')}" placeholder="请输入OSS Bucket (空间名称)" class="layui-input">
<p class="help-block">填写OSS存储空间名称think-admin-oss需要是全区唯一的值不存在时会自动创建</p> <p class="help-block">填写OSS存储空间名称think-admin-oss需要是全区唯一的值不存在时会自动创建</p>
</div> </div>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label"> <label class="layui-form-label">EndPoint<br><span class="nowrap color-desc">数据中心</span></label>
EndPoint<br><span class="nowrap color-desc">数据中心</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<select required name="storage_oss_endpoint" class="layui-select"> <select required name="storage_oss_endpoint" class="layui-select">
{foreach $point as $k=>$p} {foreach $point as $k=>$p}
@ -47,27 +48,21 @@
</div> </div>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label"> <label class="layui-form-label">AccessKey<br><span class="nowrap color-desc">访问密钥</span></label>
AccessKey<br><span class="nowrap color-desc">访问密钥</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_oss_keyid" required value="{:sysconf('storage_oss_keyid')}" maxlength="16" placeholder="请输入OSS AccessKey (访问密钥)" class="layui-input"> <input type="text" name="storage_oss_keyid" required value="{:sysconf('storage_oss_keyid')}" maxlength="16" placeholder="请输入OSS AccessKey (访问密钥)" class="layui-input">
<p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到访问密钥。</p> <p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到访问密钥。</p>
</div> </div>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label"> <label class="layui-form-label">SecretKey<br><span class="nowrap color-desc">安全密钥</span></label>
SecretKey<br><span class="nowrap color-desc">安全密钥</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_oss_secret" required value="{:sysconf('storage_oss_secret')}" maxlength="30" placeholder="请输入OSS SecretKey (安全密钥)" class="layui-input"> <input type="text" name="storage_oss_secret" required value="{:sysconf('storage_oss_secret')}" maxlength="30" placeholder="请输入OSS SecretKey (安全密钥)" class="layui-input">
<p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到安全密钥。</p> <p class="help-block">可以在 [ 阿里云 > 个人中心 ] 设置并获取到安全密钥。</p>
</div> </div>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label"> <label class="layui-form-label">Domain<br><span class="nowrap color-desc">访问域名</span></label>
Domain<br><span class="nowrap color-desc">访问域名</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_oss_domain" value="{:sysconf('storage_oss_domain')}" placeholder="请输入OSS存储 Domain (访问域名)" class="layui-input"> <input type="text" name="storage_oss_domain" value="{:sysconf('storage_oss_domain')}" placeholder="请输入OSS存储 Domain (访问域名)" class="layui-input">
<p class="help-block">填写OSS存储外部访问域名think-admin-oss.oss-cn-shenzhen.aliyuncs.com正常情况下是自动获取的</p> <p class="help-block">填写OSS存储外部访问域名think-admin-oss.oss-cn-shenzhen.aliyuncs.com正常情况下是自动获取的</p>
@ -83,4 +78,4 @@
</div> </div>
</div> </div>
</div> </div>
</form> </form>

View File

@ -3,10 +3,15 @@
<div class="color-blue padding-left-40 padding-bottom-20"> <div class="color-blue padding-left-40 padding-bottom-20">
文件将上传到七牛云空间(<a target="_blank" href="https://portal.qiniu.com/signup?code=3lhz6nmnwbple">点击这里免费申请10G存储</a>申请成功后添加公开bucket并配置接口密钥。 文件将上传到七牛云空间(<a target="_blank" href="https://portal.qiniu.com/signup?code=3lhz6nmnwbple">点击这里免费申请10G存储</a>申请成功后添加公开bucket并配置接口密钥。
</div> </div>
<div class="layui-form-item">
<label class="layui-form-label">AllowExts<br><span class="nowrap color-desc">允许类型</span></label>
<div class="layui-input-block">
<input type="text" name="storage_local_exts" required value="{:sysconf('storage_local_exts')}" placeholder="请输入系统文件上传后缀" class="layui-input">
<p class="help-block">设置系统允许上传文件的后缀多个以英文逗号隔开。如png,jpg,rar,doc</p>
</div>
</div>
<div class="layui-form-item" data-storage-type="qiniu"> <div class="layui-form-item" data-storage-type="qiniu">
<label class="layui-form-label"> <label class="layui-form-label label-required">Protocol<br><span class="nowrap color-desc">访问协议</span></label>
Protocol<br><span class="nowrap color-desc">访问协议</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<!--{foreach ['http','https','auto'] as $pro}--> <!--{foreach ['http','https','auto'] as $pro}-->
<label class="think-radio"> <label class="think-radio">
@ -21,9 +26,7 @@
</div> </div>
</div> </div>
<div class="layui-form-item" data-storage-type="qiniu"> <div class="layui-form-item" data-storage-type="qiniu">
<label class="layui-form-label"> <label class="layui-form-label">Region<br><span class="nowrap color-desc label-required">存储区域</span></label>
Region<br><span class="nowrap color-desc">存储区域</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
{foreach ['华东','华北','华南','北美'] as $area} {foreach ['华东','华北','华南','北美'] as $area}
<label class="think-radio"> <label class="think-radio">
@ -39,36 +42,28 @@
</div> </div>
</div> </div>
<div class="layui-form-item" data-storage-type="qiniu"> <div class="layui-form-item" data-storage-type="qiniu">
<label class="layui-form-label"> <label class="layui-form-label">Bucket<br><span class="nowrap color-desc">空间名称</span></label>
Bucket<br><span class="nowrap color-desc">空间名称</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_qiniu_bucket" required value="{:sysconf('storage_qiniu_bucket')}" placeholder="请输入七牛云存储 Bucket (空间名称)" class="layui-input"> <input type="text" name="storage_qiniu_bucket" required value="{:sysconf('storage_qiniu_bucket')}" placeholder="请输入七牛云存储 Bucket (空间名称)" class="layui-input">
<p class="help-block">填写七牛云存储空间名称static</p> <p class="help-block">填写七牛云存储空间名称static</p>
</div> </div>
</div> </div>
<div class="layui-form-item" data-storage-type="qiniu"> <div class="layui-form-item" data-storage-type="qiniu">
<label class="layui-form-label"> <label class="layui-form-label">Domain<br><span class="nowrap color-desc">访问域名</span></label>
Domain<br><span class="nowrap color-desc">访问域名</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_qiniu_domain" required value="{:sysconf('storage_qiniu_domain')}" placeholder="请输入七牛云存储 Domain (访问域名)" class="layui-input"> <input type="text" name="storage_qiniu_domain" required value="{:sysconf('storage_qiniu_domain')}" placeholder="请输入七牛云存储 Domain (访问域名)" class="layui-input">
<p class="help-block">填写七牛云存储访问域名static.ctolog.cc</p> <p class="help-block">填写七牛云存储访问域名static.ctolog.cc</p>
</div> </div>
</div> </div>
<div class="layui-form-item" data-storage-type="qiniu"> <div class="layui-form-item" data-storage-type="qiniu">
<label class="layui-form-label"> <label class="layui-form-label">AccessKey<br><span class="nowrap color-desc">访问密钥</span></label>
AccessKey<br><span class="nowrap color-desc">访问密钥</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_qiniu_access_key" required value="{:sysconf('storage_qiniu_access_key')}" placeholder="请输入七牛云 AccessKey (访问密钥)" class="layui-input"> <input type="text" name="storage_qiniu_access_key" required value="{:sysconf('storage_qiniu_access_key')}" placeholder="请输入七牛云 AccessKey (访问密钥)" class="layui-input">
<p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到访问密钥。</p> <p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到访问密钥。</p>
</div> </div>
</div> </div>
<div class="layui-form-item" data-storage-type="qiniu"> <div class="layui-form-item" data-storage-type="qiniu">
<label class="layui-form-label"> <label class="layui-form-label">SecretKey<br><span class="nowrap color-desc">安全密钥</span></label>
SecretKey<br><span class="nowrap color-desc">安全密钥</span>
</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" name="storage_qiniu_secret_key" required value="{:sysconf('storage_qiniu_secret_key')}" maxlength="43" placeholder="请输入七牛云 SecretKey (安全密钥)" class="layui-input"> <input type="text" name="storage_qiniu_secret_key" required value="{:sysconf('storage_qiniu_secret_key')}" maxlength="43" placeholder="请输入七牛云 SecretKey (安全密钥)" class="layui-input">
<p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到安全密钥。</p> <p class="help-block">可以在 [ 七牛云 > 个人中心 ] 设置并获取到安全密钥。</p>

View File

@ -35,9 +35,9 @@
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label">Browser<br><span class="nowrap color-desc">浏览器图标</span></label> <label class="layui-form-label">Browser<br><span class="nowrap color-desc">浏览器图标</span></label>
<div class="layui-input-block"> <div class="layui-input-block">
<img data-tips-image style="height:auto;max-height:32px;min-width:32px" src="{:sysconf('site_icon')}"/> <img alt="icon" data-tips-image style="height:auto;max-height:32px;min-width:32px" src="{:sysconf('site_icon')}"/>
<input type="hidden" name="site_icon" onchange="$(this).prev('img').attr('src', this.value)" value="{:sysconf('site_icon')}" class="layui-input"> <input type="hidden" name="site_icon" onchange="$(this).prev('img').attr('src', this.value)" value="{:sysconf('site_icon')}" class="layui-input">
<a class="margin-left-10" data-file="btn" data-uptype="local" data-type="ico,png" data-field="site_icon">上传图片</a> <a class="margin-left-10" data-file="btn" data-type="ico,png" data-field="site_icon">上传图片</a>
<p class="help-block">建议上传ICO图标的尺寸为128x128px此图标用于网站标题前<a href="http://www.favicon-icon-generator.com/" target="_blank">ICON在线制作</a></p> <p class="help-block">建议上传ICO图标的尺寸为128x128px此图标用于网站标题前<a href="http://www.favicon-icon-generator.com/" target="_blank">ICON在线制作</a></p>
</div> </div>
</div> </div>

View File

@ -11,9 +11,9 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=0.4"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=0.4">
<link rel="shortcut icon" href="{:sysconf('site_icon')}"> <link rel="shortcut icon" href="{:sysconf('site_icon')}">
<link rel="stylesheet" href="__ROOT__/static/plugs/awesome/fonts.css?{:date('md')}"> <link rel="stylesheet" href="__ROOT__/static/plugs/awesome/fonts.css?at={:date('md')}">
<link rel="stylesheet" href="__ROOT__/static/plugs/layui/css/layui.css?{:date('md')}"> <link rel="stylesheet" href="__ROOT__/static/plugs/layui/css/layui.css?at={:date('md')}">
<link rel="stylesheet" href="__ROOT__/static/theme/css/console.css?{:date('md')}"> <link rel="stylesheet" href="__ROOT__/static/theme/css/console.css?at={:date('md')}">
{block name="style"}{/block} {block name="style"}{/block}
<script>window.ROOT_URL = '__ROOT__';</script> <script>window.ROOT_URL = '__ROOT__';</script>
<script src="__ROOT__/static/plugs/jquery/pace.min.js"></script> <script src="__ROOT__/static/plugs/jquery/pace.min.js"></script>

View File

@ -25,7 +25,7 @@
</label> </label>
</li> </li>
<li class="text-center padding-top-20"> <li class="text-center padding-top-20">
<input type="hidden" name="skey" value="{$skey|default=''}"> <input type="hidden" name="skey" value="{$loginskey|default=''}">
<button type="submit" class="layui-btn layui-disabled full-width" data-form-loaded="立即登入">正在载入</button> <button type="submit" class="layui-btn layui-disabled full-width" data-form-loaded="立即登入">正在载入</button>
</li> </li>
</ul> </ul>
@ -45,5 +45,4 @@
{block name='script'} {block name='script'}
<script src="__ROOT__/static/plugs/supersized/supersized.3.2.7.min.js"></script> <script src="__ROOT__/static/plugs/supersized/supersized.3.2.7.min.js"></script>
{/block} {/block}

View File

@ -31,7 +31,7 @@ class Config extends Controller
* @var string * @var string
*/ */
public $table = 'WechatServiceConfig'; public $table = 'WechatServiceConfig';
/** /**
* 开放平台参数配置 * 开放平台参数配置
* @throws \think\Exception * @throws \think\Exception
@ -41,9 +41,12 @@ class Config extends Controller
{ {
$this->applyCsrfToken(); $this->applyCsrfToken();
$this->title = '开放平台接口配置'; $this->title = '开放平台接口配置';
if ($this->request->isGet()) return $this->fetch(); if ($this->request->isGet()) {
foreach ($this->request->post() as $k => $v) sysconf($k, $v); return $this->fetch();
$this->success('开放平台数据修改成功!', ''); } else {
foreach ($this->request->post() as $k => $v) sysconf($k, $v);
$this->success('开放平台参数修改成功!', '');
}
} }
} }

View File

@ -44,11 +44,9 @@ class Index extends Controller
{ {
$this->applyCsrfToken(); $this->applyCsrfToken();
$this->title = '微信授权管理'; $this->title = '微信授权管理';
$this->_query($this->table) $query = $this->_query($this->table)->like('authorizer_appid,nick_name,principal_name');
->like('authorizer_appid,nick_name,principal_name') $query = $query->equal('service_type,status')->dateBetween('create_at');
->equal('service_type,status')->dateBetween('create_at') $query->where(['is_deleted' => '0'])->order('id desc')->page();
->where(['is_deleted' => '0'])->order('id desc')->page();
} }
/** /**

View File

@ -1,73 +1,84 @@
{extend name="admin@main"} {extend name="admin@main"}
{block name="content"} {block name="content"}
<fieldset class="margin-bottom-15"> <div class="nowrap" style="width:1295px">
<legend class="layui-bg-cyan">接口地址</legend> <div class="layui-code margin-bottom-20">强烈建议安装 YAR 扩展来实现接口通信SOAP 不能正常显示接口的异常信息。</div>
<div class="layui-form-item"> <fieldset class="margin-bottom-15 margin-right-10 pull-left" style="width:600px">
<p class="color-green">授权发起页域名</p> <legend class="layui-bg-cyan">授权参数</legend>
<label class="relative block"> <form onsubmit="return false;" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off">
<input disabled class="layui-input layui-bg-gray" value="{:request()->host()}"> <div class="layui-form-item">
<a data-copy="{:request()->host()}" class="fa fa-copy right-btn"></a> <label class="relative block">
</label> <span class="color-green">开放平台服务 AppID</span>
<p class="help-block">必须从本域名内网页跳转到登录授权页,才可完成登录授权。无需填写 http:// 等域名协议前缀</p> <input name="component_appid" required pattern="^.{18}$" maxlength="18" placeholder="请输入18位开放平台服务AppID" value="{:sysconf('component_appid')}" class="layui-input">
</div> </label>
<div class="layui-form-item"> <p class="help-block">开放平台服务 AppID需要在微信开放平台获取。</p>
<p class="color-green">授权事件接收 URL</p> </div>
<label class="relative block"> <div class="layui-form-item">
<input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.push/ticket','',false,true)}"> <label class="relative block">
<a data-copy="{:url('@service/api.push/ticket','',false,true)}" class="fa fa-copy right-btn"></a> <span class="color-green">开放平台服务 AppSecret</span>
</label> <input name="component_appsecret" required pattern="^.{32}$" maxlength="32" placeholder="请输入32位开放平台服务AppSecret" value="{:sysconf('component_appsecret')}" class="layui-input">
<p class="help-block">用于接收取消授权通知、授权成功通知、授权更新通知,也用于接收 ticketticket 是验证平台方的重要凭据</p> </label>
</div> <p class="help-block">开放平台服务 AppSecret需要在微信开放平台获取。</p>
<div class="layui-form-item"> </div>
<p class="color-green">微信消息与事件接收 URL</p> <div class="layui-form-item">
<label class="relative block"> <label class="relative block">
<input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.push/notify/\$APPID\$','',false,true)}"> <span class="color-green">开放平台消息校验 Token</span>
<a data-copy="{:url('@service/api.push/notify/\$APPID\$','',false,true)}" class="fa fa-copy right-btn"></a> <input name="component_token" required placeholder="请输入微信消息校验Token" value="{:sysconf('component_token')}" class="layui-input">
</label> </label>
<p class="help-block">通过该 URL 接收微信消息和事件推送,该参数按规则填写,实际接收消息时 $APPID$ 将被替换为微信 AppId</p> <p class="help-block">开发者在代替微信接收到消息时,用此 Token 来校验消息。</p>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<p class="color-green">客户端系统 Yar 模块接口</p> <label class="relative block">
<label class="relative block"><input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.client/yar/PARAM','',false,true)}"></label> <span class="color-green">开放平台消息加解密 AesKey</span>
<p class="help-block">客户端系统 Yar 接口 URLPARAM 由调用参数组成AppName-AppId-AppKey-AppType</p> <input name="component_encodingaeskey" required pattern="^.{43}$" maxlength="43" placeholder="请输入43位微信消息加解密Key" value="{:sysconf('component_encodingaeskey')}" class="layui-input">
</div> </label>
<div class="layui-form-item"> <p class="help-block">在代替微信收发消息过程中使用。必须是长度为43位的字符串只能是字母和数字。</p>
<p class="color-green">客户端系统 Soap 模块接口</p> </div>
<label class="relative block"><input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.client/soap/PARAM','',false,true)}"></label> <div class="hr-line-dashed"></div>
<p class="help-block">客户端系统 Soap 接口 URLPARAM 由调用参数组成AppName-AppId-AppKey-AppType</p> <div class="text-center padding-bottom-15 margin-bottom-20">
</div> <button class="layui-btn" type="submit">保存配置</button>
</fieldset> </div>
</form>
</fieldset>
<fieldset class="margin-bottom-15"> <fieldset class="margin-bottom-15 pull-left" style="width:600px">
<legend class="layui-bg-cyan">对接参数</legend> <legend class="layui-bg-cyan">对接信息</legend>
<form onsubmit="return false;" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off">
<div class="layui-form-item"> <div class="layui-form-item">
<p class="color-green">开放平台服务 AppID</p> <p class="color-green">授权发起页域名</p>
<label class="relative block"><input name="component_appid" required pattern="^.{18}$" maxlength="18" placeholder="请输入18位开放平台服务AppID" value="{:sysconf('component_appid')}" class="layui-input"></label> <label class="relative block">
<p class="help-block">开放平台服务 AppID需要在微信开放平台获取。</p> <input disabled class="layui-input layui-bg-gray" value="{:request()->host()}">
<a data-copy="{:request()->host()}" class="fa fa-copy right-btn"></a>
</label>
<p class="help-block">必须从本域名内网页跳转到登录授权页,才可完成登录授权。无需填写 http:// 等域名协议前缀</p>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<p class="color-green">开放平台服务 AppSecret</p> <p class="color-green">授权事件接收 URL</p>
<label class="relative block"><input name="component_appsecret" required pattern="^.{32}$" maxlength="32" placeholder="请输入32位开放平台服务AppSecret" value="{:sysconf('component_appsecret')}" class="layui-input"></label> <label class="relative block">
<p class="help-block">开放平台服务 AppSecret需要在微信开放平台获取。</p> <input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.push/ticket','',false,true)}">
<a data-copy="{:url('@service/api.push/ticket','',false,true)}" class="fa fa-copy right-btn"></a>
</label>
<p class="help-block">用于接收取消授权通知、授权成功通知、授权更新通知,也用于接收 ticketticket 是验证平台方的重要凭据</p>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<p class="color-green">开放平台消息校验 Token</p> <p class="color-green">微信消息与事件接收 URL</p>
<label class="relative block"><input name="component_token" required placeholder="请输入微信消息校验Token" value="{:sysconf('component_token')}" class="layui-input"></label> <label class="relative block">
<p class="help-block">开发者在代替微信接收到消息时,用此 Token 来校验消息。</p> <input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.push/notify/\$APPID\$','',false,true)}">
<a data-copy="{:url('@service/api.push/notify/\$APPID\$','',false,true)}" class="fa fa-copy right-btn"></a>
</label>
<p class="help-block">通过该 URL 接收微信消息和事件推送,该参数按规则填写,实际接收消息时 $APPID$ 将被替换为微信 AppId</p>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<p class="color-green">开放平台消息加解密 AesKey</p> <p class="color-green">客户端系统 Yar 模块接口</p>
<label class="relative block"><input name="component_encodingaeskey" required pattern="^.{43}$" maxlength="43" placeholder="请输入43位微信消息加解密Key" value="{:sysconf('component_encodingaeskey')}" class="layui-input"></label> <label class="relative block"><input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.client/yar/PARAM','',false,true)}"></label>
<p class="help-block">在代替微信收发消息过程中使用。必须是长度为43位的字符串只能是字母和数字。</p> <p class="help-block">客户端系统 Yar 接口 URLPARAM 由调用参数组成AppName-AppId-AppKey-AppType</p>
</div> </div>
<div class="hr-line-dashed"></div> <div class="layui-form-item">
<div class="text-center padding-bottom-15"> <p class="color-green">客户端系统 Soap 模块接口</p>
<button class="layui-btn" type="submit">保存配置</button> <label class="relative block"><input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.client/soap/PARAM','',false,true)}"></label>
<p class="help-block">客户端系统 Soap 接口 URLPARAM 由调用参数组成AppName-AppId-AppKey-AppType</p>
</div> </div>
</form> </fieldset>
</fieldset> </div>
{/block} {/block}
{block name='style'} {block name='style'}

View File

@ -24,7 +24,7 @@
<tr> <tr>
<td class='text-left nowrap'> <td class='text-left nowrap'>
<div class="inline-block text-top margin-right-5"> <div class="inline-block text-top margin-right-5">
<img onerror="this.src='__STATIC__/theme/img/404_icon.png'" style="width:60px;height:60px" data-tips-text="微信头像" data-tips-image src="{$vo.head_img|default=''}"> <img onerror="this.src='__ROOT__/static/theme/img/404_icon.png'" style="width:60px;height:60px" data-tips-text="微信头像" data-tips-image src="{$vo.head_img|default=''}">
</div> </div>
<div class="inline-block"> <div class="inline-block">
公众号APPID{$vo.authorizer_appid}&nbsp;&nbsp;&nbsp;&nbsp;调用次数:{$vo.total}<br> 公众号APPID{$vo.authorizer_appid}&nbsp;&nbsp;&nbsp;&nbsp;调用次数:{$vo.total}<br>
@ -34,7 +34,7 @@
</td> </td>
<td class='text-left nowrap'> <td class='text-left nowrap'>
<div class="inline-block text-top margin-right-5"> <div class="inline-block text-top margin-right-5">
<img onerror="this.src='__STATIC__/theme/img/404_icon.png'" style="width:60px;height:60px" data-tips-text="微信二维码" data-tips-image src="{$vo.qrcode_url|local_image}"> <img onerror="this.src='__ROOT__/static/theme/img/404_icon.png'" style="width:60px;height:60px" data-tips-text="微信二维码" data-tips-image src="{$vo.qrcode_url|local_image}">
</div> </div>
<div class="inline-block"> <div class="inline-block">
昵称:{$vo.nick_name|default='<span class="color-desc">未获取到公众号昵称</span>'|raw}<br> 昵称:{$vo.nick_name|default='<span class="color-desc">未获取到公众号昵称</span>'|raw}<br>

View File

@ -1,9 +1,22 @@
<?php <?php
// +----------------------------------------------------------------------
// | framework
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://framework.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/framework
// +----------------------------------------------------------------------
namespace app\wechat\controller\api; namespace app\wechat\controller\api;
use app\wechat\service\Wechat; use app\wechat\service\Wechat;
use library\Controller; use library\Controller;
use think\facade\Response;
/** /**
* 前端JS获取控制器 * 前端JS获取控制器
@ -13,7 +26,8 @@ use library\Controller;
class Js extends Controller class Js extends Controller
{ {
/** /**
* @return string * 返回生成的JS内容
* @return \think\response
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception * @throws \think\Exception
@ -27,7 +41,7 @@ class Js extends Controller
$unionid = empty($wechat['fansinfo']['unionid']) ? '' : $wechat['fansinfo']['unionid']; $unionid = empty($wechat['fansinfo']['unionid']) ? '' : $wechat['fansinfo']['unionid'];
$configJson = json_encode(Wechat::getWebJssdkSign($url), JSON_UNESCAPED_UNICODE); $configJson = json_encode(Wechat::getWebJssdkSign($url), JSON_UNESCAPED_UNICODE);
$fansinfoJson = json_encode(isset($wechat['fansinfo']) ? $wechat['fansinfo'] : [], JSON_UNESCAPED_UNICODE); $fansinfoJson = json_encode(isset($wechat['fansinfo']) ? $wechat['fansinfo'] : [], JSON_UNESCAPED_UNICODE);
return <<<EOF $html = <<<EOF
if(typeof wx==='object'){ if(typeof wx==='object'){
wx.openid="{$openid}"; wx.openid="{$openid}";
wx.unionid="{$unionid}"; wx.unionid="{$unionid}";
@ -39,6 +53,7 @@ if(typeof wx==='object'){
}); });
} }
EOF; EOF;
return Response::create($html)->contentType('application/x-javascript');
} }
} }

View File

@ -12,6 +12,9 @@
// | github开源项目https://github.com/zoujingli/framework // | github开源项目https://github.com/zoujingli/framework
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// 注册接口路由
\think\facade\Route::rule('wechat/api.js', 'wechat/api.js/index');
// 注册系统指令 // 注册系统指令
\think\Console::addDefaultCommands([ \think\Console::addDefaultCommands([
'app\wechat\command\fans\FansAll', 'app\wechat\command\fans\FansAll',

View File

@ -26,7 +26,7 @@
<th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th> <th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th>
<th width="180px" class='text-left nowrap'>微信昵称</th> <th width="180px" class='text-left nowrap'>微信昵称</th>
<th width="180px" class="text-left nowrap">粉丝标签</th> <th width="180px" class="text-left nowrap">粉丝标签</th>
<th width="150px" class='text-left nowrap'>性别语</th> <th width="150px" class='text-left nowrap'>性别语</th>
<th width="180px" class='text-left nowrap'>关注时间</th> <th width="180px" class='text-left nowrap'>关注时间</th>
<th width="80px"></th> <th width="80px"></th>
<th></th> <th></th>

View File

@ -127,7 +127,7 @@ $(function () {
$.form = new function () { $.form = new function () {
var that = this; var that = this;
// 内容区选择器 // 内容区选择器
this.targetClass = '.layui-layout-admin>.layui-body'; this.selecter = '.layui-layout-admin>.layui-body';
// 刷新当前页面 // 刷新当前页面
this.reload = function () { this.reload = function () {
window.onhashchange.call(this); window.onhashchange.call(this);
@ -135,8 +135,14 @@ $(function () {
// 内容区域动态加载后初始化 // 内容区域动态加载后初始化
this.reInit = function ($dom) { this.reInit = function ($dom) {
$.vali.listen(this); $.vali.listen(this);
$dom = $dom || $(this.targetClass); $dom = $dom || $(this.selecter);
$dom.find('[required]').parent().prevAll('label').addClass('label-required'); $dom.find('[required]').map(function ($parent) {
if (($parent = $(this).parent()) && $parent.is('label')) {
$parent.addClass('label-required-prev')
} else {
$parent.prevAll('label').addClass('label-required-next')
}
});
$dom.find('[data-date-range]').map(function () { $dom.find('[data-date-range]').map(function () {
laydate.render({range: true, elem: this}); laydate.render({range: true, elem: this});
this.setAttribute('autocomplete', 'off'); this.setAttribute('autocomplete', 'off');
@ -151,8 +157,10 @@ $(function () {
}; };
// 在内容区显示视图 // 在内容区显示视图
this.show = function (html) { this.show = function (html) {
$(this.targetClass).html(html); $(this.selecter).html(html);
this.reInit(), setTimeout(this.reInit, 500), setTimeout(this.reInit, 1000); $([0, 500, 1000]).map(function (index, time) {
setTimeout(that.reInit, time)
});
}; };
// 以hash打开网页 // 以hash打开网页
this.href = function (url, obj) { this.href = function (url, obj) {
@ -569,6 +577,7 @@ $(function () {
var checked = !!this.checked; var checked = !!this.checked;
$($(this).attr('data-check-target')).map(function () { $($(this).attr('data-check-target')).map(function () {
this.checked = checked; this.checked = checked;
$(this).trigger('change');
}); });
}); });
@ -689,6 +698,21 @@ $(function () {
layer.close($(this).attr('index')); layer.close($(this).attr('index'));
}); });
/*! 表单编辑返回操作 */
$body.on('click', '[data-history-back]', function () {
var title = this.getAttribute('data-history-back') || '确定要返回上一页吗?';
$.msg.confirm(title, function (index) {
history.back();
$.msg.close(index);
})
});
/*! 表单元素失去焦点处理 */
$body.on('blur', '[data-blur-number]', function () {
var fiexd = this.getAttribute('data-blur-number') || 0;
this.value = (parseFloat(this.value) || 0).toFixed(fiexd);
});
/*! 后台加密登录处理 */ /*! 后台加密登录处理 */
$body.find('[data-login-form]').map(function () { $body.find('[data-login-form]').map(function () {
require(["md5"], function (md5) { require(["md5"], function (md5) {

View File

@ -39,7 +39,7 @@ define(['plupload'], function (plupload) {
$('[name="' + field + '"]').val(ret.url).trigger('change'); $('[name="' + field + '"]').val(ret.url).trigger('change');
} }
} else { } else {
$.msg.error(ret.error.message || '文件上传出错!'); $.msg.error(ret.info || ret.error.message || '文件上传出错!');
} }
} }
}); });

View File

@ -12,186 +12,156 @@
// | github开源项目https://github.com/zoujingli/framework // | github开源项目https://github.com/zoujingli/framework
// +--------------------------------------------------------------------*/ // +--------------------------------------------------------------------*/
::-webkit-input-placeholder{color:#aaa} ::-webkit-input-placeholder {color: #aaa}
::-webkit-scrollbar{width:3px;height:3px} ::-webkit-scrollbar {width: 3px;height: 3px}
::-webkit-scrollbar-track{background:#ccc!important} ::-webkit-scrollbar-track {background: #ccc !important}
::-webkit-scrollbar-thumb{background-color:#666!important} ::-webkit-scrollbar-thumb {background-color: #666 !important}
::selection{background-color:#ec494e!important;color:#fff!important} ::selection {color: #fff !important;background-color: #ec494e !important}
::-moz-selection{background-color:#ec494e!important;color:#fff!important} ::-moz-selection {color: #fff !important;background-color: #ec494e !important}
:-webkit-autofill,:-webkit-autofill:active,:-webkit-autofill:focus,:-webkit-autofill:hover{box-shadow:0 2px 3px 0 rgba(0,0,0,.1) inset!important;-webkit-transition:color 9999s ease-out,background-color 9999s ease-out!important;-webkit-transition-delay:9999s!important;-webkit-text-fill-color:#333!important} :-webkit-autofill, :-webkit-autofill:active, :-webkit-autofill:focus, :-webkit-autofill:hover {box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1) inset !important;-webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;-webkit-transition-delay: 9999s !important;-webkit-text-fill-color: #333 !important}
body{font-size:12px;color:#333;font-family:'\5FAE\8F6F\96C5\9ED1','Microsoft YaHei','Helvetica Neue','Luxi Sans','DejaVu Sans','Hiragino Sans GB','serif'} body{color:#333;font-size:12px;font-family:'\5FAE\8F6F\96C5\9ED1','Microsoft YaHei','Helvetica Neue','Luxi Sans','DejaVu Sans','Hiragino Sans GB',serif}
a{color:#06C;cursor:pointer}a:hover{color:#039}input::-ms-clear{display:none}.moxie-shim{display:none!important} a{color:#06C;cursor:pointer}a:hover{color:#039}input::-ms-clear{display:none}.moxie-shim{display:none!important}
.version-debug{width:100%;height:100px;font-size:20px;line-height:100px;text-align:center;background-color:#E90D24;color:#fff;margin-bottom:40px;} .version-debug{width:100%;color:#fff;height:100px;font-size:20px;text-align:center;line-height:100px;margin-bottom:40px;background-color:#E90D24}
/* 页面布局 - 全局 */ /* 页面布局 - 全局 */
.layui-layout>.layui-side, .layui-layout>.layui-body,.layui-layout>.layui-side{top:50px;bottom:0;overflow:auto}
.layui-layout>.layui-body{top:50px;bottom:0;overflow:auto}
.layui-layout>.layui-body>.layui-card{box-shadow:none} .layui-layout>.layui-body>.layui-card{box-shadow:none}
.layui-layout>.layui-body>.layui-card>.layui-card-header{height:50px;line-height:50px;border:none;box-shadow:0 2px 3px 0 rgba(0,0,0,.1)} .layui-layout>.layui-body>.layui-card>.layui-card-header{height:50px;border:none;line-height:50px;box-shadow:0 2px 3px 0 rgba(0,0,0,.1)}
/* 页面布局 - 头部 */ /* 页面布局 - 头部 */
.layui-header{height:50px;background:#009688!important} .layui-header{height:50px;background:#009688!important}
.layui-header .layui-layout-left,.layui-header .layui-layout-right{padding:0} .layui-header .layui-layout-left,.layui-header .layui-layout-right{padding:0}
.layui-header .layui-logo{box-shadow:0 1px 3px 0 rgba(0,0,0,.15);color:#fff;font-size:18px;line-height:50px} .layui-header .layui-logo{color:#fff;font-size:18px;line-height:50px;box-shadow:0 1px 3px 0 rgba(0,0,0,.15)}
.layui-header .layui-logo sup{font-size:9px;line-height:9px} .layui-header .layui-logo sup{font-size:9px;line-height:9px}
.layui-header .layui-nav-item{line-height:50px} .layui-header .layui-nav-item{line-height:50px}
.layui-header .layui-nav-item>a{color:#fff!important} .layui-header .layui-nav-item>a{color:#fff!important}
.layui-header .layui-nav-item.layui-this{background:rgba(0,0,0,.1)} .layui-header .layui-nav-item.layui-this{background:rgba(0,0,0,.1)}
.layui-header .layui-nav-bar,.layui-header .layui-nav-item:after{display:none!important} .layui-header .layui-nav-bar,.layui-header .layui-nav-item:after{display:none!important}
.layui-header .layui-nav-item .layui-nav-child{top:49px;padding:0;border:none;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);line-height:45px} .layui-header .layui-nav-item .layui-nav-child{top:49px;padding:0;border:none;line-height:45px;box-shadow:0 1px 2px 0 rgba(0,0,0,.2)}
.layui-header .layui-nav-item .layui-nav-child+a{padding-right:35px} .layui-header .layui-nav-item .layui-nav-child+a{padding-right:35px}
.layui-header .layui-nav-item .layui-nav-child.layui-show+a{background:#fff} .layui-header .layui-nav-item .layui-nav-child.layui-show+a{background:#fff}
.layui-header .layui-nav-item .layui-nav-child.layui-show+a span{color:#333} .layui-header .layui-nav-item .layui-nav-child.layui-show+a span{color:#333}
.layui-header .layui-nav-item .layui-nav-child dd a{padding:0;border-top:1px solid #eaedf1;color:#333;text-align:center} .layui-header .layui-nav-item .layui-nav-child dd a{padding:0;color:#333;text-align:center;border-top:1px solid #eaedf1}
/* 页面布局 - 左则 */ /* 页面布局 - 左则 */
.layui-layout.layui-layout-left-mini>.layui-body{left:50px} .layui-layout.layui-layout-left-mini>.layui-body{left:50px}
.layui-layout.layui-layout-left-hide>.layui-side{display:none} .layui-layout.layui-layout-left-hide>.layui-side{display:none}
.layui-layout.layui-layout-left-hide>.layui-body{left:0!important} .layui-layout.layui-layout-left-hide>.layui-body{left:0!important}
.layui-layout>.layui-side .layui-nav-bar{display:none!important} .layui-layout>.layui-side .layui-nav-bar{display:none!important}
.layui-layout>.layui-side .layui-side-scroll{width:100%!important} .layui-layout>.layui-side .layui-side-scroll{width:100%!important}
.layui-layout>.layui-side .layui-nav-item{border-bottom:1px solid #333} .layui-layout>.layui-side .layui-nav-item{border-bottom:1px solid #333}
.layui-layout>.layui-side .layui-nav-itemed{border-bottom:none!important} .layui-layout>.layui-side .layui-nav-itemed{border-bottom:none!important}
.layui-layout>.layui-side .layui-nav-item a{height:45px;color:#fff!important;line-height:45px;display:block} .layui-layout>.layui-side .layui-nav-item a{height:45px;display:block;color:#fff!important;line-height:45px}
.layui-layout>.layui-side .layui-nav-item a:hover{background:hsla(0,0%,39%,.2)!important} .layui-layout>.layui-side .layui-nav-item a:hover{background:hsla(0,0%,39%,.2)!important}
.layui-layout>.layui-side .layui-nav-tree-top a{height:28px!important;line-height:28px!important} .layui-layout>.layui-side .layui-nav-tree-top a{height:28px!important;line-height:28px!important}
.layui-layout.layui-layout-left-mini>.layui-side,.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-tree,.layui-layout.layui-layout-left-mini>.layui-side .layui-side-scroll{width:50px;text-align:center}
.layui-layout.layui-layout-left-mini>.layui-side,
.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-tree,
.layui-layout.layui-layout-left-mini>.layui-side .layui-side-scroll{width:50px;text-align:center}
.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item a{padding:0} .layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item a{padding:0}
.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item .nav-text{display:none} .layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item .nav-text{display:none}
.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item .nav-icon{display:inline-block!important;padding:0!important} .layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item .nav-icon{display:inline-block!important;padding:0!important}
.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item .layui-nav-child{display:block!important;padding:0;background-color:rgba(0,0,0,.3)!important} .layui-layout.layui-layout-left-mini>.layui-side .layui-nav-item .layui-nav-child{padding:0;display:block!important;background-color:rgba(0,0,0,.3)!important}
.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-tree-top i{display:inline-block;-webkit-transform:rotate(180deg);transform:rotate(180deg);-ms-transform:rotate(180deg)} .layui-layout.layui-layout-left-mini>.layui-side .layui-nav-tree-top i{display:inline-block;-webkit-transform:rotate(180deg);transform:rotate(180deg);-ms-transform:rotate(180deg)}
.layui-layout.layui-layout-left-mini>.layui-side .layui-nav-more{display:none!important} .layui-layout.layui-layout-left-mini>.layui-side .layui-nav-more{display:none!important}
/* 下拉 */ /* 下拉 */
.layui-nav .layui-nav-item .layui-nav-more{border:none;top:0;right:15px;width:auto;height:auto;margin-top:0;font-size:14px;font-style:normal;font-family:layui-icon!important;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased} .layui-nav .layui-nav-item .layui-nav-more{top:0;border:none;right:15px;width:auto;height:auto;margin-top:0;font-size:14px;font-style:normal;font-family:layui-icon!important;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}
.layui-nav .layui-nav-item .layui-nav-mored,.layui-nav .layui-nav-itemed .layui-nav-more{border:none;margin-top:0;transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg)} .layui-nav .layui-nav-item .layui-nav-mored,.layui-nav .layui-nav-itemed .layui-nav-more{border:none;margin-top:0;transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg)}
.layui-nav .layui-nav-item .layui-nav-more::before{content:"\e619"} .layui-nav .layui-nav-item .layui-nav-more::before{content:"\e619"}
/* 对齐及颜色 */ /* 对齐及颜色 */
.pull-right{float:right!important}.pull-left{float:left!important} .absolute{position:absolute!important}.relative{position:relative!important}.pull-left{float:left!important}.pull-right{float:right!important}
.absolute{position:absolute!important}.relative{position:relative!important} .text-top{vertical-align:top!important}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-middle{vertical-align:middle!important}.text-bottom{vertical-align:bottom!important}
.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important} .nowrap{white-space:nowrap!important}.help-block{color:#999;font-size:12px}.inline-block{display:inline-block!important}.block{display:block!important}.pointer{cursor:pointer!important}
.nowrap{white-space:nowrap!important}.help-block{font-size:12px;color:#999}.inline-block{display:inline-block!important} .full-width{width:100%!important}.full-height{height:100%!important}.color-red{color:#ec494e!important}.color-blue{color:#2494f2!important}.color-desc{color:#999!important}.color-text{color:#333!important}.color-green{color:#090!important}
.text-top{vertical-align:top!important}.text-middle{vertical-align:middle!important}.text-bottom{vertical-align:bottom!important} .notdata{display:block;margin-bottom:10px;padding:15px;border:1px solid #e6e6e6;border-radius:0 2px 2px 0;background-color:#f2f2f2;text-align:center;letter-spacing:8px;font-size:13px;line-height:22px}
.block{display:block!important}.pointer{cursor:pointer!important}.full-width{width:100%!important}.full-height{height:100%!important} [data-tips-image]{cursor:zoom-in!important}.notselect{user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.transition{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}
.color-red{color:#ec494e!important}.color-blue{color:#2494f2!important}.color-desc{color:#999!important}.color-text{color:#333!important}.color-green{color:#090!important}
.notdata{padding:15px;font-size:13px;margin-bottom:10px;line-height:22px;border:1px solid #e6e6e6;border-radius:0 2px 2px 0;background-color:#f2f2f2;display:block;letter-spacing:8px;text-align:center}
[data-tips-image]{cursor:zoom-in!important}
.notselect{user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}
.transition{transition:all .2s linear;-o-transition:all .2s linear;-moz-transition:all .2s linear;-webkit-transition:all .2s linear}
/* 文字大小 */ /* 文字大小 */
.font-s10{font-size:10px!important}.font-s11{font-size:11px!important}.font-s12{font-size:12px!important}.font-s13{font-size:13px!important} .font-s10{font-size:10px!important}.font-s11{font-size:11px!important}.font-s12{font-size:12px!important}.font-s13{font-size:13px!important}.font-s14{font-size:14px!important}.font-s16{font-size:16px!important}.font-s18{font-size:18px!important}.font-s20{font-size:20px!important}
.font-s14{font-size:14px!important}.font-s16{font-size:16px!important}.font-s18{font-size:18px!important}.font-s20{font-size:20px!important}
.border-0{border:0!important}.border-radius-0{border-radius:0!important} .border-0{border:0!important}.border-radius-0{border-radius:0!important}
.padding-0{padding:0!important}.padding-5{padding:5px!important}.padding-10{padding:10px!important}.padding-15{padding:15px!important}.padding-20{padding:20px!important}.padding-25{padding:25px!important}.padding-30{padding:30px!important} .padding-0{padding:0!important}.padding-5{padding:5px!important}.padding-10{padding:10px!important}.padding-15{padding:15px!important}.padding-20{padding:20px!important}.padding-25{padding:25px!important}.padding-30{padding:30px!important}
.padding-top-0{padding-top:0!important}.padding-top-5{padding-top:5px!important}.padding-top-10{padding-top:10px!important}.padding-top-15{padding-top:15px!important}.padding-top-20{padding-top:20px!important} .padding-top-0{padding-top:0!important}.padding-top-5{padding-top:5px!important}.padding-top-10{padding-top:10px!important}.padding-top-15{padding-top:15px!important}.padding-top-20{padding-top:20px!important}
.padding-left-0{padding-left:0!important}.padding-left-5{padding-left:5px!important}.padding-left-10{padding-left:10px!important}.padding-left-15{padding-left:15px!important}.padding-left-20{padding-left:20px!important}.padding-left-40{padding-left:40px!important} .padding-left-0{padding-left:0!important}.padding-left-5{padding-left:5px!important}.padding-left-10{padding-left:10px!important}.padding-left-15{padding-left:15px!important}.padding-left-20{padding-left:20px!important}.padding-left-40{padding-left:40px!important}
.padding-right-0{padding-right:0!important}.padding-right-5{padding-right:5px!important}.padding-right-10{padding-right:10px!important}.padding-right-15{padding-right:15px!important}.padding-right-20{padding-right:20px!important} .padding-right-0{padding-right:0!important}.padding-right-5{padding-right:5px!important}.padding-right-10{padding-right:10px!important}.padding-right-15{padding-right:15px!important}.padding-right-20{padding-right:20px!important}
.padding-bottom-0{padding-bottom:0!important}.padding-bottom-5{padding-bottom:5px!important}.padding-bottom-10{padding-bottom:10px!important}.padding-bottom-15{padding-bottom:15px!important}.padding-bottom-20{padding-bottom:20px!important} .padding-bottom-0{padding-bottom:0!important}.padding-bottom-5{padding-bottom:5px!important}.padding-bottom-10{padding-bottom:10px!important}.padding-bottom-15{padding-bottom:15px!important}.padding-bottom-20{padding-bottom:20px!important}
.margin-0{margin:0!important}.margin-5{margin:5px!important}.margin-10{margin:10px!important}.margin-15{margin:15px!important}.margin-20{margin:20px!important}.margin-25{margin:25px!important}.margin-30{margin:30px!important} .margin-0{margin:0!important}.margin-5{margin:5px!important}.margin-10{margin:10px!important}.margin-15{margin:15px!important}.margin-20{margin:20px!important}.margin-25{margin:25px!important}.margin-30{margin:30px!important}
.margin-top-0{margin-top:0!important}.margin-top-5{margin-top:5px!important}.margin-top-10{margin-top:10px!important}.margin-top-15{margin-top:15px!important}.margin-top-20{margin-top:20px!important} .margin-top-0{margin-top:0!important}.margin-top-5{margin-top:5px!important}.margin-top-10{margin-top:10px!important}.margin-top-15{margin-top:15px!important}.margin-top-20{margin-top:20px!important}
.margin-left-0{margin-left:0!important}.margin-left-5{margin-left:5px!important}.margin-left-10{margin-left:10px!important}.margin-left-15{margin-left:15px!important}.margin-left-20{margin-left:20px!important}.margin-left-40{margin-left:40px!important} .margin-left-0{margin-left:0!important}.margin-left-5{margin-left:5px!important}.margin-left-10{margin-left:10px!important}.margin-left-15{margin-left:15px!important}.margin-left-20{margin-left:20px!important}.margin-left-40{margin-left:40px!important}
.margin-right-0{margin-right:0!important}.margin-right-5{margin-right:5px!important}.margin-right-10{margin-right:10px!important}.margin-right-15{margin-right:15px!important}.margin-right-20{margin-right:20px!important} .margin-right-0{margin-right:0!important}.margin-right-5{margin-right:5px!important}.margin-right-10{margin-right:10px!important}.margin-right-15{margin-right:15px!important}.margin-right-20{margin-right:20px!important}
.margin-bottom-0{margin-bottom:0!important}.margin-bottom-5{margin-bottom:5px!important}.margin-bottom-10{margin-bottom:10px!important}.margin-bottom-15{margin-bottom:15px!important}.margin-bottom-20{margin-bottom:20px!important} .margin-bottom-0{margin-bottom:0!important}.margin-bottom-5{margin-bottom:5px!important}.margin-bottom-10{margin-bottom:10px!important}.margin-bottom-15{margin-bottom:15px!important}.margin-bottom-20{margin-bottom:20px!important}
/* 弹框层表单 */ /* 弹框层表单 */
fieldset legend{padding:0 10px;color:#666;font-size:14px} fieldset legend{color:#666;padding:0 10px;font-size:14px}
fieldset{border:1px solid #e6e6e6;margin:0;padding:10px 20px 5px 20px} fieldset{margin:0;border:1px solid #e6e6e6;padding:10px 20px 5px 20px}
.layui-form.layui-card{box-shadow:none}.layui-form.layui-card .layui-card-body{padding:20px 40px 0 0} .layui-form.layui-card{box-shadow:none}
.layui-form.layui-card .layui-card-body{padding:20px 40px 0 0}
.layui-layer-dialog .layui-layer-content .layui-layer-ico{top:50%!important;margin-top:-15px!important} .layui-layer-dialog .layui-layer-content .layui-layer-ico{top:50%!important;margin-top:-15px!important}
.form-search .layui-btn{height:32px;line-height:28px;font-size:12px;padding:0 10px} .form-search .layui-btn{height:32px;line-height:28px;font-size:12px;padding:0 10px}
.form-search .layui-form-label{width:auto!important;padding:0 8px;height:32px;line-height:30px} .form-search .layui-form-label{width:auto!important;padding:0 8px;height:32px;line-height:30px}
.form-search .layui-input-inline{width:170px} .form-search .layui-input-inline{width:170px}
.form-search .layui-input-inline input, .form-search .layui-input-inline input,.form-search .layui-input-inline select{width:100%;height:32px;padding:2px 8px;line-height:30px}
.form-search .layui-input-inline select{padding:2px 8px;height:32px;line-height:30px;width:100%}
.form-search .layui-form-select dl{top:31px;padding:0} .form-search .layui-form-select dl{top:31px;padding:0}
/** 加载进度 */ /** 加载进度 */
.pace-inactive{display:none} .pace-inactive{display:none}
.pace-progress{position:fixed;background:#22df80;z-index:2000;top:0;right:100%;width:100%;height:2px} .pace-progress{position:fixed;top:0;right:100%;width:100%;height:2px;z-index:2000;background:#22df80}
/* 分隔线条 */ /* 分隔线条 */
.hr-line-dashed{border-top:1px dashed #e7eaec;color:#fff;background-color:#fff;height:1px;margin:20px 0} .hr-line-dashed{color:#fff;height:1px;margin:20px 0;background-color:#fff;border-top:1px dashed #e7eaec}
.hr-line-solid{border-bottom:1px solid #e7eaec;background-color:rgba(0,0,0,0);margin-top:15px;margin-bottom:15px} .hr-line-solid{margin-top:15px;margin-bottom:15px;border-bottom:1px solid #e7eaec;background-color:rgba(0,0,0,0)}
.label-required:after{content:'*';color:red;position:absolute;margin-left:4px;font-weight:bold;line-height:1.8em;top:6px;right:5px} .label-required-prev{text-indent:-5px}
.label-required-prev:before{width:5px;color:red;content:'*';display:inline-block;position:relative;text-align:left;font-weight:700;line-height:1.8em}
/* 分页 */ .label-required-next:after{top:6px;right:5px;color:red;content:'*';position:absolute;margin-left:4px;font-weight:700;line-height:1.8em}
/* 通用分页 */
.pagination-container{line-height:40px} .pagination-container{line-height:40px}
.pagination-container>span{color:#666;font-size:9pt} .pagination-container>span{color:#666;font-size:9pt}
.pagination-container>ul{float:right;display:inline-block;margin:0;padding:0} .pagination-container>ul{float:right;display:inline-block;margin:0;padding:0}
.pagination-container>ul>li{z-index:1;display:inline-block} .pagination-container>ul>li{z-index:1;display:inline-block}
.pagination-container>ul>li>a,.pagination-container>ul>li>span{display:inline-block;margin-left:-1px;width:33px;height:30px;border:1px solid #dcdcdc;color:#333;text-align:center;line-height:28px} .pagination-container>ul>li>a,.pagination-container>ul>li>span{color:#333;width:33px;height:30px;border:1px solid #dcdcdc;display:inline-block;margin-left:-1px;text-align:center;line-height:28px}
.pagination-container>ul>li>span{background:#dcdcdc;cursor:default} .pagination-container>ul>li>span{background:#dcdcdc;cursor:default}
.pagination-container>ul>li>a:hover{border-color:#dcdcdc;background:#dcdcdc} .pagination-container>ul>li>a:hover{background:#dcdcdc;border-color:#dcdcdc}
.pagination-container>ul>li.active{z-index:2} .pagination-container>ul>li.active{z-index:2}
.pagination-container>ul>li.active>span{border-color:#009688;background:#009688!important;color:#fff;padding-right:1px} .pagination-container>ul>li.active>span{color:#fff;border-color:#098;padding-right:1px;background:#009688!important}
/* 图片上传 */ /* 图片上传 */
.uploadimage{display:inline-block;width:5pc;height:5pc;background:url(../img/image.png) no-repeat center center;background-size:cover;cursor:pointer} .uploadimage{width:5pc;height:5pc;cursor:pointer;display:inline-block;background:url(../img/image.png) no-repeat center center;background-size:cover}
.uploadimagemtl{margin-right:8px} .uploadimagemtl{margin-right:8px}
.uploadimagemtl a{float:right;display:none;width:20px;height:20px;background:rgba(0,0,0,.5);color:#fff;text-align:center;line-height:22px} .uploadimagemtl a{color:#fff;width:20px;height:20px;float:right;display:none;text-align:center;line-height:22px;background:rgba(0,0,0,.5)}
.uploadimagemtl:hover a{display:inline-block;cursor:pointer} .uploadimagemtl:hover a{cursor:pointer;display:inline-block}
.uploadimagemtl:hover a:hover{color:#fff;text-decoration:none} .uploadimagemtl:hover a:hover{color:#fff;text-decoration:none}
/** Layui样式调整 */ /** Layui样式调整 */
.layui-btn-sm.layui-btn-primary{line-height:28px} .layui-btn-sm.layui-btn-primary{line-height:28px}
.layui-btn-xs.layui-btn-primary{line-height:20px} .layui-btn-xs.layui-btn-primary{line-height:20px}
.layui-input, .layui-select{line-height:38px} .layui-input,.layui-select{line-height:38px}
.layui-table td,.layui-table th{font-size:12px} .layui-table td,.layui-table th{font-size:12px}
.layui-table td .text-explode{margin:0 4px!important;color:#ccc!important} .layui-table td .text-explode{color:#ccc!important;margin:0 4px!important}
.layui-table td .text-explode:first-child{display:none;opacity:0} .layui-table td .text-explode:first-child{display:none;opacity:0}
.layui-table td .background-image{float:left;display:inline-block;margin-right:5px;width:40px;height:40px;background:no-repeat center center;background-size:cover;vertical-align:middle} .layui-table td .background-image{float:left;width:40px;height:40px;display:inline-block;margin-right:5px;background:no-repeat center center;background-size:cover;vertical-align:middle}
.layui-table .list-table-image{width:22px;cursor:pointer} .layui-table .list-table-image{width:22px;cursor:pointer}
.layui-table .list-table-sort-td{width:60px!important;text-align:center!important} .layui-table .list-table-sort-td{width:60px!important;text-align:center!important}
.layui-table .list-table-sort-td button{width:56px;background:#009688} .layui-table .list-table-sort-td button{width:56px;background:#009688}
.layui-table .list-table-sort-td input{padding:2px;width:50px;border:1px solid #e6e6e6;color:#666;text-align:center;font-size:9pt;line-height:18px} .layui-table .list-table-sort-td input{width:50px;color:#666;padding:2px;border:1px solid #e6e6e6;text-align:center;font-size:9pt;line-height:18px}
.layui-table .list-table-check-td{width:30px!important;text-align:center} .layui-table .list-table-check-td{width:30px!important;text-align:center}
.layui-table .list-table-check-td input{margin:0!important;vertical-align:middle} .layui-table .list-table-check-td input{margin:0!important;vertical-align:middle}
/** checkbox 优化 */ /** checkbox 优化 */
label.think-checkbox,label.think-radio{display:inline-block;margin-right:10px} label.think-checkbox,label.think-radio{display:inline-block;margin-right:10px}
.think-checkbox,.think-radio{margin-top:10px;font-weight:400;line-height:17px;cursor:pointer} .think-checkbox,.think-radio{margin-top:10px;font-weight:400;line-height:17px;cursor:pointer}
.think-checkbox input[type=checkbox]{position:relative;display:inline-block!important;box-sizing:border-box!important;margin:0 5px 0 0;width:18px;height:18px;border:1px solid #dcdcdc;border-radius:1px;background:#fff;vertical-align:bottom;cursor:pointer;appearance:none;-webkit-appearance:none} .think-checkbox input[type=checkbox]{width:18px;height:18px;border:1px solid #dcdcdc;cursor:pointer;margin:0 5px 0 0;position:relative;display:inline-block!important;background:#fff;appearance:none;box-sizing:border-box!important;border-radius:1px;vertical-align:bottom;-webkit-appearance:none}
.think-checkbox input[type=checkbox]:checked:after{position:absolute;display:block;padding:2px;color:#666;content:"\e605";font-weight:700;font-style:normal;font-size:12px;font-family:layui-icon!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} .think-checkbox input[type=checkbox]:checked:after{color:#666;padding:2px;display:block;content:"\e605";font-size:12px;font-style:normal;font-weight:700;position:absolute;font-family:layui-icon!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.think-radio input[type=radio]{position:relative;display:inline-block!important;box-sizing:border-box!important;margin:0 5px 0 0;width:18px;height:18px;border:1px solid #dcdcdc;border-radius:1em;background:#fff;vertical-align:bottom;cursor:pointer;appearance:none;-webkit-appearance:none} .think-radio input[type=radio]{width:18px;height:18px;cursor:pointer;margin:0 5px 0 0;position:relative;border:1px solid #dcdcdc;display:inline-block!important;box-sizing:border-box!important;appearance:none;background:#fff;border-radius:1em;vertical-align:bottom;-webkit-appearance:none}
.think-radio input[type=radio]:checked:after{position:relative;top:4px;left:4px;display:block;width:8px;height:8px;border-radius:1em;background:#666;content:''} .think-radio input[type=radio]:checked:after{top:4px;left:4px;width:8px;height:8px;content:'';display:block;position:relative;background:#666;border-radius:1em}
/** 手机盒子及微信菜单 */ /** 手机盒子及微信菜单 */
.mobile-preview{position:relative;width:317px;height:580px;background:url(../img/wechat/mobile_head.png) no-repeat 0 0} .mobile-preview{width:317px;height:580px;position:relative;background:url(../img/wechat/mobile_head.png) no-repeat 0 0}
.mobile-preview .mobile-header{overflow:hidden;margin:0 30px;padding-top:30px;width:auto;color:#fff;text-align:center;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;font-size:15px;-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none} .mobile-preview .mobile-header{color:#fff;width:auto;margin:0 30px;overflow:hidden;font-size:15px;padding-top:30px;text-align:center;white-space:nowrap;text-overflow:ellipsis;word-wrap:normal;user-select:none;pointer-events:none;-moz-user-select:none;-webkit-user-select:none;-webkit-pointer-events:none}
.mobile-body{position:absolute;top:60px;right:0;bottom:0;left:0;border:1px solid #ccc;background:#f5f5f5} .mobile-body{top:60px;left:0;right:0;bottom:0;position:absolute;border:1px solid #ccc;background:#f5f5f5}
.mobile-body iframe{width:100%;height:100%} .mobile-body iframe{width:100%;height:100%}
.mobile-footer{position:absolute;right:0;bottom:0;left:0;margin:0;padding-left:43px;border:1px solid #ccc;background:url(../img/wechat/mobile_foot.png) no-repeat 0 0;list-style-type:none} .mobile-footer{left:0;right:0;bottom:0;margin:0;position:absolute;padding-left:43px;border:1px solid #ccc;list-style-type:none;background:url(../img/wechat/mobile_foot.png) no-repeat 0 0}
.mobile-footer li{position:relative;float:left;width:33.33%;text-align:center;line-height:50px} .mobile-footer li{float:left;width:33.33%;position:relative;text-align:center;line-height:50px}
.mobile-footer li a{display:block;overflow:hidden;margin-top:-1px;margin-bottom:-1px;width:auto;border:1px solid hsla(0,0%,100%,0);border-left:1px solid #e7e7eb;color:#616161;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal} .mobile-footer li a{width:auto;display:block;overflow:hidden;border:1px solid hsla(0,0%,100%,0);border-left:1px solid #e7e7eb;margin-top:-1px;margin-bottom:-1px;color:#616161;white-space:nowrap;text-decoration:none;text-overflow:ellipsis;word-wrap:normal}
.mobile-footer li a:hover{background:rgba(0,0,0,.02)} .mobile-footer li a:hover{background:rgba(0,0,0,.02)}
.mobile-footer li a.active{border:1px solid #44b549!important;box-shadow:0 0 1px #44b549} .mobile-footer li a.active{border:1px solid #44b549!important;box-shadow:0 0 1px #44b549}
.mobile-footer li a span:before{content:'';display:inline-block;width:1px;height:1px} .mobile-footer li a span:before{width:1px;height:1px;content:'';display:inline-block}
.mobile-footer li>.close{position:absolute;top:1px;right:1px;display:none;width:18px;height:18px;text-align:center;line-height:18px;cursor:pointer} .mobile-footer li>.close{top:1px;right:1px;width:18px;height:18px;display:none;cursor:pointer;position:absolute;text-align:center;line-height:18px}
.mobile-footer li:hover>.close{display:inline-block} .mobile-footer li:hover>.close{display:inline-block}
.mobile-footer li:hover>.close:hover{background:#999!important;color:#fff!important} .mobile-footer li:hover>.close:hover{color:#fff!important;background:#999!important}
.mobile-footer .icon-add{width:14px;height:14px;border-bottom:none!important;background:url(../img/wechat/index.png) 0 0 no-repeat} .mobile-footer .icon-add{width:14px;height:14px;border-bottom:none!important;background:url(../img/wechat/index.png) 0 0 no-repeat}
.mobile-footer .icon-add,.mobile-footer .icon-sub{display:inline-block;vertical-align:middle} .mobile-footer .icon-add,.mobile-footer .icon-sub{display:inline-block;vertical-align:middle}
.mobile-footer .icon-sub{margin-right:2px;width:7px;height:7px;background:url(../img/wechat/index.png) 0 -3pc no-repeat} .mobile-footer .icon-sub{width:7px;height:7px;margin-right:2px;background:url(../img/wechat/index.png) 0 -3pc no-repeat}
.mobile-footer .sub-menu{position:absolute;bottom:60px;display:block;margin:-1px;width:100%;border:1px solid #d0d0d0;background-color:#fafafa} .mobile-footer .sub-menu{width:100%;bottom:60px;margin:-1px;display:block;position:absolute;border:1px solid #d0d0d0;background-color:#fafafa}
.mobile-footer .sub-menu ul,.mobile-footer .sub-menu ul li{z-index:11;float:none;display:block;padding:0;width:100%} .mobile-footer .sub-menu ul,.mobile-footer .sub-menu ul li{float:none;padding:0;z-index:11;display:block;width:100%}
.mobile-footer .sub-menu ul li a{padding:0 5px;border:1px solid hsla(0,0%,100%,0)} .mobile-footer .sub-menu ul li a{padding:0 5px;border:1px solid hsla(0,0%,100%,0)}
.mobile-footer .sub-menu ul li a.bottom-border{margin:-1px -1px 0;border-bottom:1px solid #e7e7eb} .mobile-footer .sub-menu ul li a.bottom-border{margin:-1px -1px 0;border-bottom:1px solid #e7e7eb}
.mobile-footer .sub-menu ul li:last-child a.bottom-border{border-bottom-color:#fff} .mobile-footer .sub-menu ul li:last-child a.bottom-border{border-bottom-color:#fff}
.mobile-footer .arrow{position:absolute;left:50%;margin-left:-6px} .mobile-footer .arrow{left:50%;position:absolute;margin-left:-6px}
.mobile-footer .arrow_in,.mobile-footer .arrow_out{z-index:10;display:inline-block;width:0;height:0;border:6px dashed transparent;border-bottom-width:0;border-top-style:solid} .mobile-footer .arrow_in,.mobile-footer .arrow_out{width:0;height:0;z-index:10;display:inline-block;border:6px dashed transparent;border-bottom-width:0;border-top-style:solid}
.mobile-footer .arrow_in{bottom:-5px;z-index:3;border-top-color:#fafafa} .mobile-footer .arrow_in{z-index:3;bottom:-5px;border-top-color:#fafafa}
.mobile-footer .arrow_out{bottom:-6px;z-index:2;border-top-color:#d0d0d0} .mobile-footer .arrow_out{z-index:2;bottom:-6px;border-top-color:#d0d0d0}

View File

@ -15,17 +15,9 @@
body,html{height:100%} body,html{height:100%}
body{background:url(../img/login/bg1.jpg) no-repeat center center;background-size:cover} body{background:url(../img/login/bg1.jpg) no-repeat center center;background-size:cover}
.login-container form input, .login-container form input,.login-container form input:-webkit-autofill,.login-container form input:-webkit-autofill:active,.login-container form input:-webkit-autofill:focus,.login-container form input:-webkit-autofill:hover{-webkit-transition:color 9999s ease-out,background-color 9999s ease-out!important;-webkit-text-fill-color:#fff!important;-webkit-transition-delay:9999s!important}
.login-container form input:-webkit-autofill,
.login-container form input:-webkit-autofill:focus,
.login-container form input:-webkit-autofill:active,
.login-container form input:-webkit-autofill:hover {
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;
-webkit-text-fill-color: #fff !important;
-webkit-transition-delay: 9999s !important;
}
.login-container .header{position:absolute;top:0;left:0;width:100%;height:47px;text-shadow:#000 .1em .1em .1em} .login-container .header{position:absolute;top:0;left:0;width:100%;height:47px;text-shadow:#000 .1em .1em .1em}
.login-container .header a, .login-container .header a:focus, .login-container .header a:hover{color:#fff;text-decoration:none;letter-spacing:1px} .login-container .header a,.login-container .header a:focus,.login-container .header a:hover{color:#fff;text-decoration:none;letter-spacing:1px}
.login-container .header .title{float:left;color:#fff;text-indent:40px;letter-spacing:1px;font-size:18px;line-height:47px} .login-container .header .title{float:left;color:#fff;text-indent:40px;letter-spacing:1px;font-size:18px;line-height:47px}
.login-container .header ul{float:right;padding-right:30px} .login-container .header ul{float:right;padding-right:30px}
.login-container .header ul li{float:left;margin-left:20px;line-height:47px} .login-container .header ul li{float:left;margin-left:20px;line-height:47px}
@ -36,10 +28,11 @@ body{background:url(../img/login/bg1.jpg) no-repeat center center;background-siz
.login-container form ul li input{padding:0 15px;letter-spacing:1px;height:45px;border-radius:6px;background:rgba(0,0,0,.1);box-shadow:0 2px 3px 0 rgba(0,0,0,.3) inset;color:#fff;text-indent:35px;font-size:14px;line-height:42px;text-shadow:#000 .1em .1em .1em} .login-container form ul li input{padding:0 15px;letter-spacing:1px;height:45px;border-radius:6px;background:rgba(0,0,0,.1);box-shadow:0 2px 3px 0 rgba(0,0,0,.3) inset;color:#fff;text-indent:35px;font-size:14px;line-height:42px;text-shadow:#000 .1em .1em .1em}
.login-container form ul li input:focus,.login-container form ul li input:hover{border:1px solid #fff!important} .login-container form ul li input:focus,.login-container form ul li input:hover{border:1px solid #fff!important}
.login-container form ul li input::placeholder{color:rgba(255,255,255,.2)!important;letter-spacing:1px} .login-container form ul li input::placeholder{color:rgba(255,255,255,.2)!important;letter-spacing:1px}
.login-container form ul li span{color:yellow!important;;letter-spacing:1px} .login-container form ul li span{color:#ff0!important;letter-spacing:1px}
.login-container form ul li button{height:45px!important;border-radius:4px!important;background:#fff!important;box-shadow:0 15px 30px 0 hsla(0,0%,100%,.25) inset,0 2px 7px 0 rgba(0,0,0,.2);color:#333!important;letter-spacing:1px!important} .login-container form ul li button{height:45px!important;border-radius:4px!important;background:#fff!important;box-shadow:0 15px 30px 0 hsla(0,0%,100%,.25) inset,0 2px 7px 0 rgba(0,0,0,.2);color:#333!important;letter-spacing:1px!important}
.login-container .footer{position:absolute;bottom:0;left:0;width:100%;height:50px;color:#fff;text-align:center;text-shadow:#000 .1em .1em .1em;letter-spacing:1px;line-height:50px} .login-container .footer{position:absolute;bottom:0;left:0;width:100%;height:50px;color:#fff;text-align:center;text-shadow:#000 .1em .1em .1em;letter-spacing:1px;line-height:50px}
.login-container .footer span,.login-container .footer a{color:#fff}.login-container .footer a:hover{color:#ccc} .login-container .footer a,.login-container .footer span{color:#fff}
.login-container .footer a:hover{color:#ccc}
#supersized{position:fixed;top:0;left:0;z-index:-999;display:block;overflow:hidden;width:100%;height:100%} #supersized{position:fixed;top:0;left:0;z-index:-999;display:block;overflow:hidden;width:100%;height:100%}
#supersized img{position:relative;display:none;width:auto;height:auto;outline:0;border:0} #supersized img{position:relative;display:none;width:auto;height:auto;outline:0;border:0}

View File

@ -20,7 +20,7 @@ use think\route\Dispatch;
*/ */
class App extends Container class App extends Container
{ {
const VERSION = '5.1.35 LTS'; const VERSION = '5.1.36 LTS';
/** /**
* 当前模块路径 * 当前模块路径
@ -179,6 +179,11 @@ class App extends Container
$this->instance('app', $this); $this->instance('app', $this);
// 加载环境变量配置文件
if (is_file($this->rootPath . '.env')) {
$this->env->load($this->rootPath . '.env');
}
$this->configExt = $this->env->get('config_ext', '.php'); $this->configExt = $this->env->get('config_ext', '.php');
// 加载惯例配置文件 // 加载惯例配置文件
@ -196,11 +201,6 @@ class App extends Container
'vendor_path' => $this->rootPath . 'vendor' . DIRECTORY_SEPARATOR, 'vendor_path' => $this->rootPath . 'vendor' . DIRECTORY_SEPARATOR,
]); ]);
// 加载环境变量配置文件
if (is_file($this->rootPath . '.env')) {
$this->env->load($this->rootPath . '.env');
}
$this->namespace = $this->env->get('app_namespace', $this->namespace); $this->namespace = $this->env->get('app_namespace', $this->namespace);
$this->env->set('app_namespace', $this->namespace); $this->env->set('app_namespace', $this->namespace);

View File

@ -127,8 +127,10 @@ class Log implements LoggerInterface
} }
if (PHP_SAPI == 'cli') { if (PHP_SAPI == 'cli') {
// 命令行日志实时写入 if (empty($this->config['level']) || in_array($type, $this->config['level'])) {
$this->write($msg, $type, true); // 命令行日志实时写入
$this->write($msg, $type, true);
}
} else { } else {
$this->log[$type][] = $msg; $this->log[$type][] = $msg;
} }

View File

@ -1514,12 +1514,12 @@ class Validate
$scene = $this->currentScene; $scene = $this->currentScene;
} }
$this->only = $this->append = $this->remove = [];
if (empty($scene)) { if (empty($scene)) {
return; return;
} }
$this->only = $this->append = $this->remove = [];
if (method_exists($this, 'scene' . $scene)) { if (method_exists($this, 'scene' . $scene)) {
call_user_func([$this, 'scene' . $scene]); call_user_func([$this, 'scene' . $scene]);
} elseif (isset($this->scene[$scene])) { } elseif (isset($this->scene[$scene])) {

View File

@ -360,4 +360,9 @@ abstract class Driver
{ {
return $this->writeTimes; return $this->writeTimes;
} }
public function __call($method, $args)
{
return call_user_func_array([$this->handler, $method], $args);
}
} }

View File

@ -267,6 +267,10 @@ class Redis extends Driver
protected function getTagItem($tag) protected function getTagItem($tag)
{ {
$tagName = $this->getTagKey($tag); $tagName = $this->getTagKey($tag);
return $this->handler->sMembers($tagName); $keys = $this->handler->sMembers($tagName);
return array_map(function ($key) {
return $this->getCacheKey($key);
}, $keys);
} }
} }

View File

@ -1246,22 +1246,14 @@ abstract class Connection
* @access public * @access public
* @param Query $query 查询对象 * @param Query $query 查询对象
* @param string $field 字段名 * @param string $field 字段名
* @param bool $default 默认值 * @param mixed $default 默认值
* @param bool $one 是否返回一个值
* @return mixed * @return mixed
*/ */
public function value(Query $query, $field, $default = null) public function value(Query $query, $field, $default = null, $one = true)
{ {
$options = $query->getOptions(); $options = $query->getOptions();
if (empty($options['fetch_sql']) && !empty($options['cache'])) {
$cache = $options['cache'];
$result = $this->getCacheData($query, $cache, null, $key);
if (false !== $result) {
return $result;
}
}
if (isset($options['field'])) { if (isset($options['field'])) {
$query->removeOption('field'); $query->removeOption('field');
} }
@ -1271,7 +1263,19 @@ abstract class Connection
} }
$query->setOption('field', $field); $query->setOption('field', $field);
$query->setOption('limit', 1);
if (empty($options['fetch_sql']) && !empty($options['cache'])) {
$cache = $options['cache'];
$result = $this->getCacheData($query, $cache, null, $key);
if (false !== $result) {
return $result;
}
}
if ($one) {
$query->setOption('limit', 1);
}
// 生成查询SQL // 生成查询SQL
$sql = $this->builder->select($query); $sql = $this->builder->select($query);
@ -1320,7 +1324,7 @@ abstract class Connection
$field = $aggregate . '(' . (!empty($distinct) ? 'DISTINCT ' : '') . $this->builder->parseKey($query, $field, true) . ') AS tp_' . strtolower($aggregate); $field = $aggregate . '(' . (!empty($distinct) ? 'DISTINCT ' : '') . $this->builder->parseKey($query, $field, true) . ') AS tp_' . strtolower($aggregate);
return $this->value($query, $field, 0); return $this->value($query, $field, 0, false);
} }
/** /**
@ -1335,16 +1339,6 @@ abstract class Connection
{ {
$options = $query->getOptions(); $options = $query->getOptions();
if (empty($options['fetch_sql']) && !empty($options['cache'])) {
// 判断查询缓存
$cache = $options['cache'];
$result = $this->getCacheData($query, $cache, null, $guid);
if (false !== $result) {
return $result;
}
}
if (isset($options['field'])) { if (isset($options['field'])) {
$query->removeOption('field'); $query->removeOption('field');
} }
@ -1362,6 +1356,16 @@ abstract class Connection
$query->setOption('field', $field); $query->setOption('field', $field);
if (empty($options['fetch_sql']) && !empty($options['cache'])) {
// 判断查询缓存
$cache = $options['cache'];
$result = $this->getCacheData($query, $cache, null, $guid);
if (false !== $result) {
return $result;
}
}
// 生成查询SQL // 生成查询SQL
$sql = $this->builder->select($query); $sql = $this->builder->select($query);

View File

@ -1527,7 +1527,7 @@ class Query
} }
if ($field instanceof Expression) { if ($field instanceof Expression) {
return $this->whereRaw($field, is_array($op) ? $op : []); return $this->whereRaw($field, is_array($op) ? $op : [], $logic);
} elseif ($strict) { } elseif ($strict) {
// 使用严格模式查询 // 使用严格模式查询
$where = [$field, $op, $condition, $logic]; $where = [$field, $op, $condition, $logic];
@ -1538,7 +1538,7 @@ class Query
$where = $field; $where = $field;
} elseif (is_string($field)) { } elseif (is_string($field)) {
if (preg_match('/[,=\<\'\"\(\s]/', $field)) { if (preg_match('/[,=\<\'\"\(\s]/', $field)) {
return $this->whereRaw($field, $op); return $this->whereRaw($field, $op, $logic);
} elseif (is_string($op) && strtolower($op) == 'exp') { } elseif (is_string($op) && strtolower($op) == 'exp') {
$bind = isset($param[2]) && is_array($param[2]) ? $param[2] : null; $bind = isset($param[2]) && is_array($param[2]) ? $param[2] : null;
return $this->whereExp($field, $condition, $bind, $logic); return $this->whereExp($field, $condition, $bind, $logic);

View File

@ -26,7 +26,7 @@ class DbException extends Exception
* @param string $sql * @param string $sql
* @param int $code * @param int $code
*/ */
public function __construct($message, array $config, $sql, $code = 10500) public function __construct($message, array $config = [], $sql = '', $code = 10500)
{ {
$this->message = $message; $this->message = $message;
$this->code = $code; $this->code = $code;

View File

@ -23,7 +23,7 @@ use think\Facade;
* @method array set(mixed $name, mixed $value = null) static 设置配置参数 * @method array set(mixed $name, mixed $value = null) static 设置配置参数
* @method array reset(string $name ='') static 重置配置参数 * @method array reset(string $name ='') static 重置配置参数
* @method void remove(string $name = '') static 移除配置 * @method void remove(string $name = '') static 移除配置
* @method void setYaconf(mixed $$yaconf) static 设置开启Yaconf 或者指定配置文件名 * @method void setYaconf(mixed $yaconf) static 设置开启Yaconf 或者指定配置文件名
*/ */
class Config extends Facade class Config extends Facade
{ {

View File

@ -371,9 +371,7 @@ trait Attribute
switch ($type) { switch ($type) {
case 'datetime': case 'datetime':
case 'date': case 'date':
$format = !empty($param) ? $param : $this->dateFormat; $value = $this->formatDateTime('Y-m-d H:i:s.u');
$format .= strpos($format, 'u') || false !== strpos($format, '\\') ? '' : '.u';
$value = $this->formatDateTime($format);
break; break;
case 'timestamp': case 'timestamp':
case 'integer': case 'integer':
@ -386,8 +384,7 @@ trait Attribute
'date', 'date',
'timestamp', 'timestamp',
])) { ])) {
$format = strpos($this->dateFormat, 'u') || false !== strpos($this->dateFormat, '\\') ? '' : '.u'; $value = $this->formatDateTime('Y-m-d H:i:s.u');
$value = $this->formatDateTime($this->dateFormat . $format);
} else { } else {
$value = time(); $value = time();
} }
@ -438,9 +435,8 @@ trait Attribute
} }
break; break;
case 'datetime': case 'datetime':
$format = !empty($param) ? $param : $this->dateFormat; $value = is_numeric($value) ? $value : strtotime($value);
$value = is_numeric($value) ? $value : strtotime($value); $value = $this->formatDateTime('Y-m-d H:i:s.u', $value);
$value = $this->formatDateTime($format, $value);
break; break;
case 'object': case 'object':
if (is_object($value)) { if (is_object($value)) {

View File

@ -130,38 +130,50 @@ trait Conversion
*/ */
public function toArray() public function toArray()
{ {
$item = []; $item = [];
$visible = []; $hasVisible = false;
$hidden = [];
foreach ($this->visible as $key => $val) {
if (is_string($val)) {
if (strpos($val, '.')) {
list($relation, $name) = explode('.', $val);
$this->visible[$relation][] = $name;
} else {
$this->visible[$val] = true;
$hasVisible = true;
}
unset($this->visible[$key]);
}
}
foreach ($this->hidden as $key => $val) {
if (is_string($val)) {
if (strpos($val, '.')) {
list($relation, $name) = explode('.', $val);
$this->hidden[$relation][] = $name;
} else {
$this->hidden[$val] = true;
}
unset($this->hidden[$key]);
}
}
// 合并关联数据 // 合并关联数据
$data = array_merge($this->data, $this->relation); $data = array_merge($this->data, $this->relation);
// 过滤属性
if (!empty($this->visible)) {
$array = $this->parseAttr($this->visible, $visible);
if (!empty($array)) {
$data = array_intersect_key($data, array_flip($array));
}
}
if (empty($array) && !empty($this->hidden)) {
$array = $this->parseAttr($this->hidden, $hidden);
$data = array_diff_key($data, array_flip($array));
}
foreach ($data as $key => $val) { foreach ($data as $key => $val) {
if ($val instanceof Model || $val instanceof ModelCollection) { if ($val instanceof Model || $val instanceof ModelCollection) {
// 关联模型对象 // 关联模型对象
if (isset($visible[$key])) { if (isset($this->visible[$key])) {
$val->visible($visible[$key]); $val->visible($this->visible[$key]);
} elseif (isset($hidden[$key])) { } elseif (isset($this->hidden[$key])) {
$val->hidden($hidden[$key]); $val->hidden($this->hidden[$key]);
} }
// 关联模型对象 // 关联模型对象
$item[$key] = $val->toArray(); $item[$key] = $val->toArray();
} else { } elseif (isset($this->visible[$key])) {
// 模型属性 $item[$key] = $this->getAttr($key);
} elseif (!isset($this->hidden[$key]) && !$hasVisible) {
$item[$key] = $this->getAttr($key); $item[$key] = $this->getAttr($key);
} }
} }
@ -252,28 +264,4 @@ trait Conversion
return $collection; return $collection;
} }
/**
* 解析隐藏及显示属性
* @access protected
* @param array $attrs 属性
* @param array $result 结果集
* @return array
*/
protected function parseAttr($attrs, &$result)
{
$array = [];
foreach ($attrs as $key => $val) {
if (is_array($val)) {
$result[$key] = $val;
} elseif (strpos($val, '.')) {
list($key, $name) = explode('.', $val);
$result[$key][] = $name;
} else {
$array[] = $val;
}
}
return $array;
}
} }

View File

@ -235,7 +235,8 @@ trait SoftDelete
$field = $this->getDeleteTimeField(true); $field = $this->getDeleteTimeField(true);
if ($field) { if ($field) {
$query->useSoftDelete($field, $this->defaultSoftDelete); $condition = is_null($this->defaultSoftDelete) ? ['null', ''] : ['=', $this->defaultSoftDelete];
$query->useSoftDelete($field, $condition);
} }
} }
} }

View File

@ -266,11 +266,11 @@ class HasMany extends Relation
/** /**
* 批量保存当前关联数据对象 * 批量保存当前关联数据对象
* @access public * @access public
* @param array $dataSet 数据集 * @param array|\think\Collection $dataSet 数据集
* @param boolean $replace 是否自动识别更新和写入 * @param boolean $replace 是否自动识别更新和写入
* @return array|false * @return array|false
*/ */
public function saveAll(array $dataSet, $replace = true) public function saveAll($dataSet, $replace = true)
{ {
$result = []; $result = [];

View File

@ -87,11 +87,12 @@ class Redirect extends Response
/** /**
* 记住当前url后跳转 * 记住当前url后跳转
* @access public * @access public
* @param string $url 指定记住的url
* @return $this * @return $this
*/ */
public function remember() public function remember($url = null)
{ {
$this->app['session']->set('redirect_url', $this->app['request']->url()); $this->app['session']->set('redirect_url', $url ?: $this->app['request']->url());
return $this; return $this;
} }

2
vendor/autoload.php vendored
View File

@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php'; require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239::getLoader(); return ComposerAutoloaderIniteec25c7bb7e8a3ad5cc9d508adb65132::getLoader();

View File

@ -205,6 +205,7 @@ return array(
'library\\tools\\Csrf' => $vendorDir . '/zoujingli/think-library/src/tools/Csrf.php', 'library\\tools\\Csrf' => $vendorDir . '/zoujingli/think-library/src/tools/Csrf.php',
'library\\tools\\Csv' => $vendorDir . '/zoujingli/think-library/src/tools/Csv.php', 'library\\tools\\Csv' => $vendorDir . '/zoujingli/think-library/src/tools/Csv.php',
'library\\tools\\Data' => $vendorDir . '/zoujingli/think-library/src/tools/Data.php', 'library\\tools\\Data' => $vendorDir . '/zoujingli/think-library/src/tools/Data.php',
'library\\tools\\Emoji' => $vendorDir . '/zoujingli/think-library/src/tools/Emoji.php',
'library\\tools\\Express' => $vendorDir . '/zoujingli/think-library/src/tools/Express.php', 'library\\tools\\Express' => $vendorDir . '/zoujingli/think-library/src/tools/Express.php',
'library\\tools\\Http' => $vendorDir . '/zoujingli/think-library/src/tools/Http.php', 'library\\tools\\Http' => $vendorDir . '/zoujingli/think-library/src/tools/Http.php',
'library\\tools\\Node' => $vendorDir . '/zoujingli/think-library/src/tools/Node.php', 'library\\tools\\Node' => $vendorDir . '/zoujingli/think-library/src/tools/Node.php',

View File

@ -9,5 +9,5 @@ return array(
'841780ea2e1d6545ea3a253239d59c05' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/functions.php', '841780ea2e1d6545ea3a253239d59c05' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/functions.php',
'9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php', '9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php',
'cc56288302d9df745d97c934d6a6e5f0' => $vendorDir . '/topthink/think-queue/src/common.php', 'cc56288302d9df745d97c934d6a6e5f0' => $vendorDir . '/topthink/think-queue/src/common.php',
'6bfa2db14bcd36db12d0b2121e50b8f2' => $vendorDir . '/zoujingli/think-library/common.php', '8dafcc6956460bc297e00381fed53e11' => $vendorDir . '/zoujingli/think-library/src/common.php',
); );

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer // autoload_real.php @generated by Composer
class ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239 class ComposerAutoloaderIniteec25c7bb7e8a3ad5cc9d508adb65132
{ {
private static $loader; private static $loader;
@ -19,15 +19,15 @@ class ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239
return self::$loader; return self::$loader;
} }
spl_autoload_register(array('ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239', 'loadClassLoader'), true, true); spl_autoload_register(array('ComposerAutoloaderIniteec25c7bb7e8a3ad5cc9d508adb65132', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(); self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239', 'loadClassLoader')); spl_autoload_unregister(array('ComposerAutoloaderIniteec25c7bb7e8a3ad5cc9d508adb65132', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) { if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php'; require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit369934dfb865b90eedef5b9c19990239::getInitializer($loader)); call_user_func(\Composer\Autoload\ComposerStaticIniteec25c7bb7e8a3ad5cc9d508adb65132::getInitializer($loader));
} else { } else {
$map = require __DIR__ . '/autoload_namespaces.php'; $map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) { foreach ($map as $namespace => $path) {
@ -48,19 +48,19 @@ class ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239
$loader->register(true); $loader->register(true);
if ($useStaticLoader) { if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit369934dfb865b90eedef5b9c19990239::$files; $includeFiles = Composer\Autoload\ComposerStaticIniteec25c7bb7e8a3ad5cc9d508adb65132::$files;
} else { } else {
$includeFiles = require __DIR__ . '/autoload_files.php'; $includeFiles = require __DIR__ . '/autoload_files.php';
} }
foreach ($includeFiles as $fileIdentifier => $file) { foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire369934dfb865b90eedef5b9c19990239($fileIdentifier, $file); composerRequireeec25c7bb7e8a3ad5cc9d508adb65132($fileIdentifier, $file);
} }
return $loader; return $loader;
} }
} }
function composerRequire369934dfb865b90eedef5b9c19990239($fileIdentifier, $file) function composerRequireeec25c7bb7e8a3ad5cc9d508adb65132($fileIdentifier, $file)
{ {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file; require $file;

View File

@ -4,13 +4,13 @@
namespace Composer\Autoload; namespace Composer\Autoload;
class ComposerStaticInit369934dfb865b90eedef5b9c19990239 class ComposerStaticIniteec25c7bb7e8a3ad5cc9d508adb65132
{ {
public static $files = array ( public static $files = array (
'841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php', '841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php',
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php', '9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
'cc56288302d9df745d97c934d6a6e5f0' => __DIR__ . '/..' . '/topthink/think-queue/src/common.php', 'cc56288302d9df745d97c934d6a6e5f0' => __DIR__ . '/..' . '/topthink/think-queue/src/common.php',
'6bfa2db14bcd36db12d0b2121e50b8f2' => __DIR__ . '/..' . '/zoujingli/think-library/common.php', '8dafcc6956460bc297e00381fed53e11' => __DIR__ . '/..' . '/zoujingli/think-library/src/common.php',
); );
public static $prefixLengthsPsr4 = array ( public static $prefixLengthsPsr4 = array (
@ -310,6 +310,7 @@ class ComposerStaticInit369934dfb865b90eedef5b9c19990239
'library\\tools\\Csrf' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Csrf.php', 'library\\tools\\Csrf' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Csrf.php',
'library\\tools\\Csv' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Csv.php', 'library\\tools\\Csv' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Csv.php',
'library\\tools\\Data' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Data.php', 'library\\tools\\Data' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Data.php',
'library\\tools\\Emoji' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Emoji.php',
'library\\tools\\Express' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Express.php', 'library\\tools\\Express' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Express.php',
'library\\tools\\Http' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Http.php', 'library\\tools\\Http' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Http.php',
'library\\tools\\Node' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Node.php', 'library\\tools\\Node' => __DIR__ . '/..' . '/zoujingli/think-library/src/tools/Node.php',
@ -345,9 +346,9 @@ class ComposerStaticInit369934dfb865b90eedef5b9c19990239
public static function getInitializer(ClassLoader $loader) public static function getInitializer(ClassLoader $loader)
{ {
return \Closure::bind(function () use ($loader) { return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit369934dfb865b90eedef5b9c19990239::$prefixLengthsPsr4; $loader->prefixLengthsPsr4 = ComposerStaticIniteec25c7bb7e8a3ad5cc9d508adb65132::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit369934dfb865b90eedef5b9c19990239::$prefixDirsPsr4; $loader->prefixDirsPsr4 = ComposerStaticIniteec25c7bb7e8a3ad5cc9d508adb65132::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit369934dfb865b90eedef5b9c19990239::$classMap; $loader->classMap = ComposerStaticIniteec25c7bb7e8a3ad5cc9d508adb65132::$classMap;
}, null, ClassLoader::class); }, null, ClassLoader::class);
} }

View File

@ -239,17 +239,17 @@
}, },
{ {
"name": "topthink/framework", "name": "topthink/framework",
"version": "v5.1.35", "version": "v5.1.36",
"version_normalized": "5.1.35.0", "version_normalized": "5.1.36.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/top-think/framework.git", "url": "https://github.com/top-think/framework.git",
"reference": "c53c0c6132022a87e8ee9c4109939eaf9a8a7adb" "reference": "135eee67ce9ee0b07da201f743d7dd88ec431abb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/top-think/framework/zipball/c53c0c6132022a87e8ee9c4109939eaf9a8a7adb", "url": "https://api.github.com/repos/top-think/framework/zipball/135eee67ce9ee0b07da201f743d7dd88ec431abb",
"reference": "c53c0c6132022a87e8ee9c4109939eaf9a8a7adb", "reference": "135eee67ce9ee0b07da201f743d7dd88ec431abb",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -271,7 +271,7 @@
"sebastian/phpcpd": "2.*", "sebastian/phpcpd": "2.*",
"squizlabs/php_codesniffer": "2.*" "squizlabs/php_codesniffer": "2.*"
}, },
"time": "2019-03-03T00:44:44+00:00", "time": "2019-04-28T08:56:58+00:00",
"type": "think-framework", "type": "think-framework",
"installation-source": "dist", "installation-source": "dist",
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
@ -499,12 +499,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "0a52cf6cca88079e164ca101a2667d5539ee96b5" "reference": "00585bd6214a0539165de8cf4bfefff798e49787"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/0a52cf6cca88079e164ca101a2667d5539ee96b5", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/00585bd6214a0539165de8cf4bfefff798e49787",
"reference": "0a52cf6cca88079e164ca101a2667d5539ee96b5", "reference": "00585bd6214a0539165de8cf4bfefff798e49787",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -523,12 +523,12 @@
"qiniu/php-sdk": "^7.2", "qiniu/php-sdk": "^7.2",
"topthink/framework": "5.1.*" "topthink/framework": "5.1.*"
}, },
"time": "2019-04-18T15:29:48+00:00", "time": "2019-04-30T05:59:26+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {
"files": [ "files": [
"common.php" "src/common.php"
], ],
"psr-4": { "psr-4": {
"library\\": "src" "library\\": "src"
@ -539,21 +539,21 @@
"MIT" "MIT"
], ],
"description": "ThinkPHP Basic Development Library", "description": "ThinkPHP Basic Development Library",
"homepage": "http://library.thinkadmin.top" "homepage": "http://framework.thinkadmin.top"
}, },
{ {
"name": "zoujingli/wechat-developer", "name": "zoujingli/wechat-developer",
"version": "v1.2.10", "version": "v1.2.11",
"version_normalized": "1.2.10.0", "version_normalized": "1.2.11.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/WeChatDeveloper.git", "url": "https://github.com/zoujingli/WeChatDeveloper.git",
"reference": "f68a378fc931f434b8e4044c5539bb24ed85038c" "reference": "b4a905a6188807f7d5e51c9e2ea7622c97db476b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/f68a378fc931f434b8e4044c5539bb24ed85038c", "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/b4a905a6188807f7d5e51c9e2ea7622c97db476b",
"reference": "f68a378fc931f434b8e4044c5539bb24ed85038c", "reference": "b4a905a6188807f7d5e51c9e2ea7622c97db476b",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -571,7 +571,7 @@
"ext-simplexml": "*", "ext-simplexml": "*",
"php": ">=5.4" "php": ">=5.4"
}, },
"time": "2019-03-30T07:30:45+00:00", "time": "2019-04-23T07:52:27+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {
@ -614,12 +614,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/WeOpenDeveloper.git", "url": "https://github.com/zoujingli/WeOpenDeveloper.git",
"reference": "99a8daa7458a9c5421ecc44daba6783278fc5a6d" "reference": "8bd3fe34a25c267e22415a4d6526e16bf10d6b61"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/WeOpenDeveloper/zipball/99a8daa7458a9c5421ecc44daba6783278fc5a6d", "url": "https://api.github.com/repos/zoujingli/WeOpenDeveloper/zipball/8bd3fe34a25c267e22415a4d6526e16bf10d6b61",
"reference": "99a8daa7458a9c5421ecc44daba6783278fc5a6d", "reference": "8bd3fe34a25c267e22415a4d6526e16bf10d6b61",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -635,7 +635,7 @@
"php": ">=5.4", "php": ">=5.4",
"zoujingli/wechat-developer": "^1.0" "zoujingli/wechat-developer": "^1.0"
}, },
"time": "2019-03-30T05:58:15+00:00", "time": "2019-04-28T09:38:09+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {

View File

@ -2,7 +2,7 @@
"type": "library", "type": "library",
"name": "zoujingli/think-library", "name": "zoujingli/think-library",
"license": "MIT", "license": "MIT",
"homepage": "http://library.thinkadmin.top", "homepage": "http://framework.thinkadmin.top",
"description": "ThinkPHP Basic Development Library", "description": "ThinkPHP Basic Development Library",
"require": { "require": {
"php": ">=5.4", "php": ">=5.4",
@ -16,7 +16,7 @@
}, },
"autoload": { "autoload": {
"files": [ "files": [
"common.php" "src/common.php"
], ],
"psr-4": { "psr-4": {
"library\\": "src" "library\\": "src"

View File

@ -28,9 +28,6 @@ use library\tools\Csrf;
* @method mixed _save($dbQuery, $data = [], $pkField = '', $where = []) * @method mixed _save($dbQuery, $data = [], $pkField = '', $where = [])
* @method mixed _form($dbQuery, $tplFile = '', $pkField = '', $where = [], $data = []) * @method mixed _form($dbQuery, $tplFile = '', $pkField = '', $where = [], $data = [])
* @method array _page($dbQuery, $isPage = true, $isDisplay = true, $total = false, $limit = 0) * @method array _page($dbQuery, $isPage = true, $isDisplay = true, $total = false, $limit = 0)
* --------------------------------
* @author Anyon <zoujingli@qq.com>
* @date 2018/08/10 11:31
*/ */
class Controller extends \stdClass class Controller extends \stdClass
{ {
@ -45,21 +42,33 @@ class Controller extends \stdClass
* 表单CSRF验证状态 * 表单CSRF验证状态
* @var boolean * @var boolean
*/ */
private $_isCsrf = false; private $_csrf = false;
/** /**
* Controller constructor. * Controller constructor.
* @throws \think\Exception
*/ */
public function __construct() public function __construct()
{ {
// 获取当前请求对象
$this->request = request(); $this->request = request();
// 禁用访问内部方法 if (in_array($this->request->action(), get_class_methods(__CLASS__))) {
if (in_array($this->request->method(), get_class_methods(__CLASS__))) {
$this->error('Access without permission.'); $this->error('Access without permission.');
} }
} }
/**
* Controller destruct
*/
public function __destruct()
{
$this->request = request();
$action = $this->request->action();
$method = strtolower($this->request->method());
if (method_exists($this, $callback = "_{$action}_{$method}")) {
call_user_func_array([$this, $callback], $this->request->route());
}
}
/** /**
* 实例方法调用 * 实例方法调用
* @param string $method 函数名称 * @param string $method 函数名称
@ -73,27 +82,11 @@ class Controller extends \stdClass
if (class_exists($name = "library\\logic\\" . ucfirst(ltrim($method, '_')))) { if (class_exists($name = "library\\logic\\" . ucfirst(ltrim($method, '_')))) {
return (new \ReflectionClass($name))->newInstanceArgs($arguments)->init($this); return (new \ReflectionClass($name))->newInstanceArgs($arguments)->init($this);
} }
if (method_exists($this, $method)) {
return call_user_func_array([$this, $method], $arguments);
}
throw new \think\Exception('method not exists:' . get_class($this) . '->' . $method); throw new \think\Exception('method not exists:' . get_class($this) . '->' . $method);
} }
/** /**
* 返回成功的操作 * 返回失败的操作
* @param mixed $info 消息内容
* @param array $data 返回数据
* @param integer $code 返回代码
*/
public function success($info, $data = [], $code = 1)
{
$result = ['code' => $code, 'info' => $info, 'data' => $data];
if ($this->_isCsrf) Csrf::clearFormToken(Csrf::getToken());
throw new \think\exception\HttpResponseException(json($result));
}
/**
* 返回失败的请求
* @param mixed $info 消息内容 * @param mixed $info 消息内容
* @param array $data 返回数据 * @param array $data 返回数据
* @param integer $code 返回代码 * @param integer $code 返回代码
@ -105,14 +98,27 @@ class Controller extends \stdClass
} }
/** /**
* URL重定向 * 返回成功的操作
* @param string $url 重定向跳转链接 * @param mixed $info 消息内容
* @param array $params 重定向链接参数 * @param array $data 返回数据
* @param integer $code 重定向跳转代码 * @param integer $code 返回代码
*/ */
public function redirect($url, $params = [], $code = 301) public function success($info, $data = [], $code = 1)
{ {
throw new \think\exception\HttpResponseException(redirect($url, $params, $code)); $result = ['code' => $code, 'info' => $info, 'data' => $data];
if ($this->_csrf) Csrf::clearFormToken(Csrf::getToken());
throw new \think\exception\HttpResponseException(json($result));
}
/**
* URL重定向
* @param string $url 跳转链接
* @param array $vars 跳转参数
* @param integer $code 跳转代码
*/
public function redirect($url, $vars = [], $code = 301)
{
throw new \think\exception\HttpResponseException(redirect($url, $vars, $code));
} }
/** /**
@ -124,8 +130,11 @@ class Controller extends \stdClass
public function fetch($tpl = '', $vars = [], $node = null) public function fetch($tpl = '', $vars = [], $node = null)
{ {
foreach ($this as $name => $value) $vars[$name] = $value; foreach ($this as $name => $value) $vars[$name] = $value;
if ($this->_isCsrf) Csrf::fetchTemplate($tpl, $vars, $node); if ($this->_csrf) {
else throw new \think\exception\HttpResponseException(view($tpl, $vars)); Csrf::fetchTemplate($tpl, $vars, $node);
} else {
throw new \think\exception\HttpResponseException(view($tpl, $vars));
}
} }
/** /**
@ -153,26 +162,33 @@ class Controller extends \stdClass
*/ */
public function callback($name, &$one = [], &$two = []) public function callback($name, &$one = [], &$two = [])
{ {
$methods = [$name, "_{$this->request->action()}{$name}"]; if (is_callable($name)) {
foreach ($methods as $method) if (method_exists($this, $method)) { return call_user_func($name, $this, $one, $two);
if (false === $this->$method($one, $two)) return false; }
foreach ([$name, "_{$this->request->action()}{$name}"] as $method) {
if (method_exists($this, $method)) {
if (false === $this->$method($one, $two)) {
return false;
}
}
} }
return true; return true;
} }
/** /**
* 检查表单令牌验证 * 检查表单令牌验证
* @param boolean $isRutrun * @param boolean $return 是否返回结果
* @return boolean * @return boolean
*/ */
protected function applyCsrfToken($isRutrun = false) protected function applyCsrfToken($return = false)
{ {
$this->_isCsrf = true; $this->_csrf = true;
if ($this->request->isPost() && !Csrf::checkFormToken()) { if ($this->request->isPost() && !Csrf::checkFormToken()) {
if ($isRutrun) return false; if ($return) return false;
$this->error('表单令牌验证失败,请刷新页面再试!'); $this->error('表单令牌验证失败,请刷新页面再试!');
} else {
return true;
} }
return true;
} }
} }

View File

@ -15,6 +15,8 @@
namespace library\command\sync; namespace library\command\sync;
use library\command\Sync; use library\command\Sync;
use think\console\Input;
use think\console\Output;
/** /**
* Class Admin * Class Admin
@ -27,4 +29,15 @@ class Admin extends Sync
$this->modules = ['application/admin/', 'think']; $this->modules = ['application/admin/', 'think'];
$this->setName('xsync:admin')->setDescription('synchronize update admin module files'); $this->setName('xsync:admin')->setDescription('synchronize update admin module files');
} }
protected function execute(Input $input, Output $output)
{
$root = str_replace('\\', '/', env('root_path'));
if (file_exists("{$root}/application/admin/sync.lock")) {
$this->output->error('admin module has been locked');
} else {
parent::execute($input, $output);
}
}
} }

View File

@ -15,6 +15,8 @@
namespace library\command\sync; namespace library\command\sync;
use library\command\Sync; use library\command\Sync;
use think\console\Input;
use think\console\Output;
/** /**
* Class Config * Class Config
@ -27,4 +29,14 @@ class Config extends Sync
$this->modules = ['config/']; $this->modules = ['config/'];
$this->setName('xsync:config')->setDescription('synchronize update config php files'); $this->setName('xsync:config')->setDescription('synchronize update config php files');
} }
protected function execute(Input $input, Output $output)
{
$root = str_replace('\\', '/', env('root_path'));
if (file_exists("{$root}/config/sync.lock")) {
$this->output->error('config files has been locked');
} else {
parent::execute($input, $output);
}
}
} }

View File

@ -15,6 +15,8 @@
namespace library\command\sync; namespace library\command\sync;
use library\command\Sync; use library\command\Sync;
use think\console\Input;
use think\console\Output;
/** /**
* Class Plugs * Class Plugs
@ -27,4 +29,14 @@ class Plugs extends Sync
$this->modules = ['public/static/']; $this->modules = ['public/static/'];
$this->setName('xsync:plugs')->setDescription('synchronize update plugs static files'); $this->setName('xsync:plugs')->setDescription('synchronize update plugs static files');
} }
protected function execute(Input $input, Output $output)
{
$root = str_replace('\\', '/', env('root_path'));
if (file_exists("{$root}/public/static/sync.lock")) {
$this->output->error('plugs static files has been locked');
} else {
parent::execute($input, $output);
}
}
} }

View File

@ -15,6 +15,8 @@
namespace library\command\sync; namespace library\command\sync;
use library\command\Sync; use library\command\Sync;
use think\console\Input;
use think\console\Output;
/** /**
* Class Service * Class Service
@ -27,4 +29,14 @@ class Service extends Sync
$this->modules = ['application/service/']; $this->modules = ['application/service/'];
$this->setName('xsync:service')->setDescription('synchronize update service module files'); $this->setName('xsync:service')->setDescription('synchronize update service module files');
} }
protected function execute(Input $input, Output $output)
{
$root = str_replace('\\', '/', env('root_path'));
if (file_exists("{$root}/application/service/sync.lock")) {
$this->output->error('service module has been locked');
} else {
parent::execute($input, $output);
}
}
} }

View File

@ -15,6 +15,8 @@
namespace library\command\sync; namespace library\command\sync;
use library\command\Sync; use library\command\Sync;
use think\console\Input;
use think\console\Output;
/** /**
* Class Wechat * Class Wechat
@ -27,4 +29,14 @@ class Wechat extends Sync
$this->modules = ['application/wechat/']; $this->modules = ['application/wechat/'];
$this->setName('xsync:wechat')->setDescription('synchronize update wechat module files'); $this->setName('xsync:wechat')->setDescription('synchronize update wechat module files');
} }
protected function execute(Input $input, Output $output)
{
$root = str_replace('\\', '/', env('root_path'));
if (file_exists("{$root}/application/wechat/sync.lock")) {
$this->output->error('wechat module has been locked');
} else {
parent::execute($input, $output);
}
}
} }

View File

@ -42,19 +42,6 @@ if (!function_exists('format_datetime')) {
} }
} }
if (!function_exists('systoken')) {
/**
* 生成CSRF-TOKEN参数
* @param string $node
* @return string
*/
function systoken($node = null)
{
$csrf = \library\tools\Csrf::buildFormToken($node);
return $csrf['token'];
}
}
if (!function_exists('sysconf')) { if (!function_exists('sysconf')) {
/** /**
* 设备或配置系统参数 * 设备或配置系统参数
@ -84,6 +71,19 @@ if (!function_exists('sysconf')) {
} }
} }
if (!function_exists('systoken')) {
/**
* 生成CSRF-TOKEN参数
* @param string $node
* @return string
*/
function systoken($node = null)
{
$csrf = \library\tools\Csrf::buildFormToken($node);
return $csrf['token'];
}
}
if (!function_exists('http_get')) { if (!function_exists('http_get')) {
/** /**
* 以get模拟网络请求 * 以get模拟网络请求
@ -129,7 +129,6 @@ if (!function_exists('data_save')) {
} }
} }
if (!function_exists('data_batch_save')) { if (!function_exists('data_batch_save')) {
/** /**
* 批量更新数据 * 批量更新数据
@ -149,93 +148,91 @@ if (!function_exists('data_batch_save')) {
if (!function_exists('encode')) { if (!function_exists('encode')) {
/** /**
* UTF8 字符串加密 * 加密 UTF8 字符串
* @param string $string * @param string $content
* @return string * @return string
*/ */
function encode($string) function encode($content)
{ {
return \library\tools\Crypt::encode($string); return \library\tools\Crypt::encode($content);
} }
} }
if (!function_exists('decode')) { if (!function_exists('decode')) {
/** /**
* UTF8 字符串解密 * 解密 UTF8 字符串
* @param string $string * @param string $content
* @return string * @return string
*/ */
function decode($string) function decode($content)
{ {
return \library\tools\Crypt::decode($string); return \library\tools\Crypt::decode($content);
} }
} }
if (!function_exists('emoji_encode')) { if (!function_exists('emoji_encode')) {
/** /**
* Emoji 表情编码 * 编码 Emoji 表情
* @param string $string * @param string $content
* @return string * @return string
*/ */
function emoji_encode($string) function emoji_encode($content)
{ {
return \library\tools\Crypt::emojiEncode($string); return \library\tools\Emoji::encode($content);
} }
} }
if (!function_exists('emoji_decode')) { if (!function_exists('emoji_decode')) {
/** /**
* Emoji 表情解析 * 解析 Emoji 表情
* @param string $string * @param string $content
* @return string * @return string
*/ */
function emoji_decode($string) function emoji_decode($content)
{ {
return \library\tools\Crypt::emojiDecode($string); return \library\tools\Emoji::decode($content);
} }
} }
if (!function_exists('emoji_clear')) { if (!function_exists('emoji_clear')) {
/** /**
* Emoji 表情清除 * 清除 Emoji 表情
* @param string $string * @param string $content
* @return string * @return string
*/ */
function emoji_clear($string) function emoji_clear($content)
{ {
return \library\tools\Crypt::emojiClear($string); return \library\tools\Emoji::clear($content);
} }
} }
// 注册跨域中间键 // 注册跨域中间键
\think\facade\Middleware::add(function (\think\Request $request, \Closure $next) { \think\facade\Middleware::add(function (\think\Request $request, \Closure $next, $header = []) {
if (($origin = $request->header('origin', '*')) !== '*') { if (($origin = $request->header('origin', '*')) !== '*') {
header("Access-Control-Allow-Origin:{$origin}"); $header['Access-Control-Allow-Origin'] = $origin;
header('Access-Control-Allow-Methods:GET,POST'); $header['Access-Control-Allow-Methods'] = 'GET,POST,PATCH,PUT,DELETE';
header('Access-Control-Expose-Headers:User-Token-Csrf'); $header['Access-Control-Allow-Headers'] = 'Authorization,Content-Type,If-Match,If-Modified-Since,If-None-Match,If-Unmodified-Since,X-Requested-With';
header('Access-Control-Allow-Headers:Content-Type,X-Requested-With'); $header['Access-Control-Expose-Headers'] = 'User-Token-Csrf';
}
if ($request->isOptions()) {
return \think\Response::create()->code(204)->header($header);
} else {
return $next($request)->header($header);
} }
return $request->isOptions() ? response() : $next($request);
}); });
// 注册系统常用指令 // 注册系统常用指令
\think\Console::addDefaultCommands([ \think\Console::addDefaultCommands([
'library\command\Sess', 'library\command\Sess',
'library\command\task\Stop', 'library\command\task\Stop', 'library\command\task\State',
'library\command\task\State', 'library\command\task\Start', 'library\command\task\Reset',
'library\command\task\Start',
'library\command\task\Reset',
'library\command\sync\Admin', 'library\command\sync\Admin',
'library\command\sync\Plugs', 'library\command\sync\Plugs', 'library\command\sync\Config',
'library\command\sync\Config', 'library\command\sync\Wechat', 'library\command\sync\Service',
'library\command\sync\Wechat',
'library\command\sync\Service',
]); ]);
// 动态加载模块配置文件 // 动态加载模块配置
if (function_exists('think\__include_file')) { if (function_exists('think\__include_file')) {
$ds = DIRECTORY_SEPARATOR; $root = rtrim(str_replace('\\', '/', env('app_path')), '/');
foreach (glob(env('app_path') . "{$ds}*{$ds}sys.php") as $file) { foreach (glob("{$root}/*/sys.php") as $file) \think\__include_file($file);
\think\__include_file($file);
}
} }

View File

@ -63,19 +63,17 @@ class Input extends Logic
private function parse($data, $result = []) private function parse($data, $result = [])
{ {
if (is_array($data)) return $data; if (is_array($data)) return $data;
if (is_string($data)) { if (is_string($data)) foreach (explode(',', $data) as $field) {
foreach (explode(',', $data) as $field) { if (strpos($field, '#') === false) {
if (strpos($field, '|') === false) { $array = explode('.', $field);
$array = explode('.', $field); $result[end($array)] = input($field);
$result[array_pop($array)] = input($field); } else {
} else { list($name, $value) = explode('#', $field);
list($key, $value) = explode('|', $field); $array = explode('.', $name);
$array = explode('.', $key); $result[end($array)] = input($name, $value);
$result[array_pop($array)] = input($key, $value);
}
} }
return $result;
} }
return $result;
} }
/** /**
@ -87,8 +85,11 @@ class Input extends Logic
{ {
$this->controller = $controller; $this->controller = $controller;
$validate = \think\Validate::make($this->rule, $this->info); $validate = \think\Validate::make($this->rule, $this->info);
if ($validate->check($this->data)) return $this->data; if ($validate->check($this->data)) {
$this->controller->error($validate->getError()); return $this->data;
} else {
$this->controller->error($validate->getError());
}
} }
} }

View File

@ -35,6 +35,20 @@ class Query extends Logic
$this->query = $this->buildQuery($dbQuery); $this->query = $this->buildQuery($dbQuery);
} }
/**
* Query call.
* @param string $name 调用方法名称
* @param array $args 调用参数内容
* @return $this
*/
public function __call($name, $args)
{
if (is_callable($callable = [$this->query, $name])) {
call_user_func_array($callable, $args);
}
return $this;
}
/** /**
* 逻辑器初始化 * 逻辑器初始化
* @param Controller $controller * @param Controller $controller
@ -58,16 +72,21 @@ class Query extends Logic
/** /**
* 设置Like查询条件 * 设置Like查询条件
* @param string|array $fields 查询字段 * @param string|array $fields 查询字段
* @param string $inputType 输入类型 get|post * @param string $input 输入类型 get|post
* @param string $alias 别名分割符
* @return $this * @return $this
*/ */
public function like($fields, $inputType = 'request') public function like($fields, $input = 'request', $alias = '#')
{ {
$data = $this->controller->request->$inputType(); $data = $this->controller->request->$input();
foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) { foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) {
list($dk, $qk) = [$field, $field]; list($dk, $qk) = [$field, $field];
if (stripos($field, '|') !== false) list($dk, $qk) = explode('|', $field); if (stripos($field, $alias) !== false) {
if (isset($data[$qk]) && $data[$qk] !== '') $this->query->whereLike($dk, "%{$data[$qk]}%"); list($dk, $qk) = explode($alias, $field);
}
if (isset($data[$qk]) && $data[$qk] !== '') {
$this->query->whereLike($dk, "%{$data[$qk]}%");
}
} }
return $this; return $this;
} }
@ -75,16 +94,21 @@ class Query extends Logic
/** /**
* 设置Equal查询条件 * 设置Equal查询条件
* @param string|array $fields 查询字段 * @param string|array $fields 查询字段
* @param string $inputType 输入类型 get|post * @param string $input 输入类型 get|post
* @param string $alias 别名分割符
* @return $this * @return $this
*/ */
public function equal($fields, $inputType = 'request') public function equal($fields, $input = 'request', $alias = '#')
{ {
$data = $this->controller->request->$inputType(); $data = $this->controller->request->$input();
foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) { foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) {
list($dk, $qk) = [$field, $field]; list($dk, $qk) = [$field, $field];
if (stripos($field, '|') !== false) list($dk, $qk) = explode('|', $field); if (stripos($field, $alias) !== false) {
if (isset($data[$qk]) && $data[$qk] !== '') $this->query->where($dk, "{$data[$qk]}"); list($dk, $qk) = explode($alias, $field);
}
if (isset($data[$qk]) && $data[$qk] !== '') {
$this->query->where($dk, "{$data[$qk]}");
}
} }
return $this; return $this;
} }
@ -93,73 +117,101 @@ class Query extends Logic
* 设置IN区间查询 * 设置IN区间查询
* @param string $fields 查询字段 * @param string $fields 查询字段
* @param string $split 输入分隔符 * @param string $split 输入分隔符
* @param string $inputType 输入类型 get|post * @param string $input 输入类型 get|post
* @param string $alias 别名分割符
* @return $this * @return $this
*/ */
public function in($fields, $split = ',', $inputType = 'request') public function in($fields, $split = ',', $input = 'request', $alias = '#')
{ {
$data = $this->controller->request->$inputType(); $data = $this->controller->request->$input();
foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) { foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) {
list($dk, $qk) = [$field, $field]; list($dk, $qk) = [$field, $field];
if (stripos($field, '|') !== false) list($dk, $qk) = explode('|', $field); if (stripos($field, $alias) !== false) {
if (isset($data[$qk]) && $data[$qk] !== '') $this->query->whereIn($dk, explode($split, $data[$qk])); list($dk, $qk) = explode($alias, $field);
} }
return $this;
}
/**
* 设置DateTime区间查询
* @param string|array $fields 查询字段
* @param string $split 输入分隔符
* @param string $inputType 输入类型 get|post
* @return $this
*/
public function dateBetween($fields, $split = ' - ', $inputType = 'request')
{
$data = $this->controller->request->$inputType();
foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) {
list($dk, $qk) = [$field, $field];
if (stripos($field, '|') !== false) list($dk, $qk) = explode('|', $field);
if (isset($data[$qk]) && $data[$qk] !== '') { if (isset($data[$qk]) && $data[$qk] !== '') {
list($start, $end) = explode($split, $data[$qk]); $this->query->whereIn($dk, explode($split, $data[$qk]));
$this->query->whereBetween($dk, ["{$start} 00:00:00", "{$end} 23:59:59"]);
} }
} }
return $this; return $this;
} }
/** /**
* 设置区间查询 * 设置内容区间查询
* @param string|array $fields 查询字段 * @param string|array $fields 查询字段
* @param string $split 输入分隔符 * @param string $split 输入分隔符
* @param string $inputType 输入类型 get|post * @param string $input 输入类型 get|post
* @param string $alias 别名分割符
* @return $this * @return $this
*/ */
public function valueBetween($fields, $split = ' ', $inputType = 'request') public function valueBetween($fields, $split = ' ', $input = 'request', $alias = '#')
{ {
$data = $this->controller->request->$inputType(); return $this->setBetweenWhere($fields, $split, $input, $alias);
foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) {
list($dk, $qk) = [$field, $field];
if (stripos($field, '|') !== false) list($dk, $qk) = explode('|', $field);
if (isset($data[$qk]) && $data[$qk] !== '') {
list($start, $end) = explode($split, $data[$field]);
$this->query->whereBetween($dk, ["{$start}", "{$end}"]);
}
}
return $this;
} }
/** /**
* 魔术调用方法 * 设置日期时间区间查询
* @param string $name 调用方法名称 * @param string|array $fields 查询字段
* @param array $arguments 调用参数 * @param string $split 输入分隔符
* @param string $input 输入类型
* @param string $alias 别名分割符
* @return $this * @return $this
*/ */
public function __call($name, $arguments) public function dateBetween($fields, $split = ' - ', $input = 'request', $alias = '#')
{ {
if (method_exists($this->query, $name)) { return $this->setBetweenWhere($fields, $split, $input, $alias, function ($value, $type) {
call_user_func_array([$this->query, $name], $arguments); if ($type === 'after') {
return "{$value} 23:59:59";
} else {
return "{$value} 00:00:00";
}
});
}
/**
* 设置时间戳区间查询
* @param string|array $fields 查询字段
* @param string $split 输入分隔符
* @param string $input 输入类型
* @param string $alias 别名分割符
* @return $this
*/
public function timeBetween($fields, $split = ' - ', $input = 'request', $alias = '#')
{
return $this->setBetweenWhere($fields, $split, $input, $alias, function ($value, $type) {
if ($type === 'after') {
return strtotime("{$value} 23:59:59");
} else {
return strtotime("{$value} 00:00:00");
}
});
}
/**
* 设置区域查询条件
* @param string|array $fields 查询字段
* @param string $split 输入分隔符
* @param string $input 输入类型
* @param string $alias 别名分割符
* @param callable $callback
* @return $this
*/
private function setBetweenWhere($fields, $split = ' ', $input = 'request', $alias = '#', $callback = null)
{
$data = $this->controller->request->$input();
foreach (is_array($fields) ? $fields : explode(',', $fields) as $field) {
list($dk, $qk) = [$field, $field];
if (stripos($field, $alias) !== false) {
list($dk, $qk) = explode($alias, $field);
}
if (isset($data[$qk]) && $data[$qk] !== '') {
list($begin, $after) = explode($split, $data[$field]);
if (is_callable($callback)) {
$after = call_user_func($callback, $after, 'after');
$begin = call_user_func($callback, $begin, 'begin');
}
$this->query->whereBetween($dk, [$begin, $after]);
}
} }
return $this; return $this;
} }
@ -181,5 +233,4 @@ class Query extends Logic
{ {
return (new Page($this->query, $isPage, $isDisplay, $total, $limit))->init($this->controller); return (new Page($this->query, $isPage, $isDisplay, $total, $limit))->init($this->controller);
} }
} }

View File

@ -41,44 +41,25 @@ class Crypt
public static function decode($encode) public static function decode($encode)
{ {
$chars = ''; $chars = '';
foreach (str_split($encode, 2) as $char) $chars .= chr(intval(base_convert($char, 36, 10))); foreach (str_split($encode, 2) as $char) {
$chars .= chr(intval(base_convert($char, 36, 10)));
}
return iconv('GBK//TRANSLIT', 'UTF-8', $chars); return iconv('GBK//TRANSLIT', 'UTF-8', $chars);
} }
/** /**
* Emoji原形转换为String * 静态调用方法处理
* @param string $content * @param string $name
* @return string * @param string $args
* @return mixed
*/ */
public static function emojiEncode($content) public static function __callStatic($name, $args)
{ {
return json_decode(preg_replace_callback("/(\\\u[ed][0-9a-f]{3})/i", function ($string) { if (stripos($name, 'emoji') === 0) {
return addslashes($string[0]); $method = str_replace('emoji', '', strtolower($name));
}, json_encode($content))); if (in_array($method, ['encode', 'decode', 'clear'])) {
return Emoji::$method($args[0]);
}
}
} }
/**
* Emoji字符串转换为原形
* @param string $content
* @return string
*/
public static function emojiDecode($content)
{
return json_decode(preg_replace_callback('/\\\\\\\\/i', function () {
return '\\';
}, json_encode($content)));
}
/**
* Emoji字符串清清理
* @param string $content
* @return string
*/
public static function emojiClear($content)
{
return preg_replace_callback('/./u', function (array $match) {
return strlen($match[0]) >= 4 ? '' : $match[0];
}, $content);
}
} }

View File

@ -0,0 +1,59 @@
<?php
// +----------------------------------------------------------------------
// | Library for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://library.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +----------------------------------------------------------------------
namespace library\tools;
/**
* 处理 Emoji 表情
* Class Emoji
* @package library\tools
*/
class Emoji
{
/**
* Emoji原形转换为String
* @param string $content
* @return string
*/
public static function encode($content)
{
return json_decode(preg_replace_callback("/(\\\u[ed][0-9a-f]{3})/i", function ($maps) {
return addslashes($maps[0]);
}, json_encode($content)));
}
/**
* Emoji字符串转换为原形
* @param string $content
* @return string
*/
public static function decode($content)
{
return json_decode(preg_replace_callback('/\\\\\\\\/i', function () {
return '\\';
}, json_encode($content)));
}
/**
* Emoji字符串清清理
* @param string $content
* @return string
*/
public static function clear($content)
{
return preg_replace_callback('/./u', function (array $match) {
return strlen($match[0]) >= 4 ? '' : $match[0];
}, $content);
}
}

View File

@ -68,17 +68,17 @@ class Http
curl_setopt($curl, CURLOPT_HTTPHEADER, $options['headers']); curl_setopt($curl, CURLOPT_HTTPHEADER, $options['headers']);
} }
// Cookie 信息设置 // Cookie 信息设置
if (!empty($options['cookie'])) {
curl_setopt($curl, CURLOPT_COOKIE, $options['cookie']);
}
if (!empty($options['cookie_file'])) { if (!empty($options['cookie_file'])) {
curl_setopt($curl, CURLOPT_COOKIEJAR, $options['cookie_file']); curl_setopt($curl, CURLOPT_COOKIEJAR, $options['cookie_file']);
curl_setopt($curl, CURLOPT_COOKIEFILE, $options['cookie_file']); curl_setopt($curl, CURLOPT_COOKIEFILE, $options['cookie_file']);
} }
if (!empty($options['cookie'])) {
curl_setopt($curl, CURLOPT_COOKIE, $options['cookie']);
}
// POST 数据设置 // POST 数据设置
if (strtolower($method) === 'post') { if (strtolower($method) === 'post') {
curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, self::_buildHttpData($options['data'])); curl_setopt($curl, CURLOPT_POSTFIELDS, self::buildQueryData($options['data']));
} }
// 请求超时设置 // 请求超时设置
if (isset($options['timeout']) && is_numeric($options['timeout'])) { if (isset($options['timeout']) && is_numeric($options['timeout'])) {
@ -104,7 +104,7 @@ class Http
* @param boolean $build 是否编译数据 * @param boolean $build 是否编译数据
* @return array|string * @return array|string
*/ */
private static function _buildHttpData($data, $build = true) private static function buildQueryData($data, $build = true)
{ {
if (!is_array($data)) return $data; if (!is_array($data)) return $data;
foreach ($data as $key => $value) if (is_object($value) && $value instanceof \CURLFile) { foreach ($data as $key => $value) if (is_object($value) && $value instanceof \CURLFile) {
@ -126,16 +126,14 @@ class Http
{ {
if (!empty($_SERVER['HTTP_USER_AGENT'])) return $_SERVER['HTTP_USER_AGENT']; if (!empty($_SERVER['HTTP_USER_AGENT'])) return $_SERVER['HTTP_USER_AGENT'];
$userAgents = [ $userAgents = [
"Mozilla/5.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1",
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11",
"Mozilla/5.0 (Windows; U; Windows NT 6.1; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50",
"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0",
"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.3; rv:11.0) like Gecko", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.3; rv:11.0) like Gecko",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0", "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0.1) Gecko/20100101 Firefox/4.0.1", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0.1) Gecko/20100101 Firefox/4.0.1",
"Mozilla/5.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1",
"Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; en) Presto/2.8.131 Version/11.11",
"Opera/9.80 (Windows NT 6.1; U; en) Presto/2.8.131 Version/11.11",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
]; ];
return $userAgents[array_rand($userAgents, 1)]; return $userAgents[array_rand($userAgents, 1)];

View File

@ -30,7 +30,7 @@ WeChatDeveloper 是基于官方接口封装,在做微信开发前,必需先
* 商户支付文档https://pay.weixin.qq.com/wiki/doc/api/index.html * 商户支付文档https://pay.weixin.qq.com/wiki/doc/api/index.html
针对 WeChatDeveloper 也有一准备了帮助资料可供参考。 针对 WeChatDeveloper 也有一准备了帮助资料可供参考。
* ThinkAdminhttps://github.com/zoujingli/Think.Admin * ThinkAdminhttps://github.com/zoujingli/ThinkAdmin
* WeChatDeveloperhttps://www.kancloud.cn/zoujingli/wechat-developer * WeChatDeveloperhttps://www.kancloud.cn/zoujingli/wechat-developer

View File

@ -31,6 +31,17 @@ class Tools
*/ */
public static $cache_path = null; public static $cache_path = null;
/**
* 缓存写入操作
* @var array
*/
public static $cache_callable = [
'set' => null, // 写入缓存
'get' => null, // 获取缓存
'del' => null, // 删除缓存
'put' => null, // 写入文件
];
/** /**
* 网络缓存 * 网络缓存
* @var array * @var array
@ -356,6 +367,9 @@ class Tools
*/ */
public static function pushFile($name, $content) public static function pushFile($name, $content)
{ {
if (is_callable(self::$cache_callable['put'])) {
return call_user_func_array(self::$cache_callable['put'], func_get_args());
}
$file = self::_getCacheName($name); $file = self::_getCacheName($name);
if (!file_put_contents($file, $content)) { if (!file_put_contents($file, $content)) {
throw new LocalCacheException('local file write error.', '0'); throw new LocalCacheException('local file write error.', '0');
@ -373,8 +387,12 @@ class Tools
*/ */
public static function setCache($name, $value = '', $expired = 3600) public static function setCache($name, $value = '', $expired = 3600)
{ {
if (is_callable(self::$cache_callable['set'])) {
return call_user_func_array(self::$cache_callable['set'], func_get_args());
}
$file = self::_getCacheName($name); $file = self::_getCacheName($name);
if (!file_put_contents($file, serialize(['name' => $name, 'value' => $value, 'expired' => time() + intval($expired)]))) { $data = ['name' => $name, 'value' => $value, 'expired' => time() + intval($expired)];
if (!file_put_contents($file, serialize($data))) {
throw new LocalCacheException('local cache error.', '0'); throw new LocalCacheException('local cache error.', '0');
} }
return $file; return $file;
@ -387,6 +405,9 @@ class Tools
*/ */
public static function getCache($name) public static function getCache($name)
{ {
if (is_callable(self::$cache_callable['get'])) {
return call_user_func_array(self::$cache_callable['get'], func_get_args());
}
$file = self::_getCacheName($name); $file = self::_getCacheName($name);
if (file_exists($file) && ($content = file_get_contents($file))) { if (file_exists($file) && ($content = file_get_contents($file))) {
$data = unserialize($content); $data = unserialize($content);
@ -405,6 +426,9 @@ class Tools
*/ */
public static function delCache($name) public static function delCache($name)
{ {
if (is_callable(self::$cache_callable['del'])) {
return call_user_func_array(self::$cache_callable['del'], func_get_args());
}
$file = self::_getCacheName($name); $file = self::_getCacheName($name);
return file_exists($file) ? unlink($file) : true; return file_exists($file) ? unlink($file) : true;
} }

View File

@ -12,6 +12,22 @@
// | github开源项目https://github.com/zoujingli/WeChatDeveloper // | github开源项目https://github.com/zoujingli/WeChatDeveloper
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// 配置缓存处理函数
//\WeChat\Contracts\Tools::$cache_callable = [
// 'set' => function ($name, $value, $expired = 360) {
// var_dump(func_get_args());
// },
// 'get' => function ($name) {
// var_dump(func_get_args());
// },
// 'del' => function ($name) {
// var_dump(func_get_args());
// },
// 'put' => function ($name) {
// var_dump(func_get_args());
// },
//];
return [ return [
'token' => 'test', 'token' => 'test',
'appid' => 'wx60a43dd8161666d4', 'appid' => 'wx60a43dd8161666d4',

View File

@ -25,7 +25,7 @@ try {
// 4. 获取通知参数 // 4. 获取通知参数
$data = $wechat->getNotify(); $data = $wechat->getNotify();
if ($data['result_code'] === 'SUCCESS' && $data['result_code'] === 'SUCCESS') { if ($data['return_code'] === 'SUCCESS' && $data['result_code'] === 'SUCCESS') {
// @todo 去更新下原订单的支付状态 // @todo 去更新下原订单的支付状态
$order_no = $data['out_trade_no']; $order_no = $data['out_trade_no'];
@ -39,4 +39,4 @@ try {
// 出错啦,处理下吧 // 出错啦,处理下吧
echo $e->getMessage() . PHP_EOL; echo $e->getMessage() . PHP_EOL;
} }

View File

@ -27,7 +27,7 @@ try {
$options = [ $options = [
'mch_billno' => time(), 'mch_billno' => time(),
're_openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY', 're_openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY',
'send_name' => '商户名称', 'send_name' => '商户名称😍',
'act_name' => '活动名称', 'act_name' => '活动名称',
'total_amount' => '100', 'total_amount' => '100',
'total_num' => '1', 'total_num' => '1',

View File

@ -97,15 +97,17 @@ class Code extends BasicWeChat
/** /**
* 5. 将第三方提交的代码包提交审核(仅供第三方开发者代小程序调用) * 5. 将第三方提交的代码包提交审核(仅供第三方开发者代小程序调用)
* @param array $itemList 提交审核项的一个列表 * @param array $itemList 提交审核项的一个列表
* @param string $feedbackInfo 反馈内容不超过200字
* @param string $feedbackStuff 图片 media_id 列表
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function submitAudit(array $itemList) public function submitAudit(array $itemList, $feedbackInfo = '', $feedbackStuff = '')
{ {
$url = 'https://api.weixin.qq.com/wxa/submit_audit?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/wxa/submit_audit?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
return $this->httpPostForJson($url, ['item_list' => $itemList], true); return $this->httpPostForJson($url, ['item_list' => $itemList, 'feedback_info' => '', 'feedback_stuff' => $feedbackStuff], true);
} }
/** /**