2070 lines
2.5 MiB
Plaintext
2070 lines
2.5 MiB
Plaintext
/*
|
||
Navicat Premium Dump SQL
|
||
|
||
Source Server : 智慧社区测试版
|
||
Source Server Type : MySQL
|
||
Source Server Version : 80045 (8.0.45)
|
||
Source Host : 39.107.255.148:33066
|
||
Source Schema : wisdom_estate
|
||
|
||
Target Server Type : MySQL
|
||
Target Server Version : 80045 (8.0.45)
|
||
File Encoding : 65001
|
||
|
||
Date: 30/04/2026 03:55:22
|
||
*/
|
||
|
||
SET NAMES utf8mb4;
|
||
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_admin
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_admin`;
|
||
CREATE TABLE `la_admin` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`root` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否超级管理员 0-否 1-是',
|
||
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '名称',
|
||
`avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '用户头像',
|
||
`account` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '账号',
|
||
`password` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '密码',
|
||
`login_time` int NULL DEFAULT NULL COMMENT '最后登录时间',
|
||
`login_ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '最后登录ip',
|
||
`multipoint_login` tinyint UNSIGNED NULL DEFAULT 1 COMMENT '是否支持多处登录:1-是;0-否;',
|
||
`disable` tinyint UNSIGNED NULL DEFAULT 0 COMMENT '是否禁用:0-否;1-是;',
|
||
`create_time` int NOT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '修改时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '管理员表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_admin
|
||
-- ----------------------------
|
||
INSERT INTO `la_admin` VALUES (1, 1, 'wisdom', '', 'wisdom', '81639edaa728430eb672969a7e63dcd6', 1777487011, '120.239.179.186', 1, 0, 1776400912, 1777487011, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_admin_dept
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_admin_dept`;
|
||
CREATE TABLE `la_admin_dept` (
|
||
`admin_id` int NOT NULL DEFAULT 0 COMMENT '管理员id',
|
||
`dept_id` int NOT NULL DEFAULT 0 COMMENT '部门id',
|
||
PRIMARY KEY (`admin_id`, `dept_id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '部门关联表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_admin_dept
|
||
-- ----------------------------
|
||
INSERT INTO `la_admin_dept` VALUES (1, 1);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_admin_jobs
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_admin_jobs`;
|
||
CREATE TABLE `la_admin_jobs` (
|
||
`admin_id` int NOT NULL COMMENT '管理员id',
|
||
`jobs_id` int NOT NULL COMMENT '岗位id',
|
||
PRIMARY KEY (`admin_id`, `jobs_id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '岗位关联表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_admin_jobs
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_admin_role
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_admin_role`;
|
||
CREATE TABLE `la_admin_role` (
|
||
`admin_id` int NOT NULL COMMENT '管理员id',
|
||
`role_id` int NOT NULL COMMENT '角色id',
|
||
PRIMARY KEY (`admin_id`, `role_id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色关联表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_admin_role
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_admin_session
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_admin_session`;
|
||
CREATE TABLE `la_admin_session` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`admin_id` int UNSIGNED NOT NULL COMMENT '用户id',
|
||
`terminal` tinyint(1) NOT NULL DEFAULT 1 COMMENT '客户端类型:1-pc管理后台 2-mobile手机管理后台',
|
||
`token` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '令牌',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`expire_time` int NOT NULL COMMENT '到期时间',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `admin_id_client`(`admin_id` ASC, `terminal` ASC) USING BTREE COMMENT '一个用户在一个终端只有一个token',
|
||
UNIQUE INDEX `token`(`token` ASC) USING BTREE COMMENT 'token是唯一的'
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '管理员会话表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_admin_session
|
||
-- ----------------------------
|
||
INSERT INTO `la_admin_session` VALUES (1, 1, 1, '36b56ccc55cbfae08fb8a31fcdb52c20', 1777487011, 1777515811);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_article
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_article`;
|
||
CREATE TABLE `la_article` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT '文章id',
|
||
`cid` int NOT NULL COMMENT '文章分类',
|
||
`title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '文章标题',
|
||
`desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '简介',
|
||
`abstract` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '文章摘要',
|
||
`image` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '文章图片',
|
||
`author` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '作者',
|
||
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '文章内容',
|
||
`click_virtual` int NULL DEFAULT 0 COMMENT '虚拟浏览量',
|
||
`click_actual` int NULL DEFAULT 0 COMMENT '实际浏览量',
|
||
`is_show` tinyint(1) NOT NULL DEFAULT 1 COMMENT '是否显示:1-是.0-否',
|
||
`sort` int NULL DEFAULT 0 COMMENT '排序',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '文章表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_article
|
||
-- ----------------------------
|
||
INSERT INTO `la_article` VALUES (1, 3, '让生活更精致!五款居家好物推荐,实用性超高', '##好物推荐🔥', '随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。', 'resource/image/adminapi/default/article01.png', '红花', '<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。</p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。</p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。</p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。</p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。</p>', 1, 4, 1, 0, 1663317759, 1777444998, NULL);
|
||
INSERT INTO `la_article` VALUES (2, 2, '埋葬UI设计师的坟墓不是内卷,而是免费模式', '', '本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦', 'resource/image/adminapi/default/article02.jpeg', '小明', '<p><br></p><p style=\"text-align: justify;\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。</p><p style=\"text-align: justify;\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。</p><p style=\"text-align: justify;\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。</p><p style=\"text-align: justify;\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。</p><p style=\"text-align: justify;\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。</p><p style=\"text-align: justify;\">就是他在自传中提到:</p><p style=\"text-align: justify;\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……</p><p style=\"text-align: justify;\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……</p>', 2, 4, 1, 0, 1663322854, 1727071178, NULL);
|
||
INSERT INTO `la_article` VALUES (3, 1, '金山电池公布“沪广深市民绿色生活方式”调查结果', '', '60%以上受访者认为高质量的10分钟足以完成“自我充电”', 'resource/image/adminapi/default/article03.png', '中网资讯科技', '<p style=\"text-align: left;\"><strong>深圳,2021年10月22日)</strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。</p><p style=\"text-align: left;\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”</strong></p><p style=\"text-align: left;\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:</p><p style=\"text-align: left;\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时</p><p style=\"text-align: left;\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情</p><p style=\"text-align: left;\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电</p><p style=\"text-align: left;\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”</p><p style=\"text-align: left;\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。</p><p style=\"text-align: left;\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验</strong></p><p style=\"text-align: left;\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:</p><p style=\"text-align: left;\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池</p><p style=\"text-align: left;\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用</p><p style=\"text-align: left;\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育</p><p style=\"text-align: left;\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间</p><p style=\"text-align: left;\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br></p>', 11, 4, 1, 0, 1663322665, 1727071154, NULL);
|
||
INSERT INTO `la_article` VALUES (4, 4, '劳动节放假通知', '五一劳动节放假温馨通知,尊敬的各位住户朋友:您好!值此五一劳动节来临之际,祝您假期愉快。', NULL, '', 'inAmber', '<p>五一劳动节放假温馨通知,尊敬的各位住户朋友:您好!值此五一劳动节来临之际,祝您假期愉快。</p><p>假期期间如需帮助,请联系公寓管家。</p>', 0, 0, 1, 100, 1777484620, 1777484620, NULL);
|
||
INSERT INTO `la_article` VALUES (5, 5, 'inAmber发布了一个活动', '手冲咖啡尊享·精致下午茶体验', NULL, '', 'inAmber', '<p>手冲咖啡尊享·精致下午茶体验现已开启报名。</p><p>欢迎住户朋友预约参与,共享悠闲午后时光。</p>', 0, 0, 1, 99, 1777484620, 1777484620, NULL);
|
||
INSERT INTO `la_article` VALUES (6, 5, 'inAmber发布了一个活动', '健身体验|2小时畅练', NULL, '', 'inAmber', '<p>健身体验活动开放预约,住户可享 2 小时畅练体验。</p><p>请提前联系管家确认可预约时段。</p>', 0, 0, 1, 98, 1777484620, 1777484620, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_article_cate
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_article_cate`;
|
||
CREATE TABLE `la_article_cate` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT '文章分类id',
|
||
`name` varchar(90) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '分类名称',
|
||
`sort` int NULL DEFAULT 0 COMMENT '排序',
|
||
`is_show` tinyint(1) NULL DEFAULT 1 COMMENT '是否显示:1-是;0-否',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '文章分类表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_article_cate
|
||
-- ----------------------------
|
||
INSERT INTO `la_article_cate` VALUES (1, '科技', 0, 1, 1663317280, 1663317280, NULL);
|
||
INSERT INTO `la_article_cate` VALUES (2, '生活', 0, 1, 1663317280, 1663321464, NULL);
|
||
INSERT INTO `la_article_cate` VALUES (3, '好物', 0, 1, 1727070858, 1727070858, NULL);
|
||
INSERT INTO `la_article_cate` VALUES (4, '公告', 100, 1, 1777491721, 1777491721, NULL);
|
||
INSERT INTO `la_article_cate` VALUES (5, '活动通知', 99, 1, 1777491721, 1777491721, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_article_collect
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_article_collect`;
|
||
CREATE TABLE `la_article_collect` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
|
||
`user_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '用户ID',
|
||
`article_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '文章ID',
|
||
`status` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '收藏状态 0-未收藏 1-已收藏',
|
||
`create_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间',
|
||
`update_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '文章收藏表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_article_collect
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_banner
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_banner`;
|
||
CREATE TABLE `la_banner` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`title` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '',
|
||
`subtitle` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '小标题',
|
||
`position` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '字典 banner_position',
|
||
`image` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '图片',
|
||
`icon` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '小图标(金刚区)',
|
||
`link_type` tinyint NOT NULL DEFAULT 1 COMMENT '1小程序路径 2外链 3活动ID 4商户ID 5UGC动态',
|
||
`link_value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '跳转值',
|
||
`start_time` int NOT NULL DEFAULT 0 COMMENT '展示起',
|
||
`end_time` int NOT NULL DEFAULT 0 COMMENT '展示止',
|
||
`sort` int NOT NULL DEFAULT 0,
|
||
`click_count` int NOT NULL DEFAULT 0,
|
||
`status` tinyint NOT NULL DEFAULT 1 COMMENT '1上架 0下架',
|
||
`create_time` int NOT NULL DEFAULT 0,
|
||
`update_time` int NOT NULL DEFAULT 0,
|
||
`delete_time` int NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `idx_position`(`position` ASC, `status` ASC) USING BTREE,
|
||
INDEX `idx_time`(`start_time` ASC, `end_time` ASC) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 27 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '广告/轮播图' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_banner
|
||
-- ----------------------------
|
||
INSERT INTO `la_banner` VALUES (1, '', '', 'home_1', 'uploads/images/20260429/20260429165436b91348853.png', '', 1, '', 0, 0, 0, 0, 1, 1777452709, 1777452883, NULL);
|
||
INSERT INTO `la_banner` VALUES (2, '', '', 'home_2', 'uploads/images/20260429/20260429165644075133819.png', '', 1, '', 0, 0, 0, 0, 1, 1777453008, 1777453008, NULL);
|
||
INSERT INTO `la_banner` VALUES (3, '', '', 'home_3', 'uploads/images/20260429/202604291657067ef9e8034.png', '', 1, '', 0, 0, 0, 0, 1, 1777453058, 1777453058, NULL);
|
||
INSERT INTO `la_banner` VALUES (4, '', '', 'home_4', 'uploads/images/20260429/2026042918230451cfb9832.png', '', 1, '', 0, 0, 0, 0, 1, 1777453070, 1777458188, NULL);
|
||
INSERT INTO `la_banner` VALUES (5, '', '', 'home_nav', 'uploads/images/20260429/20260429165142f49ea7323.png', '', 1, '', 0, 0, 0, 0, 1, 1777453652, 1777453652, NULL);
|
||
INSERT INTO `la_banner` VALUES (6, '美式中古', '一字户型|L型户型 |行政套房', 'home_3_slide', 'uploads/images/20260429/202604291719066e31e8383.png', '', 1, '', 0, 0, 0, 0, 1, 1777454473, 1777455002, NULL);
|
||
INSERT INTO `la_banner` VALUES (7, '雅致法式', '一字户型|L型户型', 'home_3_slide', 'uploads/images/20260429/20260429171923dc3d25828.jpg', '', 1, '', 0, 0, 0, 0, 1, 1777454484, 1777454976, NULL);
|
||
INSERT INTO `la_banner` VALUES (8, '北欧风尚', 'Loft户型|一字户型|L型户型', 'home_3_slide', 'uploads/images/20260429/202604291719234803a1340.png', '', 1, '', 0, 0, 0, 0, 1, 1777454513, 1777454932, NULL);
|
||
INSERT INTO `la_banner` VALUES (9, '', '', 'home_4_slide', 'uploads/images/20260429/20260429180108d5f288703.png', '', 1, '', 0, 0, 0, 0, 1, 1777456720, 1777456886, NULL);
|
||
INSERT INTO `la_banner` VALUES (10, '', '', 'home_4_slide', 'uploads/images/20260429/20260429180108388662857.png', '', 1, '', 0, 0, 0, 0, 1, 1777456727, 1777456900, NULL);
|
||
INSERT INTO `la_banner` VALUES (11, '', '', 'home_4_slide', 'uploads/images/20260429/202604291801090a6fe4263.png', '', 1, '', 0, 0, 0, 0, 1, 1777456909, 1777456909, NULL);
|
||
INSERT INTO `la_banner` VALUES (12, '', '', 'home_4_slide', 'uploads/images/20260429/20260429180108be2a65177.png', '', 1, '', 0, 0, 0, 0, 1, 1777456918, 1777456918, NULL);
|
||
INSERT INTO `la_banner` VALUES (13, '', '', 'booking_hero', 'uploads/images/20260429/2026042918010793b473647.png', '', 1, '', 0, 0, 0, 0, 1, 1777488393, 1777488393, NULL);
|
||
INSERT INTO `la_banner` VALUES (14, '', '', 'booking_hero', 'uploads/images/20260429/20260429171941892461376.png', '', 1, '', 0, 0, 0, 0, 1, 1777488403, 1777488403, NULL);
|
||
INSERT INTO `la_banner` VALUES (15, '短租预定列表轮播图', '', 'booking_short_hero', 'uploads/images/20260429/20260429171941892461376.png', '', 1, '', 0, 0, 10, 0, 1, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_banner` VALUES (16, '长租预定列表轮播图', '', 'booking_long_hero', 'uploads/images/20260429/2026042918010793b473647.png', '', 1, '', 0, 0, 10, 0, 1, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_banner` VALUES (17, '社区指南', 'guide', 'user_quick', '', '', 1, '/pages/news/news', 0, 0, 40, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (18, '我的权益', 'rights', 'user_quick', '', '', 1, '/pages/member/member', 0, 0, 30, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (19, '我的积分', 'points', 'user_quick', '', '', 1, '/packages/pages/user_wallet/user_wallet', 0, 0, 20, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (20, '我的订单', 'orders', 'user_quick', '', '', 1, '/pages/booking/booking', 0, 0, 10, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (21, '自助缴费', 'self_pay', 'user_service', '', '', 1, '/pages/payment/payment', 0, 0, 60, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (22, '水费', 'water', 'user_service', '', '', 1, '/pages/payment/payment?type=water', 0, 0, 50, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (23, '电费', 'electric', 'user_service', '', '', 1, '/pages/payment/payment?type=electric', 0, 0, 40, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (24, '燃气费', 'gas', 'user_service', '', '', 1, '/pages/payment/payment?type=gas', 0, 0, 30, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (25, '在线报修', 'repair', 'user_service', '', '', 1, '/pages/repair/repair', 0, 0, 20, 0, 1, 1777491295, 1777491295, NULL);
|
||
INSERT INTO `la_banner` VALUES (26, '意见箱', 'feedback', 'user_service', '', '', 1, '/pages/feedback/feedback', 0, 0, 10, 0, 1, 1777491295, 1777491295, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_booking_rent_type
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_booking_rent_type`;
|
||
CREATE TABLE `la_booking_rent_type` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`rent_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '租房类型 字典 rent_type',
|
||
`title` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '入口标题',
|
||
`subtitle` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '入口副标题',
|
||
`image` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '入口图片',
|
||
`link_type` tinyint NOT NULL DEFAULT 1 COMMENT '1无链接 2外链 3内部页面',
|
||
`link_value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '链接地址',
|
||
`sort` int NOT NULL DEFAULT 0,
|
||
`status` tinyint NOT NULL DEFAULT 1 COMMENT '1启用 0禁用',
|
||
`create_time` int NOT NULL DEFAULT 0,
|
||
`update_time` int NOT NULL DEFAULT 0,
|
||
`delete_time` int NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `idx_rent_type`(`rent_type` ASC) USING BTREE,
|
||
INDEX `idx_status`(`status` ASC) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '预定页租房类型入口' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_booking_rent_type
|
||
-- ----------------------------
|
||
INSERT INTO `la_booking_rent_type` VALUES (1, '3', '长租', '1个月起租', '', 1, '', 3, 1, 1777488679, 1777491222, NULL);
|
||
INSERT INTO `la_booking_rent_type` VALUES (2, '1', '日租', '单日起租', '', 1, '', 1, 1, 1777488679, 1777491222, NULL);
|
||
INSERT INTO `la_booking_rent_type` VALUES (3, '2', '短租', '7天起租', '', 1, '', 2, 1, 1777491222, 1777491222, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_building
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_building`;
|
||
CREATE TABLE `la_building` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`pid` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '父级ID(支持片区->楼栋树形)',
|
||
`name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '名称(如 A栋/1号楼)',
|
||
`type` tinyint NOT NULL DEFAULT 2 COMMENT '1片区 2楼栋',
|
||
`address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '详细地址',
|
||
`longitude` decimal(10, 6) NOT NULL DEFAULT 0.000000 COMMENT '经度',
|
||
`latitude` decimal(10, 6) NOT NULL DEFAULT 0.000000 COMMENT '纬度',
|
||
`housekeeper_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '专属管家',
|
||
`sort` int NOT NULL DEFAULT 0,
|
||
`status` tinyint NOT NULL DEFAULT 1 COMMENT '1启用 0停用',
|
||
`create_time` int NOT NULL DEFAULT 0,
|
||
`update_time` int NOT NULL DEFAULT 0,
|
||
`delete_time` int NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `idx_pid`(`pid` ASC) USING BTREE,
|
||
INDEX `idx_type`(`type` ASC) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '楼栋/片区' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_building
|
||
-- ----------------------------
|
||
INSERT INTO `la_building` VALUES (1, 0, 'inAmber安铂庭酒店式公寓', 1, '上海闵行区浦江镇竹园路599号', 121.516880, 31.092460, 0, 100, 1, 1777491222, 1777491222, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_config
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_config`;
|
||
CREATE TABLE `la_config` (
|
||
`id` int NOT NULL AUTO_INCREMENT,
|
||
`type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '类型',
|
||
`name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '名称',
|
||
`value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '值',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 27 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '配置表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_config
|
||
-- ----------------------------
|
||
INSERT INTO `la_config` VALUES (1, 'storage', 'default', 'aliyun', 1776401147, 1776401147);
|
||
INSERT INTO `la_config` VALUES (2, 'storage', 'aliyun', '{\"bucket\":\"anbo-file\",\"access_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\"}', 1776401147, 1776401449);
|
||
INSERT INTO `la_config` VALUES (3, 'sms', 'ali', '{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"安铂公寓\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"}', 1776401939, 1776407157);
|
||
INSERT INTO `la_config` VALUES (4, 'sms', 'engine', 'ALI', 1776401939, 1776401939);
|
||
INSERT INTO `la_config` VALUES (5, 'website', 'name', '安铂公寓', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (6, 'website', 'shop_name', '安铂公寓', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (7, 'website', 'pc_title', '安铂公寓', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (8, 'website', 'web_favicon', 'resource/image/adminapi/default/web_favicon.ico', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (9, 'website', 'web_logo', 'resource/image/adminapi/default/web_logo.jpg', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (10, 'website', 'login_image', 'resource/image/adminapi/default/login_image.png', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (11, 'website', 'shop_logo', 'resource/image/adminapi/default/shop_logo.png', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (12, 'website', 'pc_logo', 'resource/image/adminapi/default/pc_logo.png', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (13, 'website', 'pc_ico', 'resource/image/adminapi/default/web_favicon.ico', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (14, 'website', 'h5_favicon', 'resource/image/adminapi/default/web_favicon.ico', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (15, 'website', 'pc_desc', '安铂公寓管理系统', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (16, 'website', 'pc_keywords', '安铂公寓,公寓管理,智慧公寓', 1776407801, 1776407801);
|
||
INSERT INTO `la_config` VALUES (17, 'tabbar', 'style', '{\"default_color\":\"#999999\",\"selected_color\":\"#000000\"}', 1776612203, 1777450633);
|
||
INSERT INTO `la_config` VALUES (18, 'contact', 'name', 'inAmber 安铂庭酒店式公寓', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (19, 'contact', 'address', '上海市闵行区竹园路559号', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (20, 'contact', 'phone', '021-00008888', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (21, 'contact', 'email', 'reception@inamber.com', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (22, 'contact', 'latitude', '31.0586', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (23, 'contact', 'longitude', '121.5128', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (24, 'contact', 'logo', 'uploads/images/20260430/202604300225238efbc6661.png', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (25, 'contact', 'work_time', '我们的工作时间为早上10:00-晚上8:00', 1777487135, 1777487135);
|
||
INSERT INTO `la_config` VALUES (26, 'contact', 'brand_logo', 'uploads/images/20260430/202604300225238efbc6661.png', 1777487420, 1777487420);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_decorate_page
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_decorate_page`;
|
||
CREATE TABLE `la_decorate_page` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
|
||
`type` tinyint UNSIGNED NOT NULL DEFAULT 10 COMMENT '页面类型 1=商城首页, 2=个人中心, 3=客服设置 4-PC首页',
|
||
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '页面名称',
|
||
`data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '页面数据',
|
||
`meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '页面设置',
|
||
`create_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间',
|
||
`update_time` int UNSIGNED NOT NULL COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '装修页面配置表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_decorate_page
|
||
-- ----------------------------
|
||
INSERT INTO `la_decorate_page` VALUES (1, 1, '商城首页', '[{\"title\":\"搜索\",\"name\":\"search\",\"disabled\":1,\"content\":{},\"styles\":{}},{\"title\":\"首页轮播图\",\"name\":\"banner\",\"content\":{\"enabled\":1,\"data\":[{\"image\":\"/resource/image/adminapi/default/banner001.png\",\"name\":\"\",\"link\":{\"id\":6,\"name\":\"来自瓷器的爱\",\"path\":\"/pages/news_detail/news_detail\",\"query\":{\"id\":6},\"type\":\"article\"},\"is_show\":\"1\",\"bg\":\"/resource/image/adminapi/default/banner001_bg.png\"},{\"image\":\"/resource/image/adminapi/default/banner002.png\",\"name\":\"\",\"link\":{\"id\":3,\"name\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"path\":\"/pages/news_detail/news_detail\",\"query\":{\"id\":3},\"type\":\"article\"},\"is_show\":\"1\",\"bg\":\"/resource/image/adminapi/default/banner002_bg.png\"},{\"is_show\":\"1\",\"image\":\"/resource/image/adminapi/default/banner003.png\",\"name\":\"\",\"link\":{\"id\":1,\"name\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"path\":\"/pages/news_detail/news_detail\",\"query\":{\"id\":1},\"type\":\"article\"},\"bg\":\"/resource/image/adminapi/default/banner003_bg.png\"}],\"style\":1,\"bg_style\":1},\"styles\":{}},{\"title\":\"导航菜单\",\"name\":\"nav\",\"content\":{\"enabled\":1,\"data\":[{\"image\":\"/resource/image/adminapi/default/nav01.png\",\"name\":\"资讯中心\",\"link\":{\"path\":\"/pages/news/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":true},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/nav03.png\",\"name\":\"个人设置\",\"link\":{\"path\":\"/pages/user_set/user_set\",\"name\":\"个人设置\",\"type\":\"shop\"},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/nav02.png\",\"name\":\"我的收藏\",\"link\":{\"path\":\"/pages/collection/collection\",\"name\":\"我的收藏\",\"type\":\"shop\"},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/nav05.png\",\"name\":\"关于我们\",\"link\":{\"path\":\"/pages/as_us/as_us\",\"name\":\"关于我们\",\"type\":\"shop\"},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/nav04.png\",\"name\":\"联系客服\",\"link\":{\"path\":\"/pages/customer_service/customer_service\",\"name\":\"联系客服\",\"type\":\"shop\"},\"is_show\":\"1\"}],\"style\":2,\"per_line\":5,\"show_line\":2},\"styles\":{}},{\"title\":\"首页中部轮播图\",\"name\":\"middle-banner\",\"content\":{\"enabled\":1,\"data\":[{\"is_show\":\"1\",\"image\":\"/resource/image/adminapi/default/index_ad01.png\",\"name\":\"\",\"link\":{\"path\":\"/pages/agreement/agreement\",\"name\":\"隐私政策\",\"query\":{\"type\":\"privacy\"},\"type\":\"shop\"}}]},\"styles\":{}},{\"id\":\"l84almsk2uhyf\",\"title\":\"资讯\",\"name\":\"news\",\"disabled\":1,\"content\":{},\"styles\":{}}]', '[{\"title\":\"页面设置\",\"name\":\"page-meta\",\"content\":{\"title\":\"首页\",\"bg_type\":\"2\",\"bg_color\":\"#2F80ED\",\"bg_image\":\"/resource/image/adminapi/default/page_meta_bg01.png\",\"text_color\":\"2\",\"title_type\":\"2\",\"title_img\":\"/resource/image/adminapi/default/page_mate_title.png\"},\"styles\":{}}]', 1661757188, 1710989700);
|
||
INSERT INTO `la_decorate_page` VALUES (2, 2, '个人中心', '[{\"title\":\"用户信息\",\"name\":\"user-info\",\"disabled\":1,\"content\":{},\"styles\":{}},{\"title\":\"我的服务\",\"name\":\"my-service\",\"content\":{\"style\":1,\"title\":\"我的服务\",\"data\":[{\"image\":\"/resource/image/adminapi/default/user_collect.png\",\"name\":\"我的收藏\",\"link\":{\"path\":\"/pages/collection/collection\",\"name\":\"我的收藏\",\"type\":\"shop\"},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/user_setting.png\",\"name\":\"个人设置\",\"link\":{\"path\":\"/pages/user_set/user_set\",\"name\":\"个人设置\",\"type\":\"shop\"},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/user_kefu.png\",\"name\":\"联系客服\",\"link\":{\"path\":\"/pages/customer_service/customer_service\",\"name\":\"联系客服\",\"type\":\"shop\"},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/wallet.png\",\"name\":\"我的钱包\",\"link\":{\"path\":\"/packages/pages/user_wallet/user_wallet\",\"name\":\"我的钱包\",\"type\":\"shop\"},\"is_show\":\"1\"}],\"enabled\":1},\"styles\":{}},{\"title\":\"个人中心广告图\",\"name\":\"user-banner\",\"content\":{\"enabled\":1,\"data\":[{\"image\":\"/resource/image/adminapi/default/user_ad01.png\",\"name\":\"\",\"link\":{\"path\":\"/pages/customer_service/customer_service\",\"name\":\"联系客服\",\"type\":\"shop\"},\"is_show\":\"1\"},{\"image\":\"/resource/image/adminapi/default/user_ad02.png\",\"name\":\"\",\"link\":{\"path\":\"/pages/customer_service/customer_service\",\"name\":\"联系客服\",\"type\":\"shop\"},\"is_show\":\"1\"}]},\"styles\":{}}]', '[{\"title\":\"页面设置\",\"name\":\"page-meta\",\"content\":{\"title\":\"个人中心\",\"bg_type\":\"1\",\"bg_color\":\"#2F80ED\",\"bg_image\":\"\",\"text_color\":\"1\",\"title_type\":\"2\",\"title_img\":\"/resource/image/adminapi/default/page_mate_title.png\"},\"styles\":{}}]', 1661757188, 1710933097);
|
||
INSERT INTO `la_decorate_page` VALUES (3, 3, '客服设置', '[{\"title\":\"客服设置\",\"name\":\"customer-service\",\"content\":{\"title\":\"添加客服二维码\",\"time\":\"早上 9:30 - 19:00\",\"mobile\":\"1888888888\",\"qrcode\":\"/resource/image/adminapi/default/kefu01.png\",\"remark\":\"长按添加客服或拨打客服热线\"},\"styles\":{}}]', '', 1661757188, 1710929953);
|
||
INSERT INTO `la_decorate_page` VALUES (4, 4, 'PC设置', '[{\"id\":\"lajcn8d0hzhed\",\"title\":\"首页轮播图\",\"name\":\"pc-banner\",\"content\":{\"enabled\":1,\"data\":[{\"image\":\"/resource/image/adminapi/default/banner003.png\",\"name\":\"\",\"link\":{\"path\":\"/pages/news/news\",\"name\":\"文章资讯\",\"type\":\"shop\"}},{\"image\":\"/resource/image/adminapi/default/banner002.png\",\"name\":\"\",\"link\":{\"path\":\"/pages/collection/collection\",\"name\":\"我的收藏\",\"type\":\"shop\"}},{\"image\":\"/resource/image/adminapi/default/banner001.png\",\"name\":\"\",\"link\":{}}]},\"styles\":{\"position\":\"absolute\",\"left\":\"40\",\"top\":\"75px\",\"width\":\"750px\",\"height\":\"340px\"}}]', '', 1661757188, 1710990175);
|
||
INSERT INTO `la_decorate_page` VALUES (5, 5, '系统风格', '{\"themeColorId\":3,\"topTextColor\":\"white\",\"navigationBarColor\":\"#A74BFD\",\"themeColor1\":\"#A74BFD\",\"themeColor2\":\"#CB60FF\",\"buttonColor\":\"white\"}', '', 1710410915, 1710990415);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_decorate_tabbar
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_decorate_tabbar`;
|
||
CREATE TABLE `la_decorate_tabbar` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
|
||
`name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '导航名称',
|
||
`selected` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '未选图标',
|
||
`unselected` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '已选图标',
|
||
`link` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接地址',
|
||
`is_show` tinyint UNSIGNED NOT NULL DEFAULT 1 COMMENT '显示状态',
|
||
`create_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间',
|
||
`update_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 22 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '装修底部导航表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_decorate_tabbar
|
||
-- ----------------------------
|
||
INSERT INTO `la_decorate_tabbar` VALUES (17, '首页', 'resource/image/tabbar/1-2-.png', 'resource/image/tabbar/1-1.png', '{\"canTab\":\"1\",\"path\":\"\\/pages\\/index\\/index\",\"name\":\"\\u9996\\u9875\",\"type\":\"shop\"}', 1, 1777450635, 1777450635);
|
||
INSERT INTO `la_decorate_tabbar` VALUES (18, '预定', 'resource/image/tabbar/2-2.png', 'resource/image/tabbar/2-1.png', '{\"canTab\":\"1\",\"path\":\"\\/pages\\/booking\\/booking\",\"name\":\"\\u9884\\u5b9a\",\"type\":\"shop\"}', 1, 1777450635, 1777450635);
|
||
INSERT INTO `la_decorate_tabbar` VALUES (19, '会员', 'resource/image/tabbar/3-2.png', 'resource/image/tabbar/3-1.png', '{\"canTab\":\"1\",\"path\":\"\\/pages\\/member\\/member\",\"name\":\"\\u4f1a\\u5458\",\"type\":\"shop\"}', 1, 1777450635, 1777450635);
|
||
INSERT INTO `la_decorate_tabbar` VALUES (20, '通知', 'resource/image/tabbar/4-2.png', 'resource/image/tabbar/4-1.png', '{\"canTab\":\"1\",\"path\":\"\\/pages\\/notice\\/notice\",\"name\":\"\\u901a\\u77e5\",\"type\":\"shop\"}', 1, 1777450635, 1777450635);
|
||
INSERT INTO `la_decorate_tabbar` VALUES (21, '我的', 'resource/image/tabbar/5-2.png', 'resource/image/tabbar/5-1.png', '{\"canTab\":\"1\",\"path\":\"\\/pages\\/user\\/user\",\"name\":\"\\u6211\\u7684\",\"type\":\"shop\"}', 1, 1777450635, 1777450635);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_dept
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_dept`;
|
||
CREATE TABLE `la_dept` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '部门名称',
|
||
`pid` bigint NOT NULL DEFAULT 0 COMMENT '上级部门id',
|
||
`sort` int NOT NULL DEFAULT 0 COMMENT '排序',
|
||
`leader` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '负责人',
|
||
`mobile` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系电话',
|
||
`status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '部门状态(0停用 1正常)',
|
||
`create_time` int NOT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '修改时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '部门表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_dept
|
||
-- ----------------------------
|
||
INSERT INTO `la_dept` VALUES (1, '公司', 0, 0, 'boss', '12345698745', 1, 1650592684, 1653640368, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_dev_crontab
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_dev_crontab`;
|
||
CREATE TABLE `la_dev_crontab` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '定时任务名称',
|
||
`type` tinyint(1) NOT NULL COMMENT '类型 1-定时任务',
|
||
`system` tinyint NULL DEFAULT 0 COMMENT '是否系统任务 0-否 1-是',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注',
|
||
`command` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '命令内容',
|
||
`params` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '参数',
|
||
`status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '状态 1-运行 2-停止 3-错误',
|
||
`expression` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '运行规则',
|
||
`error` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '运行失败原因',
|
||
`last_time` int NULL DEFAULT NULL COMMENT '最后执行时间',
|
||
`time` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '实时执行时长',
|
||
`max_time` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '最大执行时长',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '计划任务表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_dev_crontab
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_dev_pay_config
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_dev_pay_config`;
|
||
CREATE TABLE `la_dev_pay_config` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '模版名称',
|
||
`pay_way` tinyint(1) NOT NULL COMMENT '支付方式:1-余额支付;2-微信支付;3-支付宝支付;',
|
||
`config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '对应支付配置(json字符串)',
|
||
`icon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '图标',
|
||
`sort` int NULL DEFAULT NULL COMMENT '排序',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '支付配置表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_dev_pay_config
|
||
-- ----------------------------
|
||
INSERT INTO `la_dev_pay_config` VALUES (1, '余额支付', 1, '', '/resource/image/adminapi/default/balance_pay.png', 128, '余额支付备注');
|
||
INSERT INTO `la_dev_pay_config` VALUES (2, '微信支付', 2, '{\"interface_version\":\"v3\",\"merchant_type\":\"ordinary_merchant\",\"mch_id\":\"\",\"pay_sign_key\":\"\",\"apiclient_cert\":\"\",\"apiclient_key\":\"\"}', '/resource/image/adminapi/default/wechat_pay.png', 123, '微信支付备注');
|
||
INSERT INTO `la_dev_pay_config` VALUES (3, '支付宝支付', 3, '{\"mode\":\"normal_mode\",\"merchant_type\":\"ordinary_merchant\",\"app_id\":\"\",\"private_key\":\"\",\"ali_public_key\":\"\"}', '/resource/image/adminapi/default/ali_pay.png', 123, '支付宝支付');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_dev_pay_way
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_dev_pay_way`;
|
||
CREATE TABLE `la_dev_pay_way` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`pay_config_id` int NOT NULL COMMENT '支付配置ID',
|
||
`scene` tinyint(1) NOT NULL COMMENT '场景:1-微信小程序;2-微信公众号;3-H5;4-PC;5-APP;',
|
||
`is_default` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否默认支付:0-否;1-是;',
|
||
`status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:0-关闭;1-开启;',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '支付方式表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_dev_pay_way
|
||
-- ----------------------------
|
||
INSERT INTO `la_dev_pay_way` VALUES (1, 1, 1, 0, 1);
|
||
INSERT INTO `la_dev_pay_way` VALUES (2, 2, 1, 1, 1);
|
||
INSERT INTO `la_dev_pay_way` VALUES (3, 1, 2, 0, 1);
|
||
INSERT INTO `la_dev_pay_way` VALUES (4, 2, 2, 1, 1);
|
||
INSERT INTO `la_dev_pay_way` VALUES (5, 1, 3, 0, 1);
|
||
INSERT INTO `la_dev_pay_way` VALUES (6, 2, 3, 1, 1);
|
||
INSERT INTO `la_dev_pay_way` VALUES (7, 3, 3, 0, 1);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_dict_data
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_dict_data`;
|
||
CREATE TABLE `la_dict_data` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '数据名称',
|
||
`value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '数据值',
|
||
`type_id` int NOT NULL COMMENT '字典类型id',
|
||
`type_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型',
|
||
`sort` int NULL DEFAULT 0 COMMENT '排序值',
|
||
`status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '状态 0-停用 1-正常',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注',
|
||
`create_time` int NOT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '修改时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 59 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典数据表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_dict_data
|
||
-- ----------------------------
|
||
INSERT INTO `la_dict_data` VALUES (1, '隐藏', '0', 1, 'show_status', 0, 1, '', 1656381543, 1656381543, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (2, '显示', '1', 1, 'show_status', 0, 1, '', 1656381550, 1656381550, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (3, '进行中', '0', 2, 'business_status', 0, 1, '', 1656381410, 1656381410, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (4, '成功', '1', 2, 'business_status', 0, 1, '', 1656381437, 1656381437, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (5, '失败', '2', 2, 'business_status', 0, 1, '', 1656381449, 1656381449, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (6, '待处理', '0', 3, 'event_status', 0, 1, '', 1656381212, 1656381212, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (7, '已处理', '1', 3, 'event_status', 0, 1, '', 1656381315, 1656381315, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (8, '拒绝处理', '2', 3, 'event_status', 0, 1, '', 1656381331, 1656381331, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (9, '禁用', '1', 4, 'system_disable', 0, 1, '', 1656312030, 1656312030, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (10, '正常', '0', 4, 'system_disable', 0, 1, '', 1656312040, 1656312040, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (11, '未知', '0', 5, 'sex', 0, 1, '', 1656062988, 1656062988, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (12, '男', '1', 5, 'sex', 0, 1, '', 1656062999, 1656062999, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (13, '女', '2', 5, 'sex', 0, 1, '', 1656063009, 1656063009, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (24, '首页区域1-主视觉', 'home_1', 6, 'banner_position', 1, 1, 'Hero轮播背景图', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (25, '首页区域2-品牌介绍', 'home_2', 6, 'banner_position', 2, 1, '品牌Logo+介绍图', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (26, '首页区域3-风格户型', 'home_3', 6, 'banner_position', 3, 1, '户型轮播图', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (27, '首页区域4-社区设施', 'home_4', 6, 'banner_position', 4, 1, '社区设施Tab图', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (28, '首页区域5-公众号', 'home_5', 6, 'banner_position', 5, 1, '公众号引导栏', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (29, '首页区域6-联系信息', 'home_6', 6, 'banner_position', 6, 1, '底部联系信息图', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (30, '预定页轮播', 'booking_slide', 6, 'banner_position', 10, 1, '预定页顶部轮播', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (31, '会员页Banner', 'member_banner', 6, 'banner_position', 11, 1, '会员页Banner', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (32, '弹窗广告', 'popup', 6, 'banner_position', 20, 1, '弹窗广告', 1777448488, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (33, '首页导航Logo', 'home_nav', 6, 'banner_position', 5, 1, '首页顶部导航栏Logo图片', 1777453583, 1777453583, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (34, '风格户型轮播', 'home_3_slide', 6, 'banner_position', 35, 1, '首页区域3背景上方的轮播图', 1777454253, 1777454253, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (35, '社区设施轮播', 'home_4_slide', 6, 'banner_position', 45, 1, '首页区域4背景上方的轮播图', 1777456518, 1777456518, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (36, '预定页轮播图', 'booking_hero', 6, 'banner_position', 6, 1, '', 1777488332, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (42, '个人', '1', 8, 'user_type', 1, 1, '', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (43, '企业', '2', 8, 'user_type', 2, 1, '', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (44, '商户', '3', 8, 'user_type', 3, 1, '', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (45, '未认证', '0', 9, 'realname_status', 1, 1, '', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (46, '审核中', '1', 9, 'realname_status', 2, 1, '', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (47, '已认证', '2', 9, 'realname_status', 3, 1, '', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (48, '已驳回', '3', 9, 'realname_status', 4, 1, '', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (52, '短租预定列表轮播图', 'booking_short_hero', 6, 'banner_position', 7, 1, '', 1777491222, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (53, '长租预定列表轮播图', 'booking_long_hero', 6, 'banner_position', 8, 1, '', 1777491222, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (54, '我的页-快捷入口', 'user_quick', 6, 'banner_position', 50, 1, '个人中心 4 入口', 1777491295, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (55, '我的页-服务网格', 'user_service', 6, 'banner_position', 49, 1, '个人中心 6 服务', 1777491295, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (57, '公告', '4', 10, 'notice_cate', 1, 1, 'announcement', 1777491721, NULL, NULL);
|
||
INSERT INTO `la_dict_data` VALUES (58, '活动通知', '5', 10, 'notice_cate', 2, 1, 'activity', 1777491722, NULL, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_dict_type
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_dict_type`;
|
||
CREATE TABLE `la_dict_type` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '字典名称',
|
||
`type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '字典类型名称',
|
||
`status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '状态 0-停用 1-正常',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注',
|
||
`create_time` int NOT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '修改时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典类型表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_dict_type
|
||
-- ----------------------------
|
||
INSERT INTO `la_dict_type` VALUES (1, '显示状态', 'show_status', 1, '', 1656381520, 1656381520, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (2, '业务状态', 'business_status', 1, '', 1656381393, 1656381393, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (3, '事件状态', 'event_status', 1, '', 1656381075, 1656381075, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (4, '禁用状态', 'system_disable', 1, '', 1656311838, 1656311838, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (5, '用户性别', 'sex', 1, '', 1656062946, 1656380925, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (6, '广告位置', 'banner_position', 1, '页面广告/轮播图位置', 1777448365, NULL, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (8, '用户类型', 'user_type', 1, '个人/企业/商户', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (9, '实名认证状态', 'realname_status', 1, '未认证/审核中/已认证/已驳回', 1777490327, NULL, NULL);
|
||
INSERT INTO `la_dict_type` VALUES (10, '通知页文章分类映射', 'notice_cate', 1, '映射 la_article_cate.id 到前端通知类型,la_dict_data.value 为文章分类ID,remark 为前端type', 1777491721, NULL, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_file
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_file`;
|
||
CREATE TABLE `la_file` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
|
||
`cid` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '类目ID',
|
||
`source_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '上传者id',
|
||
`source` tinyint(1) NOT NULL DEFAULT 0 COMMENT '来源类型[0-后台,1-用户]',
|
||
`type` tinyint UNSIGNED NOT NULL DEFAULT 10 COMMENT '类型[10=图片, 20=视频]',
|
||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '文件名称',
|
||
`uri` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '文件路径',
|
||
`create_time` int UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 34 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '文件表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_file
|
||
-- ----------------------------
|
||
INSERT INTO `la_file` VALUES (1, 0, 0, 0, 10, 'sdfsdfsdfsdfsdf.png', 'uploads/images/20260417/20260417124822a10078125.png', 1776401302, 1776401461, 1776401461);
|
||
INSERT INTO `la_file` VALUES (2, 0, 0, 0, 10, '80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg', 'uploads/images/20260417/202604171251186daad1656.jpg', 1776401478, 1776401478, NULL);
|
||
INSERT INTO `la_file` VALUES (3, 0, 0, 0, 10, 'member_s.png', 'uploads/images/20260429/20260429143837116b78584.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (4, 0, 0, 0, 10, 'home.png', 'uploads/images/20260429/20260429143837f27420180.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (5, 0, 0, 0, 10, 'user.png', 'uploads/images/20260429/2026042914383790b9b4939.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (6, 0, 0, 0, 10, 'home_s.png', 'uploads/images/20260429/202604291438377aa480378.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (7, 0, 0, 0, 10, 'booking.png', 'uploads/images/20260429/2026042914383740d969182.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (8, 0, 0, 0, 10, 'notice_s.png', 'uploads/images/20260429/20260429143837f77f93518.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (9, 0, 0, 0, 10, 'member.png', 'uploads/images/20260429/202604291438377fa442293.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (10, 0, 0, 0, 10, 'booking_s.png', 'uploads/images/20260429/202604291438374d3c27025.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (11, 0, 0, 0, 10, 'notice.png', 'uploads/images/20260429/20260429143837057b86552.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (12, 0, 0, 0, 10, 'user_s.png', 'uploads/images/20260429/20260429143837e50038157.png', 1777444717, 1777444717, NULL);
|
||
INSERT INTO `la_file` VALUES (13, 0, 0, 0, 10, 'inAmber层级1banner.png', 'uploads/images/20260429/20260429165142f49ea7323.png', 1777452702, 1777452702, NULL);
|
||
INSERT INTO `la_file` VALUES (14, 0, 0, 0, 10, 'inAmber层级1-1首页.png', 'uploads/images/20260429/20260429165436b91348853.png', 1777452877, 1777452877, NULL);
|
||
INSERT INTO `la_file` VALUES (15, 0, 0, 0, 10, 'inAmber层级1-2.png', 'uploads/images/20260429/20260429165644075133819.png', 1777453004, 1777453004, NULL);
|
||
INSERT INTO `la_file` VALUES (16, 0, 0, 0, 10, 'inAmber层级1-3背景.png', 'uploads/images/20260429/202604291657067ef9e8034.png', 1777453026, 1777453026, NULL);
|
||
INSERT INTO `la_file` VALUES (17, 0, 0, 0, 10, 'inAmber层级1-4背景.png', 'uploads/images/20260429/202604291657178a70d3173.png', 1777453037, 1777453037, NULL);
|
||
INSERT INTO `la_file` VALUES (18, 0, 0, 0, 10, 'pic2.png', 'uploads/images/20260429/2026042917190585dfc3673.png', 1777454351, 1777454351, NULL);
|
||
INSERT INTO `la_file` VALUES (19, 0, 0, 0, 10, 'pic3.jpg', 'uploads/images/20260429/20260429171923dc3d25828.jpg', 1777454374, 1777454374, NULL);
|
||
INSERT INTO `la_file` VALUES (20, 0, 0, 0, 10, 'pic1.png', 'uploads/images/20260429/202604291719066e31e8383.png', 1777454375, 1777454375, NULL);
|
||
INSERT INTO `la_file` VALUES (21, 0, 0, 0, 10, 'pic2.png', 'uploads/images/20260429/202604291719234803a1340.png', 1777454378, 1777454378, NULL);
|
||
INSERT INTO `la_file` VALUES (22, 0, 0, 0, 10, 'pic1.png', 'uploads/images/20260429/20260429171924481019277.png', 1777454405, 1777454405, NULL);
|
||
INSERT INTO `la_file` VALUES (23, 0, 0, 0, 10, 'pic1.png', 'uploads/images/20260429/20260429171941892461376.png', 1777454407, 1777454407, NULL);
|
||
INSERT INTO `la_file` VALUES (24, 0, 0, 0, 10, '精酿酒吧 (2).png', 'uploads/images/20260429/2026042917590620d139968.png', 1777456836, 1777456836, NULL);
|
||
INSERT INTO `la_file` VALUES (25, 0, 0, 0, 10, 'f1.png', 'uploads/images/20260429/2026042918010793b473647.png', 1777456872, 1777456872, NULL);
|
||
INSERT INTO `la_file` VALUES (26, 0, 0, 0, 10, 's20.png', 'uploads/images/20260429/20260429180108d5f288703.png', 1777456872, 1777456872, NULL);
|
||
INSERT INTO `la_file` VALUES (27, 0, 0, 0, 10, 'f3.png', 'uploads/images/20260429/20260429180107c52963532.png', 1777456872, 1777456872, NULL);
|
||
INSERT INTO `la_file` VALUES (28, 0, 0, 0, 10, 'f2.png', 'uploads/images/20260429/20260429180108ac6fa7407.png', 1777456873, 1777456873, NULL);
|
||
INSERT INTO `la_file` VALUES (29, 0, 0, 0, 10, 's1.png', 'uploads/images/20260429/20260429180108388662857.png', 1777456876, 1777456876, NULL);
|
||
INSERT INTO `la_file` VALUES (30, 0, 0, 0, 10, 's3.png', 'uploads/images/20260429/20260429180108be2a65177.png', 1777456882, 1777456882, NULL);
|
||
INSERT INTO `la_file` VALUES (31, 0, 0, 0, 10, '包房KTV .png', 'uploads/images/20260429/202604291801090a6fe4263.png', 1777456885, 1777456885, NULL);
|
||
INSERT INTO `la_file` VALUES (32, 0, 0, 0, 10, 'inAmber层级1-4背景.png', 'uploads/images/20260429/2026042918230451cfb9832.png', 1777458184, 1777458184, NULL);
|
||
INSERT INTO `la_file` VALUES (33, 0, 0, 0, 10, 'logoicon.png', 'uploads/images/20260430/202604300225238efbc6661.png', 1777487123, 1777487123, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_file_cate
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_file_cate`;
|
||
CREATE TABLE `la_file_cate` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
|
||
`pid` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '父级ID',
|
||
`type` tinyint UNSIGNED NOT NULL DEFAULT 10 COMMENT '类型[10=图片,20=视频,30=文件]',
|
||
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '分类名称',
|
||
`create_time` int UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int UNSIGNED NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '文件分类表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_file_cate
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_generate_column
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_generate_column`;
|
||
CREATE TABLE `la_generate_column` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`table_id` int NOT NULL DEFAULT 0 COMMENT '表id',
|
||
`column_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '字段名称',
|
||
`column_comment` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '字段描述',
|
||
`column_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '字段类型',
|
||
`is_required` tinyint(1) NULL DEFAULT 0 COMMENT '是否必填 0-非必填 1-必填',
|
||
`is_pk` tinyint(1) NULL DEFAULT 0 COMMENT '是否为主键 0-不是 1-是',
|
||
`is_insert` tinyint(1) NULL DEFAULT 0 COMMENT '是否为插入字段 0-不是 1-是',
|
||
`is_update` tinyint(1) NULL DEFAULT 0 COMMENT '是否为更新字段 0-不是 1-是',
|
||
`is_lists` tinyint(1) NULL DEFAULT 0 COMMENT '是否为列表字段 0-不是 1-是',
|
||
`is_query` tinyint(1) NULL DEFAULT 0 COMMENT '是否为查询字段 0-不是 1-是',
|
||
`query_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '=' COMMENT '查询类型',
|
||
`view_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'input' COMMENT '显示类型',
|
||
`dict_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典类型',
|
||
`create_time` int NOT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '修改时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '代码生成表字段信息表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_generate_column
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_generate_table
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_generate_table`;
|
||
CREATE TABLE `la_generate_table` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`table_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '表名称',
|
||
`table_comment` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '表描述',
|
||
`template_type` tinyint(1) NOT NULL DEFAULT 0 COMMENT '模板类型 0-单表(curd) 1-树表(curd)',
|
||
`author` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '作者',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注',
|
||
`generate_type` tinyint(1) NOT NULL DEFAULT 0 COMMENT '生成方式 0-压缩包下载 1-生成到模块',
|
||
`module_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '模块名',
|
||
`class_dir` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '类目录名',
|
||
`class_comment` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '类描述',
|
||
`admin_id` int NULL DEFAULT 0 COMMENT '管理员id',
|
||
`menu` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '菜单配置',
|
||
`delete` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '删除配置',
|
||
`tree` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '树表配置',
|
||
`relations` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '关联配置',
|
||
`create_time` int NOT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '修改时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '代码生成表信息表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_generate_table
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_hot_search
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_hot_search`;
|
||
CREATE TABLE `la_hot_search` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
|
||
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '关键词',
|
||
`sort` smallint UNSIGNED NOT NULL DEFAULT 0 COMMENT '排序号',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '热门搜索表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_hot_search
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_house
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_house`;
|
||
CREATE TABLE `la_house` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`building_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '楼栋ID -> la_building',
|
||
`house_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '房号',
|
||
`floor` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '楼层',
|
||
`title` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '房源标题',
|
||
`house_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '户型 字典 house_type',
|
||
`area` decimal(8, 2) NOT NULL DEFAULT 0.00 COMMENT '建筑面积(㎡)',
|
||
`orientation` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '朝向 字典 house_orientation',
|
||
`decoration` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '装修 字典 house_decoration',
|
||
`rent_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '出租方式 字典 rent_type (可多选逗号分隔)',
|
||
`day_price` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '日租单价(元/天)',
|
||
`month_price` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '月租价(元/月)',
|
||
`deposit` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '押金',
|
||
`cleaning_fee` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '清洁费(日租)',
|
||
`cover_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '封面图',
|
||
`floor_plan` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '户型平面图',
|
||
`vr_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT 'VR外链',
|
||
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '房源描述(富文本)',
|
||
`facilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '配套设施JSON(wifi/空调/冰箱...)',
|
||
`status` tinyint NOT NULL DEFAULT 1 COMMENT '字典 house_status',
|
||
`view_count` int NOT NULL DEFAULT 0 COMMENT '浏览量',
|
||
`favorite_count` int NOT NULL DEFAULT 0 COMMENT '收藏量',
|
||
`sort` int NOT NULL DEFAULT 0,
|
||
`admin_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建管理员',
|
||
`extra` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '扩展JSON',
|
||
`create_time` int NOT NULL DEFAULT 0,
|
||
`update_time` int NOT NULL DEFAULT 0,
|
||
`delete_time` int NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `idx_building`(`building_id` ASC) USING BTREE,
|
||
INDEX `idx_status`(`status` ASC) USING BTREE,
|
||
INDEX `idx_rent_type`(`rent_type` ASC) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '房源档案' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_house
|
||
-- ----------------------------
|
||
INSERT INTO `la_house` VALUES (1, 1, 'A-0501', '5F', '美式中古标准间', '一字户型', 32.00, '南', '精装', '1,2', 499.00, 9800.00, 2000.00, 80.00, 'uploads/images/20260429/2026042918010793b473647.png', '', '', '适合短途差旅与周末度假,独立卫浴,采光舒适。', '[\"wifi\",\"空调\",\"冰箱\",\"洗衣机\",\"智能门锁\"]', 1, 0, 0, 100, 0, NULL, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_house` VALUES (2, 1, 'A-0603', '6F', '美式中古豪华间', 'L型户型', 38.00, '南', '精装', '1,2', 539.00, 10800.00, 2200.00, 80.00, 'uploads/images/20260429/20260429171941892461376.png', '', '', '客厅与睡眠区自然分隔,适合两人入住。', '[\"wifi\",\"空调\",\"冰箱\",\"投影\",\"智能门锁\"]', 1, 0, 0, 95, 0, NULL, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_house` VALUES (3, 1, 'A-0808', '8F', '美式中古行政套房', '套房', 48.00, '南北通透', '豪装', '1,2,3', 619.00, 12800.00, 2600.00, 100.00, 'uploads/images/20260429/2026042918010793b473647.png', '', '', '独立会客区与开阔窗景,适合商务长住。', '[\"wifi\",\"空调\",\"冰箱\",\"洗衣机\",\"书桌\",\"智能门锁\"]', 1, 0, 0, 90, 0, NULL, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_house` VALUES (4, 1, 'B-0306', '3F', '北欧阳光开间', '开间', 35.00, '东南', '精装', '2,3', 459.00, 9200.00, 1800.00, 60.00, 'uploads/images/20260429/20260429171941892461376.png', '', '', '温润浅色系开间,适合灵活短租和轻长住。', '[\"wifi\",\"空调\",\"冰箱\",\"洗衣机\"]', 1, 0, 0, 85, 0, NULL, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_house` VALUES (5, 1, 'B-0712', '7F', '法式雅致一室一厅', '一室一厅', 52.00, '南', '豪装', '3', 0.00, 13800.00, 3000.00, 0.00, 'uploads/images/20260429/2026042918010793b473647.png', '', '', '独立客餐厅与完整厨房,适合月租及长期居住。', '[\"wifi\",\"空调\",\"冰箱\",\"洗衣机\",\"厨房\",\"智能门锁\"]', 1, 0, 0, 80, 0, NULL, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_house` VALUES (6, 1, 'C-0902', '9F', '现代轻奢一室一厅', '一室一厅一卫', 56.00, '南', '豪装', '3', 0.00, 15800.00, 3500.00, 0.00, 'uploads/images/20260429/20260429171941892461376.png', '', '', '高楼层景观与完整收纳系统,适合长期稳定居住。', '[\"wifi\",\"空调\",\"冰箱\",\"洗衣机\",\"厨房\",\"衣帽柜\"]', 1, 0, 0, 75, 0, NULL, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_house` VALUES (7, 1, 'C-1016', '10F', '行政双床套房', '套房', 62.00, '南北通透', '豪装', '1,2', 699.00, 16800.00, 3600.00, 120.00, 'uploads/images/20260429/2026042918010793b473647.png', '', '', '双床配置与宽敞会客区,适合家庭短住。', '[\"wifi\",\"空调\",\"冰箱\",\"洗衣机\",\"双床\",\"智能门锁\"]', 1, 0, 0, 70, 0, NULL, 1777491222, 1777491222, NULL);
|
||
INSERT INTO `la_house` VALUES (8, 1, 'D-1201', '12F', '城市景观两室一厅', '两室一厅', 78.00, '南', '豪装', '3', 0.00, 19800.00, 4500.00, 0.00, 'uploads/images/20260429/20260429171941892461376.png', '', '', '两间独立卧室与城市景观,适合家庭长租。', '[\"wifi\",\"空调\",\"冰箱\",\"洗衣机\",\"厨房\",\"阳台\"]', 1, 0, 0, 65, 0, NULL, 1777491222, 1777491222, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_jobs
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_jobs`;
|
||
CREATE TABLE `la_jobs` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位名称',
|
||
`code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位编码',
|
||
`sort` int NULL DEFAULT 0 COMMENT '显示顺序',
|
||
`status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '状态(0停用 1正常)',
|
||
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
|
||
`create_time` int NOT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '修改时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '岗位表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_jobs
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_member_level
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_member_level`;
|
||
CREATE TABLE `la_member_level` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '等级名称',
|
||
`level` tinyint NOT NULL DEFAULT 1 COMMENT '等级数值 1/2/3/4',
|
||
`icon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '等级图标',
|
||
`card_bg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '会员卡背景图(个人中心 我的页面 显示)',
|
||
`color` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '主题色',
|
||
`desc_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '权益描述文本',
|
||
`upgrade_type` tinyint NOT NULL DEFAULT 1 COMMENT '升级条件类型 1租赁时长(月) 2累计消费(元) 3两者任一',
|
||
`rent_month_min` int NOT NULL DEFAULT 0 COMMENT '最低租赁月数',
|
||
`consume_min` decimal(12, 2) NOT NULL DEFAULT 0.00 COMMENT '最低累计消费',
|
||
`points_expire_extend` int NOT NULL DEFAULT 0 COMMENT '积分有效期延长(月)',
|
||
`sort` int NOT NULL DEFAULT 0,
|
||
`status` tinyint NOT NULL DEFAULT 1,
|
||
`create_time` int NOT NULL DEFAULT 0,
|
||
`update_time` int NOT NULL DEFAULT 0,
|
||
`delete_time` int NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `uk_level`(`level` ASC) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '会员等级' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_member_level
|
||
-- ----------------------------
|
||
INSERT INTO `la_member_level` VALUES (1, '普通会员', 1, '', '', '', NULL, 1, 0, 0.00, 0, 1, 1, 1777490290, 0, NULL);
|
||
INSERT INTO `la_member_level` VALUES (2, '银卡会员', 2, '', '', '', NULL, 1, 12, 0.00, 0, 2, 1, 1777490290, 0, NULL);
|
||
INSERT INTO `la_member_level` VALUES (3, '金卡会员', 3, '', '', '', NULL, 1, 24, 0.00, 0, 3, 1, 1777490290, 0, NULL);
|
||
INSERT INTO `la_member_level` VALUES (4, '铂金会员', 4, '', '', '', NULL, 1, 36, 0.00, 0, 4, 1, 1777490290, 0, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_notice_record
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_notice_record`;
|
||
CREATE TABLE `la_notice_record` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
||
`user_id` int UNSIGNED NOT NULL COMMENT '用户id',
|
||
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '标题',
|
||
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '内容',
|
||
`scene_id` int UNSIGNED NULL DEFAULT 0 COMMENT '场景',
|
||
`read` tinyint(1) NULL DEFAULT 0 COMMENT '已读状态;0-未读,1-已读',
|
||
`recipient` tinyint(1) NULL DEFAULT 0 COMMENT '通知接收对象类型;1-会员;2-商家;3-平台;4-游客(未注册用户)',
|
||
`send_type` tinyint(1) NULL DEFAULT 0 COMMENT '通知发送类型 1-系统通知 2-短信通知 3-微信模板 4-微信小程序',
|
||
`notice_type` tinyint(1) NULL DEFAULT NULL COMMENT '通知类型 1-业务通知 2-验证码',
|
||
`extra` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '其他',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '通知记录表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_notice_record
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_notice_setting
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_notice_setting`;
|
||
CREATE TABLE `la_notice_setting` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`scene_id` int NOT NULL COMMENT '场景id',
|
||
`scene_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '场景名称',
|
||
`scene_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '场景描述',
|
||
`recipient` tinyint(1) NOT NULL DEFAULT 1 COMMENT '接收者 1-用户 2-平台',
|
||
`type` tinyint(1) NOT NULL DEFAULT 1 COMMENT '通知类型: 1-业务通知 2-验证码',
|
||
`system_notice` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '系统通知设置',
|
||
`sms_notice` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '短信通知设置',
|
||
`oa_notice` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '公众号通知设置',
|
||
`mnp_notice` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '小程序通知设置',
|
||
`support` char(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '支持的发送类型 1-系统通知 2-短信通知 3-微信模板消息 4-小程序提醒',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '通知设置表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_notice_setting
|
||
-- ----------------------------
|
||
INSERT INTO `la_notice_setting` VALUES (1, 101, '登录验证码', '用户手机号码登录时发送', 1, 2, '{\"type\":\"system\",\"title\":\"\",\"content\":\"\",\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\"]}', '{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"}', '{\"type\":\"oa\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"first\":\"\",\"remark\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]}', '{\"type\":\"mnp\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]}', '2', NULL);
|
||
INSERT INTO `la_notice_setting` VALUES (2, 102, '绑定手机验证码', '用户绑定手机号码时发送', 1, 2, '{\"type\":\"system\",\"title\":\"\",\"content\":\"\",\"status\":\"0\",\"is_show\":\"\"}', '{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"}', '{\"type\":\"oa\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"first\":\"\",\"remark\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\"}', '{\"type\":\"mnp\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\"}', '2', NULL);
|
||
INSERT INTO `la_notice_setting` VALUES (3, 103, '变更手机验证码', '用户变更手机号码时发送', 1, 2, '{\"type\":\"system\",\"title\":\"\",\"content\":\"\",\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\"]}', '{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"}', '{\"type\":\"oa\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"first\":\"\",\"remark\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]}', '{\"type\":\"mnp\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]}', '2', NULL);
|
||
INSERT INTO `la_notice_setting` VALUES (4, 104, '找回登录密码验证码', '用户找回登录密码号码时发送', 1, 2, '{\"type\":\"system\",\"title\":\"\",\"content\":\"\",\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\"]}', '{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"}', '{\"type\":\"oa\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"first\":\"\",\"remark\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]}', '{\"type\":\"mnp\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":\"\",\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]}', '2', NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_official_account_reply
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_official_account_reply`;
|
||
CREATE TABLE `la_official_account_reply` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '规则名称',
|
||
`keyword` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '关键词',
|
||
`reply_type` tinyint(1) NOT NULL COMMENT '回复类型 1-关注回复 2-关键字回复 3-默认回复',
|
||
`matching_type` tinyint UNSIGNED NOT NULL DEFAULT 1 COMMENT '匹配方式:1-全匹配;2-模糊匹配',
|
||
`content_type` tinyint UNSIGNED NOT NULL DEFAULT 1 COMMENT '内容类型:1-文本',
|
||
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '回复内容',
|
||
`status` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '启动状态:1-启动;0-关闭',
|
||
`sort` int UNSIGNED NOT NULL DEFAULT 50 COMMENT '排序',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '公众号消息回调表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_official_account_reply
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_operation_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_operation_log`;
|
||
CREATE TABLE `la_operation_log` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`admin_id` int NOT NULL COMMENT '管理员ID',
|
||
`admin_name` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '管理员名称',
|
||
`account` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '管理员账号',
|
||
`action` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作名称',
|
||
`type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '请求方式',
|
||
`url` varchar(600) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '访问链接',
|
||
`params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '请求数据',
|
||
`result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '请求结果',
|
||
`ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT 'ip地址',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 696 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统日志表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_operation_log
|
||
-- ----------------------------
|
||
INSERT INTO `la_operation_log` VALUES (1, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.217', 1776400930);
|
||
INSERT INTO `la_operation_log` VALUES (2, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.217', 1776400930);
|
||
INSERT INTO `la_operation_log` VALUES (3, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"06198d1f9ad70839eacf41168a935c1b\"}}', '120.239.179.217', 1776400938);
|
||
INSERT INTO `la_operation_log` VALUES (4, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.217', 1776400938);
|
||
INSERT INTO `la_operation_log` VALUES (5, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 12:42:18\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[29,58,25,2,83,34,86,97,76,31,63,71,47,22,13]}]},\"support\":[{\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[199,71,167,126,149,160,185]}]}}}', '120.239.179.217', 1776400938);
|
||
INSERT INTO `la_operation_log` VALUES (6, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?keyword=&channel=&create_time_start=&create_time_end=&page_size=15&export=1', '{\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\",\"page_size\":\"15\",\"export\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"count\":0,\"page_size\":15,\"sum_page\":1,\"max_page\":1666,\"all_max_size\":25000,\"page_start\":1,\"page_end\":1,\"file_name\":\"用户列表\"}}', '120.239.179.217', 1776400942);
|
||
INSERT INTO `la_operation_log` VALUES (7, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?page_no=1&page_size=15&keyword=&channel=&create_time_start=&create_time_end=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776400942);
|
||
INSERT INTO `la_operation_log` VALUES (8, 1, 'wisdom', 'wisdom', ' 获取充值设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/recharge.recharge/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"status\":0,\"min_amount\":0}}', '120.239.179.217', 1776400943);
|
||
INSERT INTO `la_operation_log` VALUES (9, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.217', 1776400944);
|
||
INSERT INTO `la_operation_log` VALUES (10, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":3,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":2,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2024-09-23 13:55:11\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776400944);
|
||
INSERT INTO `la_operation_log` VALUES (11, 1, 'wisdom', 'wisdom', ' 查看资讯分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/lists?page_no=1&page_size=15', '{\"page_no\":\"1\",\"page_size\":\"15\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"article_count\":1,\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"article_count\":1,\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"article_count\":1,\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776400944);
|
||
INSERT INTO `la_operation_log` VALUES (12, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776400945);
|
||
INSERT INTO `la_operation_log` VALUES (13, 1, 'wisdom', 'wisdom', ' 获取短信配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"type\":\"ali\",\"name\":\"阿里云短信\",\"status\":1},{\"type\":\"tencent\",\"name\":\"腾讯云短信\",\"status\":0}]}', '120.239.179.217', 1776400945);
|
||
INSERT INTO `la_operation_log` VALUES (14, 1, 'wisdom', 'wisdom', ' 获取用户设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.user.user/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"default_avatar\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/default_avatar.png\"}}', '120.239.179.217', 1776400999);
|
||
INSERT INTO `la_operation_log` VALUES (15, 1, 'wisdom', 'wisdom', ' 获取支付方式', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_way/getPayWay', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"1\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"pay_config_id\":1,\"scene\":1,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":2,\"pay_config_id\":2,\"scene\":1,\"is_default\":1,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"2\":[{\"pay_way_name\":\"余额支付\",\"id\":3,\"pay_config_id\":1,\"scene\":2,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":4,\"pay_config_id\":2,\"scene\":2,\"is_default\":1,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"3\":[{\"pay_way_name\":\"余额支付\",\"id\":5,\"pay_config_id\":1,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":6,\"pay_config_id\":2,\"scene\":3,\"is_default\":1,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"},{\"pay_way_name\":\"支付宝支付\",\"id\":7,\"pay_config_id\":3,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\"}]}}', '120.239.179.217', 1776401000);
|
||
INSERT INTO `la_operation_log` VALUES (16, 1, 'wisdom', 'wisdom', ' Json', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_config/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"name\":\"余额支付\",\"pay_way\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\",\"sort\":128},{\"pay_way_name\":\"微信支付\",\"id\":2,\"name\":\"微信支付\",\"pay_way\":2,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\",\"sort\":123},{\"pay_way_name\":\"支付宝支付\",\"id\":3,\"name\":\"支付宝支付\",\"pay_way\":3,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\",\"sort\":123}],\"count\":3,\"page_no\":1,\"page_size\":25,\"extend\":[]}}', '120.239.179.217', 1776401000);
|
||
INSERT INTO `la_operation_log` VALUES (17, 1, 'wisdom', 'wisdom', ' 获取用户设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.user.user/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"default_avatar\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/default_avatar.png\"}}', '120.239.179.217', 1776401049);
|
||
INSERT INTO `la_operation_log` VALUES (18, 1, 'wisdom', 'wisdom', ' 获取注册配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.user.user/getRegisterConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"login_way\":[\"1\",\"2\"],\"coerce_mobile\":1,\"login_agreement\":1,\"third_auth\":1,\"wechat_auth\":1,\"qq_auth\":0}}', '120.239.179.217', 1776401050);
|
||
INSERT INTO `la_operation_log` VALUES (19, 1, 'wisdom', 'wisdom', ' 获取支付方式', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_way/getPayWay', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"1\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"pay_config_id\":1,\"scene\":1,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":2,\"pay_config_id\":2,\"scene\":1,\"is_default\":1,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"2\":[{\"pay_way_name\":\"余额支付\",\"id\":3,\"pay_config_id\":1,\"scene\":2,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":4,\"pay_config_id\":2,\"scene\":2,\"is_default\":1,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"3\":[{\"pay_way_name\":\"余额支付\",\"id\":5,\"pay_config_id\":1,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":6,\"pay_config_id\":2,\"scene\":3,\"is_default\":1,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"},{\"pay_way_name\":\"支付宝支付\",\"id\":7,\"pay_config_id\":3,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\"}]}}', '120.239.179.217', 1776401056);
|
||
INSERT INTO `la_operation_log` VALUES (20, 1, 'wisdom', 'wisdom', ' Json', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_config/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"name\":\"余额支付\",\"pay_way\":1,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\",\"sort\":128},{\"pay_way_name\":\"微信支付\",\"id\":2,\"name\":\"微信支付\",\"pay_way\":2,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\",\"sort\":123},{\"pay_way_name\":\"支付宝支付\",\"id\":3,\"name\":\"支付宝支付\",\"pay_way\":3,\"icon\":\"http:\\/\\/server.anbo.dev.drawsnake.cn\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\",\"sort\":123}],\"count\":3,\"page_no\":1,\"page_size\":25,\"extend\":[]}}', '120.239.179.217', 1776401056);
|
||
INSERT INTO `la_operation_log` VALUES (21, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":1},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":0},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401058);
|
||
INSERT INTO `la_operation_log` VALUES (22, 1, 'wisdom', 'wisdom', ' 存储配置信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/detail?engine=aliyun', '{\"engine\":\"aliyun\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"bucket\":\"\",\"access_key\":\"\",\"secret_key\":\"\",\"domain\":\"\",\"status\":0}}', '120.239.179.217', 1776401061);
|
||
INSERT INTO `la_operation_log` VALUES (23, 1, 'wisdom', 'wisdom', ' 设置存储参数', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/setup', '{\"engine\":\"aliyun\",\"bucket\":\"anbo-file\",\"access_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"domain\":\"anbo-file.oss-cn-shanghai.aliyuncs.com\",\"region\":\"\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"配置成功\",\"data\":[]}', '120.239.179.217', 1776401147);
|
||
INSERT INTO `la_operation_log` VALUES (24, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":0},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":1},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401147);
|
||
INSERT INTO `la_operation_log` VALUES (25, 1, 'wisdom', 'wisdom', ' 获取热门搜索', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.hot_search/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"status\":0,\"data\":[]}}', '120.239.179.217', 1776401162);
|
||
INSERT INTO `la_operation_log` VALUES (26, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":0},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":1},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401166);
|
||
INSERT INTO `la_operation_log` VALUES (27, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?keyword=&channel=&create_time_start=&create_time_end=&page_size=15&export=1', '{\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\",\"page_size\":\"15\",\"export\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"count\":0,\"page_size\":15,\"sum_page\":1,\"max_page\":1666,\"all_max_size\":25000,\"page_start\":1,\"page_end\":1,\"file_name\":\"用户列表\"}}', '120.239.179.217', 1776401184);
|
||
INSERT INTO `la_operation_log` VALUES (28, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?page_no=1&page_size=15&keyword=&channel=&create_time_start=&create_time_end=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401184);
|
||
INSERT INTO `la_operation_log` VALUES (29, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.217', 1776401188);
|
||
INSERT INTO `la_operation_log` VALUES (30, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401188);
|
||
INSERT INTO `la_operation_log` VALUES (31, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=0&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"0\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401190);
|
||
INSERT INTO `la_operation_log` VALUES (32, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"0\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":1,\"cid\":\"0\",\"type\":10,\"name\":\"sdfsdfsdfsdfsdf.png\",\"uri\":\"anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/20260417124822a10078125.png\",\"url\":\"uploads\\/images\\/20260417\\/20260417124822a10078125.png\"}}', '120.239.179.217', 1776401302);
|
||
INSERT INTO `la_operation_log` VALUES (33, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=0&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"0\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":1,\"cid\":0,\"type\":10,\"name\":\"sdfsdfsdfsdfsdf.png\",\"uri\":\"uploads\\/images\\/20260417\\/20260417124822a10078125.png\",\"create_time\":\"2026-04-17 12:48:22\",\"url\":\"anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/20260417124822a10078125.png\"}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401302);
|
||
INSERT INTO `la_operation_log` VALUES (34, 1, 'wisdom', 'wisdom', ' Json', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_config/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"name\":\"余额支付\",\"pay_way\":1,\"icon\":\"anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\",\"sort\":128},{\"pay_way_name\":\"微信支付\",\"id\":2,\"name\":\"微信支付\",\"pay_way\":2,\"icon\":\"anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\",\"sort\":123},{\"pay_way_name\":\"支付宝支付\",\"id\":3,\"name\":\"支付宝支付\",\"pay_way\":3,\"icon\":\"anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\",\"sort\":123}],\"count\":3,\"page_no\":1,\"page_size\":25,\"extend\":[]}}', '120.239.179.217', 1776401337);
|
||
INSERT INTO `la_operation_log` VALUES (35, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":0},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":1},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401337);
|
||
INSERT INTO `la_operation_log` VALUES (36, 1, 'wisdom', 'wisdom', ' 存储配置信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/detail?engine=aliyun', '{\"engine\":\"aliyun\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"bucket\":\"anbo-file\",\"access_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"domain\":\"anbo-file.oss-cn-shanghai.aliyuncs.com\",\"status\":1}}', '120.239.179.217', 1776401341);
|
||
INSERT INTO `la_operation_log` VALUES (37, 1, 'wisdom', 'wisdom', ' 设置存储参数', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/setup', '{\"engine\":\"aliyun\",\"bucket\":\"anbo-file\",\"access_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"domain\":\"https:\\/\\/oss-cn-shanghai.aliyuncs.com\",\"region\":\"\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"配置成功\",\"data\":[]}', '120.239.179.217', 1776401348);
|
||
INSERT INTO `la_operation_log` VALUES (38, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":0},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":1},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401348);
|
||
INSERT INTO `la_operation_log` VALUES (39, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.217', 1776401352);
|
||
INSERT INTO `la_operation_log` VALUES (40, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":1,\"cid\":0,\"type\":10,\"name\":\"sdfsdfsdfsdfsdf.png\",\"uri\":\"uploads\\/images\\/20260417\\/20260417124822a10078125.png\",\"create_time\":\"2026-04-17 12:48:22\",\"url\":\"https:\\/\\/oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/20260417124822a10078125.png\"}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401352);
|
||
INSERT INTO `la_operation_log` VALUES (41, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":0,\"show\":1,\"msg\":\"AccessDenied: AccessDenied RequestId: 69E1BBD406B2B23435DAE004\",\"data\":[]}', '120.239.179.217', 1776401364);
|
||
INSERT INTO `la_operation_log` VALUES (42, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":1,\"cid\":0,\"type\":10,\"name\":\"sdfsdfsdfsdfsdf.png\",\"uri\":\"uploads\\/images\\/20260417\\/20260417124822a10078125.png\",\"create_time\":\"2026-04-17 12:48:22\",\"url\":\"https:\\/\\/oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/20260417124822a10078125.png\"}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401364);
|
||
INSERT INTO `la_operation_log` VALUES (43, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":0},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":1},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401394);
|
||
INSERT INTO `la_operation_log` VALUES (44, 1, 'wisdom', 'wisdom', ' 存储配置信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/detail?engine=aliyun', '{\"engine\":\"aliyun\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"bucket\":\"anbo-file\",\"access_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"domain\":\"https:\\/\\/oss-cn-shanghai.aliyuncs.com\",\"status\":1}}', '120.239.179.217', 1776401396);
|
||
INSERT INTO `la_operation_log` VALUES (45, 1, 'wisdom', 'wisdom', ' 设置存储参数', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/setup', '{\"engine\":\"aliyun\",\"bucket\":\"anbo-file\",\"access_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\",\"region\":\"\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"配置成功\",\"data\":[]}', '120.239.179.217', 1776401449);
|
||
INSERT INTO `la_operation_log` VALUES (46, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":0},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":1},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401449);
|
||
INSERT INTO `la_operation_log` VALUES (47, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.217', 1776401457);
|
||
INSERT INTO `la_operation_log` VALUES (48, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":1,\"cid\":0,\"type\":10,\"name\":\"sdfsdfsdfsdfsdf.png\",\"uri\":\"uploads\\/images\\/20260417\\/20260417124822a10078125.png\",\"create_time\":\"2026-04-17 12:48:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/20260417124822a10078125.png\"}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401457);
|
||
INSERT INTO `la_operation_log` VALUES (49, 1, 'wisdom', 'wisdom', ' 删除文件', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/delete', '{\"ids\":[\"1\"]}', '{\"code\":1,\"show\":1,\"msg\":\"删除成功\",\"data\":[]}', '120.239.179.217', 1776401461);
|
||
INSERT INTO `la_operation_log` VALUES (50, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401461);
|
||
INSERT INTO `la_operation_log` VALUES (51, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":2,\"cid\":\"\",\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"url\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}}', '120.239.179.217', 1776401478);
|
||
INSERT INTO `la_operation_log` VALUES (52, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401478);
|
||
INSERT INTO `la_operation_log` VALUES (53, 1, 'wisdom', 'wisdom', ' 获取用户设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.user.user/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"default_avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/default_avatar.png\"}}', '120.239.179.217', 1776401816);
|
||
INSERT INTO `la_operation_log` VALUES (54, 1, 'wisdom', 'wisdom', ' 获取支付方式', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_way/getPayWay', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"1\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"pay_config_id\":1,\"scene\":1,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":2,\"pay_config_id\":2,\"scene\":1,\"is_default\":1,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"2\":[{\"pay_way_name\":\"余额支付\",\"id\":3,\"pay_config_id\":1,\"scene\":2,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":4,\"pay_config_id\":2,\"scene\":2,\"is_default\":1,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"3\":[{\"pay_way_name\":\"余额支付\",\"id\":5,\"pay_config_id\":1,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":6,\"pay_config_id\":2,\"scene\":3,\"is_default\":1,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"},{\"pay_way_name\":\"支付宝支付\",\"id\":7,\"pay_config_id\":3,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\"}]}}', '120.239.179.217', 1776401817);
|
||
INSERT INTO `la_operation_log` VALUES (55, 1, 'wisdom', 'wisdom', ' Json', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_config/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"name\":\"余额支付\",\"pay_way\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\",\"sort\":128},{\"pay_way_name\":\"微信支付\",\"id\":2,\"name\":\"微信支付\",\"pay_way\":2,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\",\"sort\":123},{\"pay_way_name\":\"支付宝支付\",\"id\":3,\"name\":\"支付宝支付\",\"pay_way\":3,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\",\"sort\":123}],\"count\":3,\"page_no\":1,\"page_size\":25,\"extend\":[]}}', '120.239.179.217', 1776401817);
|
||
INSERT INTO `la_operation_log` VALUES (56, 1, 'wisdom', 'wisdom', ' 获取存储引擎列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.storage/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"name\":\"本地存储\",\"path\":\"存储在本地服务器\",\"engine\":\"local\",\"status\":0},{\"name\":\"七牛云存储\",\"path\":\"存储在七牛云,请前往七牛云开通存储服务\",\"engine\":\"qiniu\",\"status\":0},{\"name\":\"阿里云OSS\",\"path\":\"存储在阿里云,请前往阿里云开通存储服务\",\"engine\":\"aliyun\",\"status\":1},{\"name\":\"腾讯云COS\",\"path\":\"存储在腾讯云,请前往腾讯云开通存储服务\",\"engine\":\"qcloud\",\"status\":0}]}', '120.239.179.217', 1776401818);
|
||
INSERT INTO `la_operation_log` VALUES (57, 1, 'wisdom', 'wisdom', ' Json', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_config/lists', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"name\":\"余额支付\",\"pay_way\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\",\"sort\":128},{\"pay_way_name\":\"微信支付\",\"id\":2,\"name\":\"微信支付\",\"pay_way\":2,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\",\"sort\":123},{\"pay_way_name\":\"支付宝支付\",\"id\":3,\"name\":\"支付宝支付\",\"pay_way\":3,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\",\"sort\":123}],\"count\":3,\"page_no\":1,\"page_size\":25,\"extend\":[]}}', '120.239.179.217', 1776401818);
|
||
INSERT INTO `la_operation_log` VALUES (58, 1, 'wisdom', 'wisdom', ' 获取支付方式', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.pay.pay_way/getPayWay', '[]', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"1\":[{\"pay_way_name\":\"余额支付\",\"id\":1,\"pay_config_id\":1,\"scene\":1,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":2,\"pay_config_id\":2,\"scene\":1,\"is_default\":1,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"2\":[{\"pay_way_name\":\"余额支付\",\"id\":3,\"pay_config_id\":1,\"scene\":2,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":4,\"pay_config_id\":2,\"scene\":2,\"is_default\":1,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"}],\"3\":[{\"pay_way_name\":\"余额支付\",\"id\":5,\"pay_config_id\":1,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/balance_pay.png\"},{\"pay_way_name\":\"微信支付\",\"id\":6,\"pay_config_id\":2,\"scene\":3,\"is_default\":1,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/wechat_pay.png\"},{\"pay_way_name\":\"支付宝支付\",\"id\":7,\"pay_config_id\":3,\"scene\":3,\"is_default\":0,\"status\":1,\"icon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/ali_pay.png\"}]}}', '120.239.179.217', 1776401818);
|
||
INSERT INTO `la_operation_log` VALUES (59, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.217', 1776401866);
|
||
INSERT INTO `la_operation_log` VALUES (60, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.217', 1776401866);
|
||
INSERT INTO `la_operation_log` VALUES (61, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.217', 1776401867);
|
||
INSERT INTO `la_operation_log` VALUES (62, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 12:57:47\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[54,77,76,52,11,1,3,84,44,86,97,16,86,47,13]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[153,171,107,128,65,178,127]}]}}}', '120.239.179.217', 1776401867);
|
||
INSERT INTO `la_operation_log` VALUES (63, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401914);
|
||
INSERT INTO `la_operation_log` VALUES (64, 1, 'wisdom', 'wisdom', ' 获取短信配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"type\":\"ali\",\"name\":\"阿里云短信\",\"status\":1},{\"type\":\"tencent\",\"name\":\"腾讯云短信\",\"status\":0}]}', '120.239.179.217', 1776401915);
|
||
INSERT INTO `la_operation_log` VALUES (65, 1, 'wisdom', 'wisdom', ' 查看短信配置详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/detail?type=ali', '{\"type\":\"ali\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"sign\":\"\",\"app_key\":\"\",\"secret_key\":\"\",\"status\":1,\"name\":\"阿里云短信\"}}', '120.239.179.217', 1776401917);
|
||
INSERT INTO `la_operation_log` VALUES (66, 1, 'wisdom', 'wisdom', ' 短信配置', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/setConfig', '{\"name\":\"\\u963f\\u91cc\\u4e91\\u77ed\\u4fe1\",\"type\":\"ali\",\"sign\":\"SMS_333770830\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"操作成功\",\"data\":[]}', '120.239.179.217', 1776401939);
|
||
INSERT INTO `la_operation_log` VALUES (67, 1, 'wisdom', 'wisdom', ' 获取短信配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"SMS_333770830\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"},{\"type\":\"tencent\",\"name\":\"腾讯云短信\",\"status\":0}]}', '120.239.179.217', 1776401939);
|
||
INSERT INTO `la_operation_log` VALUES (68, 1, 'wisdom', 'wisdom', ' 查看短信配置详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/detail?type=ali', '{\"type\":\"ali\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"SMS_333770830\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":1}}', '120.239.179.217', 1776401942);
|
||
INSERT INTO `la_operation_log` VALUES (69, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776401978);
|
||
INSERT INTO `la_operation_log` VALUES (70, 1, 'wisdom', 'wisdom', ' 获取短信配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"SMS_333770830\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"},{\"type\":\"tencent\",\"name\":\"腾讯云短信\",\"status\":0}]}', '120.239.179.217', 1776401980);
|
||
INSERT INTO `la_operation_log` VALUES (71, 1, 'wisdom', 'wisdom', ' 查看短信配置详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/detail?type=ali', '{\"type\":\"ali\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"SMS_333770830\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":1}}', '120.239.179.217', 1776401982);
|
||
INSERT INTO `la_operation_log` VALUES (72, 1, 'wisdom', 'wisdom', ' 短信配置', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/setConfig', '{\"name\":\"\\u963f\\u91cc\\u4e91\\u77ed\\u4fe1\",\"type\":\"ali\",\"sign\":\"\\u4e0a\\u6d77\\u5b89\\u94c2\\u516c\\u5bd3\\u7ba1\\u7406\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"操作成功\",\"data\":[]}', '120.239.179.217', 1776402016);
|
||
INSERT INTO `la_operation_log` VALUES (73, 1, 'wisdom', 'wisdom', ' 获取短信配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"上海安铂公寓管理\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"},{\"type\":\"tencent\",\"name\":\"腾讯云短信\",\"status\":0}]}', '120.239.179.217', 1776402016);
|
||
INSERT INTO `la_operation_log` VALUES (74, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776402018);
|
||
INSERT INTO `la_operation_log` VALUES (75, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=2', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"2\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776402022);
|
||
INSERT INTO `la_operation_log` VALUES (76, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776402023);
|
||
INSERT INTO `la_operation_log` VALUES (77, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=2', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"2\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776402024);
|
||
INSERT INTO `la_operation_log` VALUES (78, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776402026);
|
||
INSERT INTO `la_operation_log` VALUES (79, 1, 'wisdom', 'wisdom', ' 查看通知设置详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":1,\"type\":\"验证码\",\"scene_id\":101,\"scene_name\":\"登录验证码\",\"scene_desc\":\"用户手机号码登录时发送\",\"system_notice\":{\"type\":\"system\",\"title\":\"\",\"content\":\"\",\"status\":\"0\",\"is_show\":false,\"tips\":[\"可选变量 验证码:code\"]},\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":true,\"tips\":[\"可选变量 验证码:code\",\"示例:您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"生效条件:1、管理后台完成短信设置。 2、第三方短信平台申请模板。\"]},\"oa_notice\":{\"type\":\"oa\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"first\":\"\",\"remark\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":false,\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]},\"mnp_notice\":{\"type\":\"mnp\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":false,\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]},\"support\":\"2\",\"default\":\"\"}}', '120.239.179.217', 1776402029);
|
||
INSERT INTO `la_operation_log` VALUES (80, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.217', 1776402038);
|
||
INSERT INTO `la_operation_log` VALUES (81, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403646);
|
||
INSERT INTO `la_operation_log` VALUES (82, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403646);
|
||
INSERT INTO `la_operation_log` VALUES (83, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403646);
|
||
INSERT INTO `la_operation_log` VALUES (84, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403646);
|
||
INSERT INTO `la_operation_log` VALUES (85, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403651);
|
||
INSERT INTO `la_operation_log` VALUES (86, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403651);
|
||
INSERT INTO `la_operation_log` VALUES (87, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403652);
|
||
INSERT INTO `la_operation_log` VALUES (88, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403652);
|
||
INSERT INTO `la_operation_log` VALUES (89, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403652);
|
||
INSERT INTO `la_operation_log` VALUES (90, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403652);
|
||
INSERT INTO `la_operation_log` VALUES (91, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403653);
|
||
INSERT INTO `la_operation_log` VALUES (92, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403653);
|
||
INSERT INTO `la_operation_log` VALUES (93, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403666);
|
||
INSERT INTO `la_operation_log` VALUES (94, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403666);
|
||
INSERT INTO `la_operation_log` VALUES (95, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403669);
|
||
INSERT INTO `la_operation_log` VALUES (96, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403669);
|
||
INSERT INTO `la_operation_log` VALUES (97, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"06198d1f9ad70839eacf41168a935c1b\"}}', '39.107.255.148', 1776403674);
|
||
INSERT INTO `la_operation_log` VALUES (98, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '39.107.255.148', 1776403674);
|
||
INSERT INTO `la_operation_log` VALUES (99, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 13:27:54\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[42,51,17,32,56,90,68,73,55,94,70,18,93,35,61]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[188,75,97,142,161,51,186]}]}}}', '39.107.255.148', 1776403674);
|
||
INSERT INTO `la_operation_log` VALUES (100, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403754);
|
||
INSERT INTO `la_operation_log` VALUES (101, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '39.107.255.148', 1776403754);
|
||
INSERT INTO `la_operation_log` VALUES (102, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '39.107.255.148', 1776403754);
|
||
INSERT INTO `la_operation_log` VALUES (103, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 13:29:15\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[54,9,94,11,31,100,17,14,32,91,35,16,50,78,41]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[138,40,156,123,138,99,33]}]}}}', '39.107.255.148', 1776403755);
|
||
INSERT INTO `la_operation_log` VALUES (104, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404390);
|
||
INSERT INTO `la_operation_log` VALUES (105, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":-1,\"show\":1,\"msg\":\"ip地址发生变化,请重新登录\",\"data\":[]}', '127.0.0.1', 1776404390);
|
||
INSERT INTO `la_operation_log` VALUES (106, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404390);
|
||
INSERT INTO `la_operation_log` VALUES (107, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404390);
|
||
INSERT INTO `la_operation_log` VALUES (108, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404391);
|
||
INSERT INTO `la_operation_log` VALUES (109, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"06198d1f9ad70839eacf41168a935c1b\"}}', '127.0.0.1', 1776404396);
|
||
INSERT INTO `la_operation_log` VALUES (110, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776404396);
|
||
INSERT INTO `la_operation_log` VALUES (111, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404432);
|
||
INSERT INTO `la_operation_log` VALUES (112, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404432);
|
||
INSERT INTO `la_operation_log` VALUES (113, 1, 'wisdom', 'wisdom', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"06198d1f9ad70839eacf41168a935c1b\"}}', '127.0.0.1', 1776404435);
|
||
INSERT INTO `la_operation_log` VALUES (114, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776404435);
|
||
INSERT INTO `la_operation_log` VALUES (115, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 13:40:35\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[7,100,40,84,68,53,93,6,44,93,21,26,70,53,67]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[76,133,103,69,138,140,168]}]}}}', '127.0.0.1', 1776404435);
|
||
INSERT INTO `la_operation_log` VALUES (116, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404446);
|
||
INSERT INTO `la_operation_log` VALUES (117, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776404446);
|
||
INSERT INTO `la_operation_log` VALUES (118, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404447);
|
||
INSERT INTO `la_operation_log` VALUES (119, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404450);
|
||
INSERT INTO `la_operation_log` VALUES (120, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776404450);
|
||
INSERT INTO `la_operation_log` VALUES (121, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404450);
|
||
INSERT INTO `la_operation_log` VALUES (122, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404452);
|
||
INSERT INTO `la_operation_log` VALUES (123, 1, 'wisdom', 'wisdom', ' 退出登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/logout', '[]', '{\"code\":1,\"show\":0,\"msg\":\"success\",\"data\":[]}', '127.0.0.1', 1776404458);
|
||
INSERT INTO `la_operation_log` VALUES (124, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404463);
|
||
INSERT INTO `la_operation_log` VALUES (125, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404463);
|
||
INSERT INTO `la_operation_log` VALUES (126, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404492);
|
||
INSERT INTO `la_operation_log` VALUES (127, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776404492);
|
||
INSERT INTO `la_operation_log` VALUES (128, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"06198d1f9ad70839eacf41168a935c1b\"}}', '127.0.0.1', 1776404496);
|
||
INSERT INTO `la_operation_log` VALUES (129, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776404496);
|
||
INSERT INTO `la_operation_log` VALUES (130, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 13:41:36\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[89,77,80,84,11,36,81,83,21,87,62,70,95,18,60]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[132,59,153,76,132,118,188]}]}}}', '127.0.0.1', 1776404496);
|
||
INSERT INTO `la_operation_log` VALUES (131, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?keyword=&channel=&create_time_start=&create_time_end=&page_size=15&export=1', '{\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\",\"page_size\":\"15\",\"export\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"count\":0,\"page_size\":15,\"sum_page\":1,\"max_page\":1666,\"all_max_size\":25000,\"page_start\":1,\"page_end\":1,\"file_name\":\"用户列表\"}}', '127.0.0.1', 1776404498);
|
||
INSERT INTO `la_operation_log` VALUES (132, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?page_no=1&page_size=15&keyword=&channel=&create_time_start=&create_time_end=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776404498);
|
||
INSERT INTO `la_operation_log` VALUES (133, 1, 'wisdom', 'wisdom', ' 获取充值设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/recharge.recharge/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"status\":0,\"min_amount\":0}}', '127.0.0.1', 1776404500);
|
||
INSERT INTO `la_operation_log` VALUES (134, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '127.0.0.1', 1776404502);
|
||
INSERT INTO `la_operation_log` VALUES (135, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":3,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":2,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2024-09-23 13:55:11\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776404502);
|
||
INSERT INTO `la_operation_log` VALUES (136, 1, 'wisdom', 'wisdom', ' 查看资讯分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/lists?page_no=1&page_size=15', '{\"page_no\":\"1\",\"page_size\":\"15\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"article_count\":1,\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"article_count\":1,\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"article_count\":1,\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776404503);
|
||
INSERT INTO `la_operation_log` VALUES (137, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405406);
|
||
INSERT INTO `la_operation_log` VALUES (138, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405406);
|
||
INSERT INTO `la_operation_log` VALUES (139, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405410);
|
||
INSERT INTO `la_operation_log` VALUES (140, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405410);
|
||
INSERT INTO `la_operation_log` VALUES (141, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405419);
|
||
INSERT INTO `la_operation_log` VALUES (142, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405419);
|
||
INSERT INTO `la_operation_log` VALUES (143, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"06198d1f9ad70839eacf41168a935c1b\"}}', '127.0.0.1', 1776405423);
|
||
INSERT INTO `la_operation_log` VALUES (144, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776405423);
|
||
INSERT INTO `la_operation_log` VALUES (145, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405426);
|
||
INSERT INTO `la_operation_log` VALUES (146, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776405426);
|
||
INSERT INTO `la_operation_log` VALUES (147, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405426);
|
||
INSERT INTO `la_operation_log` VALUES (148, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405429);
|
||
INSERT INTO `la_operation_log` VALUES (149, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776405429);
|
||
INSERT INTO `la_operation_log` VALUES (150, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405429);
|
||
INSERT INTO `la_operation_log` VALUES (151, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405435);
|
||
INSERT INTO `la_operation_log` VALUES (152, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776405435);
|
||
INSERT INTO `la_operation_log` VALUES (153, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405435);
|
||
INSERT INTO `la_operation_log` VALUES (154, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 13:57:16\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[97,99,15,92,41,34,30,25,26,31,22,20,19,24,85]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[186,105,47,73,42,194,105]}]}}}', '127.0.0.1', 1776405436);
|
||
INSERT INTO `la_operation_log` VALUES (155, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?keyword=&channel=&create_time_start=&create_time_end=&page_size=15&export=1', '{\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\",\"page_size\":\"15\",\"export\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"count\":0,\"page_size\":15,\"sum_page\":1,\"max_page\":1666,\"all_max_size\":25000,\"page_start\":1,\"page_end\":1,\"file_name\":\"用户列表\"}}', '127.0.0.1', 1776405443);
|
||
INSERT INTO `la_operation_log` VALUES (156, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?page_no=1&page_size=15&keyword=&channel=&create_time_start=&create_time_end=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776405443);
|
||
INSERT INTO `la_operation_log` VALUES (157, 1, 'wisdom', 'wisdom', ' 获取充值设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/recharge.recharge/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"status\":0,\"min_amount\":0}}', '127.0.0.1', 1776405445);
|
||
INSERT INTO `la_operation_log` VALUES (158, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '127.0.0.1', 1776405446);
|
||
INSERT INTO `la_operation_log` VALUES (159, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":3,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":2,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2024-09-23 13:55:11\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776405446);
|
||
INSERT INTO `la_operation_log` VALUES (160, 1, 'wisdom', 'wisdom', ' 查看资讯分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/lists?page_no=1&page_size=15', '{\"page_no\":\"1\",\"page_size\":\"15\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"article_count\":1,\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"article_count\":1,\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"article_count\":1,\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776405447);
|
||
INSERT INTO `la_operation_log` VALUES (161, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405471);
|
||
INSERT INTO `la_operation_log` VALUES (162, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405471);
|
||
INSERT INTO `la_operation_log` VALUES (163, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"06198d1f9ad70839eacf41168a935c1b\"}}', '127.0.0.1', 1776405475);
|
||
INSERT INTO `la_operation_log` VALUES (164, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776405475);
|
||
INSERT INTO `la_operation_log` VALUES (165, 1, 'wisdom', 'wisdom', ' 查看资讯分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/lists?page_no=1&page_size=15', '{\"page_no\":\"1\",\"page_size\":\"15\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"article_count\":1,\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"article_count\":1,\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"article_count\":1,\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776405475);
|
||
INSERT INTO `la_operation_log` VALUES (166, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405478);
|
||
INSERT INTO `la_operation_log` VALUES (167, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405478);
|
||
INSERT INTO `la_operation_log` VALUES (168, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 13:58:02\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[32,22,23,82,53,35,10,65,71,49,12,74,31,62,5]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[75,47,59,163,110,139,133]}]}}}', '127.0.0.1', 1776405482);
|
||
INSERT INTO `la_operation_log` VALUES (169, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405497);
|
||
INSERT INTO `la_operation_log` VALUES (170, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405497);
|
||
INSERT INTO `la_operation_log` VALUES (171, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405504);
|
||
INSERT INTO `la_operation_log` VALUES (172, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776405504);
|
||
INSERT INTO `la_operation_log` VALUES (173, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776406021);
|
||
INSERT INTO `la_operation_log` VALUES (174, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776406021);
|
||
INSERT INTO `la_operation_log` VALUES (175, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776406749);
|
||
INSERT INTO `la_operation_log` VALUES (176, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776406749);
|
||
INSERT INTO `la_operation_log` VALUES (177, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776406749);
|
||
INSERT INTO `la_operation_log` VALUES (178, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"likeadmin\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-17 14:19:09\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\",\"04\\/04\",\"04\\/03\"],\"list\":[{\"name\":\"访客数\",\"data\":[34,84,23,67,52,14,73,82,56,28,3,81,2,2,46]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"销售量\",\"data\":[185,170,56,188,104,147,100]}]}}}', '127.0.0.1', 1776406749);
|
||
INSERT INTO `la_operation_log` VALUES (179, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776407152);
|
||
INSERT INTO `la_operation_log` VALUES (180, 1, 'wisdom', 'wisdom', ' 获取短信配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"上海安铂公寓管理\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"},{\"type\":\"tencent\",\"name\":\"腾讯云短信\",\"status\":0}]}', '127.0.0.1', 1776407153);
|
||
INSERT INTO `la_operation_log` VALUES (181, 1, 'wisdom', 'wisdom', ' 查看短信配置详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/detail?type=ali', '{\"type\":\"ali\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"上海安铂公寓管理\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":1}}', '127.0.0.1', 1776407155);
|
||
INSERT INTO `la_operation_log` VALUES (182, 1, 'wisdom', 'wisdom', ' 短信配置', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/setConfig', '{\"name\":\"\\u963f\\u91cc\\u4e91\\u77ed\\u4fe1\",\"type\":\"ali\",\"sign\":\"\\u5b89\\u94c2\\u516c\\u5bd3\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"操作成功\",\"data\":[]}', '127.0.0.1', 1776407157);
|
||
INSERT INTO `la_operation_log` VALUES (183, 1, 'wisdom', 'wisdom', ' 获取短信配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.sms_config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"name\":\"阿里云短信\",\"type\":\"ali\",\"sign\":\"安铂公寓\",\"app_key\":\"LTAI5tHGuxeTfkLq4cAVBXZx\",\"app_id\":\"\",\"secret_key\":\"rOwgfAeDfLv0MzQvan3FSqTRm721CQ\",\"secret_id\":\"\",\"status\":\"1\"},{\"type\":\"tencent\",\"name\":\"腾讯云短信\",\"status\":0}]}', '127.0.0.1', 1776407157);
|
||
INSERT INTO `la_operation_log` VALUES (184, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776407158);
|
||
INSERT INTO `la_operation_log` VALUES (185, 1, 'wisdom', 'wisdom', ' 查看通知设置详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":1,\"type\":\"验证码\",\"scene_id\":101,\"scene_name\":\"登录验证码\",\"scene_desc\":\"用户手机号码登录时发送\",\"system_notice\":{\"type\":\"system\",\"title\":\"\",\"content\":\"\",\"status\":\"0\",\"is_show\":false,\"tips\":[\"可选变量 验证码:code\"]},\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":true,\"tips\":[\"可选变量 验证码:code\",\"示例:您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"生效条件:1、管理后台完成短信设置。 2、第三方短信平台申请模板。\"]},\"oa_notice\":{\"type\":\"oa\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"first\":\"\",\"remark\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":false,\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]},\"mnp_notice\":{\"type\":\"mnp\",\"template_id\":\"\",\"template_sn\":\"\",\"name\":\"\",\"tpl\":[],\"status\":\"0\",\"is_show\":false,\"tips\":[\"可选变量 验证码:code\",\"配置路径:小程序后台 > 功能 > 订阅消息\"]},\"support\":\"2\",\"default\":\"\"}}', '127.0.0.1', 1776407163);
|
||
INSERT INTO `la_operation_log` VALUES (186, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776407165);
|
||
INSERT INTO `la_operation_log` VALUES (187, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=2', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"2\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776407166);
|
||
INSERT INTO `la_operation_log` VALUES (188, 1, 'wisdom', 'wisdom', ' 查看通知设置列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/notice.notice/settingLists?page_no=1&page_size=15&recipient=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"recipient\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":1,\"scene_name\":\"登录验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在登录,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":2,\"scene_name\":\"绑定手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在绑定手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":3,\"scene_name\":\"变更手机验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在变更手机号,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2},{\"sms_status_desc\":\"启用\",\"type_desc\":\"验证码\",\"id\":4,\"scene_name\":\"找回登录密码验证码\",\"sms_notice\":{\"type\":\"sms\",\"template_id\":\"SMS_123456\",\"content\":\"您正在找回登录密码,验证码${code},切勿将验证码泄露于他人,本条验证码有效期5分钟。\",\"status\":\"1\",\"is_show\":\"1\"},\"type\":2}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776407166);
|
||
INSERT INTO `la_operation_log` VALUES (189, 1, 'wisdom', 'wisdom', ' 获取网站信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getWebsite', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"shop_name\":\"likeadmin\",\"shop_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/shop_logo.png\",\"pc_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/pc_logo.png\",\"pc_title\":\"\",\"pc_ico\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"pc_desc\":\"\",\"pc_keywords\":\"\",\"h5_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\"}}', '127.0.0.1', 1776407466);
|
||
INSERT INTO `la_operation_log` VALUES (190, 1, 'wisdom', 'wisdom', ' 获取备案信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getCopyright', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[]}', '127.0.0.1', 1776407473);
|
||
INSERT INTO `la_operation_log` VALUES (191, 1, 'wisdom', 'wisdom', ' 获取政策协议', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getAgreement', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"service_title\":null,\"service_content\":null,\"privacy_title\":null,\"privacy_content\":null}}', '127.0.0.1', 1776407475);
|
||
INSERT INTO `la_operation_log` VALUES (192, 1, 'wisdom', 'wisdom', ' 获取站点统计配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getSiteStatistics', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"clarity_code\":null}}', '127.0.0.1', 1776407475);
|
||
INSERT INTO `la_operation_log` VALUES (193, 1, 'wisdom', 'wisdom', ' 获取用户设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.user.user/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"default_avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/default_avatar.png\"}}', '127.0.0.1', 1776407482);
|
||
INSERT INTO `la_operation_log` VALUES (194, 1, 'wisdom', 'wisdom', ' 获取注册配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.user.user/getRegisterConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"login_way\":[\"1\",\"2\"],\"coerce_mobile\":1,\"login_agreement\":1,\"third_auth\":1,\"wechat_auth\":1,\"qq_auth\":0}}', '127.0.0.1', 1776407482);
|
||
INSERT INTO `la_operation_log` VALUES (195, 1, 'wisdom', 'wisdom', ' 获取网站信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getWebsite', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"shop_name\":\"likeadmin\",\"shop_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/shop_logo.png\",\"pc_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/pc_logo.png\",\"pc_title\":\"\",\"pc_ico\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"pc_desc\":\"\",\"pc_keywords\":\"\",\"h5_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\"}}', '127.0.0.1', 1776407486);
|
||
INSERT INTO `la_operation_log` VALUES (196, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776407774);
|
||
INSERT INTO `la_operation_log` VALUES (197, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776407774);
|
||
INSERT INTO `la_operation_log` VALUES (198, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776407775);
|
||
INSERT INTO `la_operation_log` VALUES (199, 1, 'wisdom', 'wisdom', ' 获取网站信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getWebsite', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"likeadmin\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"shop_name\":\"likeadmin\",\"shop_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/shop_logo.png\",\"pc_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/pc_logo.png\",\"pc_title\":\"\",\"pc_ico\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"pc_desc\":\"\",\"pc_keywords\":\"\",\"h5_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\"}}', '127.0.0.1', 1776407775);
|
||
INSERT INTO `la_operation_log` VALUES (200, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776407808);
|
||
INSERT INTO `la_operation_log` VALUES (201, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776407808);
|
||
INSERT INTO `la_operation_log` VALUES (202, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776407808);
|
||
INSERT INTO `la_operation_log` VALUES (203, 1, 'wisdom', 'wisdom', ' 获取网站信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getWebsite', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"shop_name\":\"安铂公寓\",\"shop_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/shop_logo.png\",\"pc_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/pc_logo.png\",\"pc_title\":\"安铂公寓\",\"pc_ico\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"pc_desc\":\"安铂公寓管理系统\",\"pc_keywords\":\"安铂公寓,公寓管理,智慧公寓\",\"h5_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\"}}', '127.0.0.1', 1776407809);
|
||
INSERT INTO `la_operation_log` VALUES (204, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776414807);
|
||
INSERT INTO `la_operation_log` VALUES (205, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776414807);
|
||
INSERT INTO `la_operation_log` VALUES (206, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776414947);
|
||
INSERT INTO `la_operation_log` VALUES (207, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776414947);
|
||
INSERT INTO `la_operation_log` VALUES (208, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776414958);
|
||
INSERT INTO `la_operation_log` VALUES (209, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776414958);
|
||
INSERT INTO `la_operation_log` VALUES (210, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776425438);
|
||
INSERT INTO `la_operation_log` VALUES (211, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776425438);
|
||
INSERT INTO `la_operation_log` VALUES (212, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776425659);
|
||
INSERT INTO `la_operation_log` VALUES (213, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776425659);
|
||
INSERT INTO `la_operation_log` VALUES (214, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776429043);
|
||
INSERT INTO `la_operation_log` VALUES (215, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776429044);
|
||
INSERT INTO `la_operation_log` VALUES (216, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776429347);
|
||
INSERT INTO `la_operation_log` VALUES (217, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776429347);
|
||
INSERT INTO `la_operation_log` VALUES (218, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776429879);
|
||
INSERT INTO `la_operation_log` VALUES (219, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776429879);
|
||
INSERT INTO `la_operation_log` VALUES (220, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776550124);
|
||
INSERT INTO `la_operation_log` VALUES (221, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776550124);
|
||
INSERT INTO `la_operation_log` VALUES (222, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612095);
|
||
INSERT INTO `la_operation_log` VALUES (223, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612095);
|
||
INSERT INTO `la_operation_log` VALUES (224, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612096);
|
||
INSERT INTO `la_operation_log` VALUES (225, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612096);
|
||
INSERT INTO `la_operation_log` VALUES (226, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"admin\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":0,\"show\":1,\"msg\":\"账号不存在\",\"data\":[]}', '127.0.0.1', 1776612100);
|
||
INSERT INTO `la_operation_log` VALUES (227, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612138);
|
||
INSERT INTO `la_operation_log` VALUES (228, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612138);
|
||
INSERT INTO `la_operation_log` VALUES (229, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612138);
|
||
INSERT INTO `la_operation_log` VALUES (230, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"b68cfac078f6954575de7706b75d2ef6\"}}', '127.0.0.1', 1776612147);
|
||
INSERT INTO `la_operation_log` VALUES (231, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776612147);
|
||
INSERT INTO `la_operation_log` VALUES (232, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612151);
|
||
INSERT INTO `la_operation_log` VALUES (233, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776612151);
|
||
INSERT INTO `la_operation_log` VALUES (234, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612151);
|
||
INSERT INTO `la_operation_log` VALUES (235, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612152);
|
||
INSERT INTO `la_operation_log` VALUES (236, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612156);
|
||
INSERT INTO `la_operation_log` VALUES (237, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776612156);
|
||
INSERT INTO `la_operation_log` VALUES (238, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612156);
|
||
INSERT INTO `la_operation_log` VALUES (239, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612162);
|
||
INSERT INTO `la_operation_log` VALUES (240, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612173);
|
||
INSERT INTO `la_operation_log` VALUES (241, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776612173);
|
||
INSERT INTO `la_operation_log` VALUES (242, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"b68cfac078f6954575de7706b75d2ef6\"}}', '127.0.0.1', 1776612182);
|
||
INSERT INTO `la_operation_log` VALUES (243, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1776612182);
|
||
INSERT INTO `la_operation_log` VALUES (244, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-19 23:23:03\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\",\"04\\/10\",\"04\\/09\",\"04\\/08\",\"04\\/07\",\"04\\/06\",\"04\\/05\"],\"list\":[{\"name\":\"访客数\",\"data\":[22,57,96,88,21,35,6,5,81,30,75,3,48,17,18]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\"],\"list\":[{\"name\":\"销售量\",\"data\":[58,147,198,58,49,190,81]}]}}}', '127.0.0.1', 1776612183);
|
||
INSERT INTO `la_operation_log` VALUES (245, 1, 'wisdom', 'wisdom', ' 用户余额变动类型', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/getUmChangeType', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"100\":\"平台减少余额\",\"200\":\"平台增加余额\",\"201\":\"充值增加余额\",\"101\":\"充值订单退款减少余额\"}}', '127.0.0.1', 1776612185);
|
||
INSERT INTO `la_operation_log` VALUES (246, 1, 'wisdom', 'wisdom', ' 账户流水明细', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/lists?page_no=1&page_size=15&user_info=&change_type=&start_time=&end_time=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"user_info\":\"\",\"change_type\":\"\",\"start_time\":\"\",\"end_time\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1776612185);
|
||
INSERT INTO `la_operation_log` VALUES (247, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1776612187);
|
||
INSERT INTO `la_operation_log` VALUES (248, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1776612187);
|
||
INSERT INTO `la_operation_log` VALUES (249, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1776612187);
|
||
INSERT INTO `la_operation_log` VALUES (250, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":1,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"},{\"id\":2,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"},{\"id\":3,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"}]}}', '127.0.0.1', 1776612188);
|
||
INSERT INTO `la_operation_log` VALUES (251, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=5', '{\"id\":\"5\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":5,\"type\":5,\"name\":\"系统风格\",\"data\":\"{\\\"themeColorId\\\":3,\\\"topTextColor\\\":\\\"white\\\",\\\"navigationBarColor\\\":\\\"#A74BFD\\\",\\\"themeColor1\\\":\\\"#A74BFD\\\",\\\"themeColor2\\\":\\\"#CB60FF\\\",\\\"buttonColor\\\":\\\"white\\\"}\",\"meta\":\"\",\"create_time\":\"2024-03-14 18:08:35\",\"update_time\":\"2024-03-21 11:06:55\"}}', '127.0.0.1', 1776612189);
|
||
INSERT INTO `la_operation_log` VALUES (252, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1776612191);
|
||
INSERT INTO `la_operation_log` VALUES (253, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1776612191);
|
||
INSERT INTO `la_operation_log` VALUES (254, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":1,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"},{\"id\":2,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"},{\"id\":3,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"}]}}', '127.0.0.1', 1776612194);
|
||
INSERT INTO `la_operation_log` VALUES (255, 1, 'wisdom', 'wisdom', ' 底部导航保存', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/save', '{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":\"1\",\"name\":\"\\u9996\\u9875\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"\\u5546\\u57ce\\u9996\\u9875\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"},{\"id\":\"2\",\"name\":\"\\u8d44\\u8baf2\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"\\u6587\\u7ae0\\u8d44\\u8baf\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":\"1\",\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"},{\"id\":\"3\",\"name\":\"\\u6211\\u7684\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"\\u4e2a\\u4eba\\u4e2d\\u5fc3\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":\"1\",\"create_time\":\"2022-09-09 09:49:17\",\"update_time\":\"2022-09-09 09:49:17\"}]}', '{\"code\":1,\"show\":1,\"msg\":\"操作成功\",\"data\":[]}', '127.0.0.1', 1776612203);
|
||
INSERT INTO `la_operation_log` VALUES (256, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":4,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:23:23\",\"update_time\":\"2026-04-19 23:23:23\"},{\"id\":5,\"name\":\"资讯2\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:23:23\",\"update_time\":\"2026-04-19 23:23:23\"},{\"id\":6,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:23:23\",\"update_time\":\"2026-04-19 23:23:23\"}]}}', '127.0.0.1', 1776612203);
|
||
INSERT INTO `la_operation_log` VALUES (257, 1, 'wisdom', 'wisdom', ' 底部导航保存', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/save', '{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":\"4\",\"name\":\"\\u9996\\u9875\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"\\u5546\\u57ce\\u9996\\u9875\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-19 23:23:23\",\"update_time\":\"2026-04-19 23:23:23\"},{\"id\":\"5\",\"name\":\"\\u8d44\\u8baf\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"\\u6587\\u7ae0\\u8d44\\u8baf\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":\"1\",\"create_time\":\"2026-04-19 23:23:23\",\"update_time\":\"2026-04-19 23:23:23\"},{\"id\":\"6\",\"name\":\"\\u6211\\u7684\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"\\u4e2a\\u4eba\\u4e2d\\u5fc3\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":\"1\",\"create_time\":\"2026-04-19 23:23:23\",\"update_time\":\"2026-04-19 23:23:23\"}]}', '{\"code\":1,\"show\":1,\"msg\":\"操作成功\",\"data\":[]}', '127.0.0.1', 1776612310);
|
||
INSERT INTO `la_operation_log` VALUES (258, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1776612310);
|
||
INSERT INTO `la_operation_log` VALUES (259, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776617410);
|
||
INSERT INTO `la_operation_log` VALUES (260, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776693508);
|
||
INSERT INTO `la_operation_log` VALUES (261, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776693508);
|
||
INSERT INTO `la_operation_log` VALUES (262, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776693516);
|
||
INSERT INTO `la_operation_log` VALUES (263, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776693516);
|
||
INSERT INTO `la_operation_log` VALUES (264, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776701298);
|
||
INSERT INTO `la_operation_log` VALUES (265, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776701298);
|
||
INSERT INTO `la_operation_log` VALUES (266, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776711133);
|
||
INSERT INTO `la_operation_log` VALUES (267, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776711133);
|
||
INSERT INTO `la_operation_log` VALUES (268, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776712055);
|
||
INSERT INTO `la_operation_log` VALUES (269, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776712055);
|
||
INSERT INTO `la_operation_log` VALUES (270, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776712061);
|
||
INSERT INTO `la_operation_log` VALUES (271, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776712062);
|
||
INSERT INTO `la_operation_log` VALUES (272, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776780368);
|
||
INSERT INTO `la_operation_log` VALUES (273, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776780368);
|
||
INSERT INTO `la_operation_log` VALUES (274, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776811766);
|
||
INSERT INTO `la_operation_log` VALUES (275, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776811766);
|
||
INSERT INTO `la_operation_log` VALUES (276, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776811773);
|
||
INSERT INTO `la_operation_log` VALUES (277, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776811773);
|
||
INSERT INTO `la_operation_log` VALUES (278, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776837970);
|
||
INSERT INTO `la_operation_log` VALUES (279, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776837983);
|
||
INSERT INTO `la_operation_log` VALUES (280, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776844066);
|
||
INSERT INTO `la_operation_log` VALUES (281, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776844066);
|
||
INSERT INTO `la_operation_log` VALUES (282, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776876825);
|
||
INSERT INTO `la_operation_log` VALUES (283, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776876825);
|
||
INSERT INTO `la_operation_log` VALUES (284, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776876833);
|
||
INSERT INTO `la_operation_log` VALUES (285, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776876833);
|
||
INSERT INTO `la_operation_log` VALUES (286, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776893132);
|
||
INSERT INTO `la_operation_log` VALUES (287, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776893133);
|
||
INSERT INTO `la_operation_log` VALUES (288, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776942292);
|
||
INSERT INTO `la_operation_log` VALUES (289, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776942292);
|
||
INSERT INTO `la_operation_log` VALUES (290, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776942300);
|
||
INSERT INTO `la_operation_log` VALUES (291, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1776942300);
|
||
INSERT INTO `la_operation_log` VALUES (292, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777088856);
|
||
INSERT INTO `la_operation_log` VALUES (293, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777088856);
|
||
INSERT INTO `la_operation_log` VALUES (294, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777088859);
|
||
INSERT INTO `la_operation_log` VALUES (295, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777088859);
|
||
INSERT INTO `la_operation_log` VALUES (296, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"admin\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":0,\"show\":1,\"msg\":\"账号不存在\",\"data\":[]}', '127.0.0.1', 1777088869);
|
||
INSERT INTO `la_operation_log` VALUES (297, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"b21757ea704b6b173db9ff39f6467b7e\"}}', '127.0.0.1', 1777088927);
|
||
INSERT INTO `la_operation_log` VALUES (298, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777088927);
|
||
INSERT INTO `la_operation_log` VALUES (299, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"b21757ea704b6b173db9ff39f6467b7e\"}}', '127.0.0.1', 1777088948);
|
||
INSERT INTO `la_operation_log` VALUES (300, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777088948);
|
||
INSERT INTO `la_operation_log` VALUES (301, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-25 11:49:08\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"访客数\",\"data\":[75,96,36,32,79,6,46,11,16,10,17,98,24,7,66]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\"],\"list\":[{\"name\":\"销售量\",\"data\":[113,80,158,98,144,189,166]}]}}}', '127.0.0.1', 1777088948);
|
||
INSERT INTO `la_operation_log` VALUES (302, 1, 'wisdom', 'wisdom', ' 用户余额变动类型', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/getUmChangeType', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"100\":\"平台减少余额\",\"200\":\"平台增加余额\",\"201\":\"充值增加余额\",\"101\":\"充值订单退款减少余额\"}}', '127.0.0.1', 1777088958);
|
||
INSERT INTO `la_operation_log` VALUES (303, 1, 'wisdom', 'wisdom', ' 账户流水明细', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/lists?page_no=1&page_size=15&user_info=&change_type=&start_time=&end_time=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"user_info\":\"\",\"change_type\":\"\",\"start_time\":\"\",\"end_time\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777088958);
|
||
INSERT INTO `la_operation_log` VALUES (304, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1777088961);
|
||
INSERT INTO `la_operation_log` VALUES (305, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777088961);
|
||
INSERT INTO `la_operation_log` VALUES (306, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777088961);
|
||
INSERT INTO `la_operation_log` VALUES (307, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777088962);
|
||
INSERT INTO `la_operation_log` VALUES (308, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1777088963);
|
||
INSERT INTO `la_operation_log` VALUES (309, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777088963);
|
||
INSERT INTO `la_operation_log` VALUES (310, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777088963);
|
||
INSERT INTO `la_operation_log` VALUES (311, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777088971);
|
||
INSERT INTO `la_operation_log` VALUES (312, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=5', '{\"id\":\"5\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":5,\"type\":5,\"name\":\"系统风格\",\"data\":\"{\\\"themeColorId\\\":3,\\\"topTextColor\\\":\\\"white\\\",\\\"navigationBarColor\\\":\\\"#A74BFD\\\",\\\"themeColor1\\\":\\\"#A74BFD\\\",\\\"themeColor2\\\":\\\"#CB60FF\\\",\\\"buttonColor\\\":\\\"white\\\"}\",\"meta\":\"\",\"create_time\":\"2024-03-14 18:08:35\",\"update_time\":\"2024-03-21 11:06:55\"}}', '127.0.0.1', 1777088973);
|
||
INSERT INTO `la_operation_log` VALUES (313, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1777088973);
|
||
INSERT INTO `la_operation_log` VALUES (314, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777088973);
|
||
INSERT INTO `la_operation_log` VALUES (315, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777088976);
|
||
INSERT INTO `la_operation_log` VALUES (316, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097082);
|
||
INSERT INTO `la_operation_log` VALUES (317, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097082);
|
||
INSERT INTO `la_operation_log` VALUES (318, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097502);
|
||
INSERT INTO `la_operation_log` VALUES (319, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097502);
|
||
INSERT INTO `la_operation_log` VALUES (320, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097548);
|
||
INSERT INTO `la_operation_log` VALUES (321, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097548);
|
||
INSERT INTO `la_operation_log` VALUES (322, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097561);
|
||
INSERT INTO `la_operation_log` VALUES (323, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097561);
|
||
INSERT INTO `la_operation_log` VALUES (324, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097567);
|
||
INSERT INTO `la_operation_log` VALUES (325, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777097567);
|
||
INSERT INTO `la_operation_log` VALUES (326, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"b21757ea704b6b173db9ff39f6467b7e\"}}', '127.0.0.1', 1777097623);
|
||
INSERT INTO `la_operation_log` VALUES (327, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777097624);
|
||
INSERT INTO `la_operation_log` VALUES (328, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-25 14:13:45\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"访客数\",\"data\":[78,54,70,52,86,35,69,34,15,73,96,95,2,34,14]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\"],\"list\":[{\"name\":\"销售量\",\"data\":[66,95,82,110,78,81,66]}]}}}', '127.0.0.1', 1777097625);
|
||
INSERT INTO `la_operation_log` VALUES (329, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-25 16:37:11\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\",\"04\\/14\",\"04\\/13\",\"04\\/12\",\"04\\/11\"],\"list\":[{\"name\":\"访客数\",\"data\":[96,46,48,88,2,98,76,16,91,29,33,96,61,68,69]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\"],\"list\":[{\"name\":\"销售量\",\"data\":[97,185,49,106,162,156,111]}]}}}', '127.0.0.1', 1777106231);
|
||
INSERT INTO `la_operation_log` VALUES (330, 1, 'wisdom', 'wisdom', ' 获取字典类型列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/setting.dict.dict_type/lists?page_no=1&page_size=15&name=&type=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"status_desc\":\"正常\",\"id\":5,\"name\":\"用户性别\",\"type\":\"sex\",\"status\":1,\"remark\":\"\",\"create_time\":\"2022-06-24 17:29:06\",\"update_time\":\"2022-06-28 09:48:45\",\"delete_time\":null},{\"status_desc\":\"正常\",\"id\":4,\"name\":\"禁用状态\",\"type\":\"system_disable\",\"status\":1,\"remark\":\"\",\"create_time\":\"2022-06-27 14:37:18\",\"update_time\":\"2022-06-27 14:37:18\",\"delete_time\":null},{\"status_desc\":\"正常\",\"id\":3,\"name\":\"事件状态\",\"type\":\"event_status\",\"status\":1,\"remark\":\"\",\"create_time\":\"2022-06-28 09:51:15\",\"update_time\":\"2022-06-28 09:51:15\",\"delete_time\":null},{\"status_desc\":\"正常\",\"id\":2,\"name\":\"业务状态\",\"type\":\"business_status\",\"status\":1,\"remark\":\"\",\"create_time\":\"2022-06-28 09:56:33\",\"update_time\":\"2022-06-28 09:56:33\",\"delete_time\":null},{\"status_desc\":\"正常\",\"id\":1,\"name\":\"显示状态\",\"type\":\"show_status\",\"status\":1,\"remark\":\"\",\"create_time\":\"2022-06-28 09:58:40\",\"update_time\":\"2022-06-28 09:58:40\",\"delete_time\":null}],\"count\":5,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777106314);
|
||
INSERT INTO `la_operation_log` VALUES (331, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?keyword=&channel=&create_time_start=&create_time_end=&page_size=15&export=1', '{\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\",\"page_size\":\"15\",\"export\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"count\":0,\"page_size\":15,\"sum_page\":1,\"max_page\":1666,\"all_max_size\":25000,\"page_start\":1,\"page_end\":1,\"file_name\":\"用户列表\"}}', '127.0.0.1', 1777106318);
|
||
INSERT INTO `la_operation_log` VALUES (332, 1, 'wisdom', 'wisdom', ' 用户列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/user.user/lists?page_no=1&page_size=15&keyword=&channel=&create_time_start=&create_time_end=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"keyword\":\"\",\"channel\":\"\",\"create_time_start\":\"\",\"create_time_end\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777106318);
|
||
INSERT INTO `la_operation_log` VALUES (333, 1, 'wisdom', 'wisdom', ' 退还统计', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.refund/stat', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"total\":0,\"ing\":0,\"success\":0,\"error\":0}}', '127.0.0.1', 1777106319);
|
||
INSERT INTO `la_operation_log` VALUES (334, 1, 'wisdom', 'wisdom', ' 退款记录', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.refund/record?page_no=1&page_size=15&sn=&order_sn=&user_info=&refund_type=&start_time=&end_time=&refund_status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"sn\":\"\",\"order_sn\":\"\",\"user_info\":\"\",\"refund_type\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"refund_status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":{\"total\":0,\"ing\":0,\"success\":0,\"error\":0}}}', '127.0.0.1', 1777106319);
|
||
INSERT INTO `la_operation_log` VALUES (335, 1, 'wisdom', 'wisdom', ' 充值记录', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/recharge.recharge/lists?sn=&user_info=&pay_way=&pay_status=&start_time=&end_time=&page_size=15&export=1', '{\"sn\":\"\",\"user_info\":\"\",\"pay_way\":\"\",\"pay_status\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"page_size\":\"15\",\"export\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"count\":0,\"page_size\":15,\"sum_page\":1,\"max_page\":1666,\"all_max_size\":25000,\"page_start\":1,\"page_end\":1,\"file_name\":\"充值记录\"}}', '127.0.0.1', 1777106320);
|
||
INSERT INTO `la_operation_log` VALUES (336, 1, 'wisdom', 'wisdom', ' 充值记录', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/recharge.recharge/lists?page_no=1&page_size=15&sn=&user_info=&pay_way=&pay_status=&start_time=&end_time=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"sn\":\"\",\"user_info\":\"\",\"pay_way\":\"\",\"pay_status\":\"\",\"start_time\":\"\",\"end_time\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777106320);
|
||
INSERT INTO `la_operation_log` VALUES (337, 1, 'wisdom', 'wisdom', ' 用户余额变动类型', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/getUmChangeType', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"100\":\"平台减少余额\",\"200\":\"平台增加余额\",\"201\":\"充值增加余额\",\"101\":\"充值订单退款减少余额\"}}', '127.0.0.1', 1777106321);
|
||
INSERT INTO `la_operation_log` VALUES (338, 1, 'wisdom', 'wisdom', ' 账户流水明细', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/lists?page_no=1&page_size=15&user_info=&change_type=&start_time=&end_time=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"user_info\":\"\",\"change_type\":\"\",\"start_time\":\"\",\"end_time\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777106321);
|
||
INSERT INTO `la_operation_log` VALUES (339, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777106323);
|
||
INSERT INTO `la_operation_log` VALUES (340, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1777106324);
|
||
INSERT INTO `la_operation_log` VALUES (341, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777106324);
|
||
INSERT INTO `la_operation_log` VALUES (342, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777106324);
|
||
INSERT INTO `la_operation_log` VALUES (343, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777106333);
|
||
INSERT INTO `la_operation_log` VALUES (344, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=5', '{\"id\":\"5\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":5,\"type\":5,\"name\":\"系统风格\",\"data\":\"{\\\"themeColorId\\\":3,\\\"topTextColor\\\":\\\"white\\\",\\\"navigationBarColor\\\":\\\"#A74BFD\\\",\\\"themeColor1\\\":\\\"#A74BFD\\\",\\\"themeColor2\\\":\\\"#CB60FF\\\",\\\"buttonColor\\\":\\\"white\\\"}\",\"meta\":\"\",\"create_time\":\"2024-03-14 18:08:35\",\"update_time\":\"2024-03-21 11:06:55\"}}', '127.0.0.1', 1777106334);
|
||
INSERT INTO `la_operation_log` VALUES (345, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777106335);
|
||
INSERT INTO `la_operation_log` VALUES (346, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1777106335);
|
||
INSERT INTO `la_operation_log` VALUES (347, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777106335);
|
||
INSERT INTO `la_operation_log` VALUES (348, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777106338);
|
||
INSERT INTO `la_operation_log` VALUES (349, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777106338);
|
||
INSERT INTO `la_operation_log` VALUES (350, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1777106339);
|
||
INSERT INTO `la_operation_log` VALUES (351, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777106339);
|
||
INSERT INTO `la_operation_log` VALUES (352, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777106342);
|
||
INSERT INTO `la_operation_log` VALUES (353, 1, 'wisdom', 'wisdom', ' 用户余额变动类型', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/getUmChangeType', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"100\":\"平台减少余额\",\"200\":\"平台增加余额\",\"201\":\"充值增加余额\",\"101\":\"充值订单退款减少余额\"}}', '127.0.0.1', 1777106393);
|
||
INSERT INTO `la_operation_log` VALUES (354, 1, 'wisdom', 'wisdom', ' 账户流水明细', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/finance.account_log/lists?page_no=1&page_size=15&user_info=&change_type=&start_time=&end_time=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"user_info\":\"\",\"change_type\":\"\",\"start_time\":\"\",\"end_time\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777106393);
|
||
INSERT INTO `la_operation_log` VALUES (355, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '127.0.0.1', 1777106396);
|
||
INSERT INTO `la_operation_log` VALUES (356, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":3,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":2,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2024-09-23 13:55:11\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777106396);
|
||
INSERT INTO `la_operation_log` VALUES (357, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777163026);
|
||
INSERT INTO `la_operation_log` VALUES (358, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777163026);
|
||
INSERT INTO `la_operation_log` VALUES (359, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777442619);
|
||
INSERT INTO `la_operation_log` VALUES (360, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777442620);
|
||
INSERT INTO `la_operation_log` VALUES (361, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777442620);
|
||
INSERT INTO `la_operation_log` VALUES (362, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"9368bc9ce8c28bb1cab6080028e2314e\"}}', '127.0.0.1', 1777442621);
|
||
INSERT INTO `la_operation_log` VALUES (363, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777442621);
|
||
INSERT INTO `la_operation_log` VALUES (364, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-29 14:03:42\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\"],\"list\":[{\"name\":\"访客数\",\"data\":[98,44,86,31,33,58,19,97,24,62,7,39,94,12,96]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\"],\"list\":[{\"name\":\"销售量\",\"data\":[88,81,117,101,200,141,84]}]}}}', '127.0.0.1', 1777442622);
|
||
INSERT INTO `la_operation_log` VALUES (365, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777444619);
|
||
INSERT INTO `la_operation_log` VALUES (366, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777444620);
|
||
INSERT INTO `la_operation_log` VALUES (367, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"9368bc9ce8c28bb1cab6080028e2314e\"}}', '127.0.0.1', 1777444622);
|
||
INSERT INTO `la_operation_log` VALUES (368, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777444622);
|
||
INSERT INTO `la_operation_log` VALUES (369, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-29 14:37:03\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\"],\"list\":[{\"name\":\"访客数\",\"data\":[75,19,54,14,73,27,89,16,38,19,36,14,3,61,98]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\"],\"list\":[{\"name\":\"销售量\",\"data\":[44,80,135,178,109,154,137]}]}}}', '127.0.0.1', 1777444623);
|
||
INSERT INTO `la_operation_log` VALUES (370, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '127.0.0.1', 1777444627);
|
||
INSERT INTO `la_operation_log` VALUES (371, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777444627);
|
||
INSERT INTO `la_operation_log` VALUES (372, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":3,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '127.0.0.1', 1777444627);
|
||
INSERT INTO `la_operation_log` VALUES (373, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777444632);
|
||
INSERT INTO `la_operation_log` VALUES (374, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '127.0.0.1', 1777444678);
|
||
INSERT INTO `la_operation_log` VALUES (375, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444678);
|
||
INSERT INTO `la_operation_log` VALUES (376, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":3,\"cid\":\"\",\"type\":10,\"name\":\"member_s.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (377, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":4,\"cid\":\"\",\"type\":10,\"name\":\"home.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (378, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":5,\"cid\":\"\",\"type\":10,\"name\":\"user.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"url\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (379, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":6,\"cid\":\"\",\"type\":10,\"name\":\"home_s.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (380, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":7,\"cid\":\"\",\"type\":10,\"name\":\"booking.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"url\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (381, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":8,\"cid\":\"\",\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (382, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":10,\"cid\":\"\",\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (383, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":9,\"cid\":\"\",\"type\":10,\"name\":\"member.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (384, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":9,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (385, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":9,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (386, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":11,\"cid\":\"\",\"type\":10,\"name\":\"notice.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (387, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":10,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (388, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":12,\"cid\":\"\",\"type\":10,\"name\":\"user_s.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\"}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (389, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (390, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (391, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (392, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (393, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (394, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (395, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444717);
|
||
INSERT INTO `la_operation_log` VALUES (396, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '127.0.0.1', 1777444724);
|
||
INSERT INTO `la_operation_log` VALUES (397, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444724);
|
||
INSERT INTO `la_operation_log` VALUES (398, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '127.0.0.1', 1777444733);
|
||
INSERT INTO `la_operation_log` VALUES (399, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444733);
|
||
INSERT INTO `la_operation_log` VALUES (400, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '127.0.0.1', 1777444742);
|
||
INSERT INTO `la_operation_log` VALUES (401, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '127.0.0.1', 1777444742);
|
||
INSERT INTO `la_operation_log` VALUES (402, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777444992);
|
||
INSERT INTO `la_operation_log` VALUES (403, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777444992);
|
||
INSERT INTO `la_operation_log` VALUES (404, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777444992);
|
||
INSERT INTO `la_operation_log` VALUES (405, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_home.png\",\"link\":{\"path\":\"\\/pages\\/index\\/index\",\"name\":\"商城首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":8,\"name\":\"资讯\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_text.png\",\"link\":{\"path\":\"\\/pages\\/news\\/news\",\"name\":\"文章资讯\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"},{\"id\":9,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me_sel.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/tabbar_me.png\",\"link\":{\"path\":\"\\/pages\\/user\\/user\",\"name\":\"个人中心\",\"type\":\"shop\",\"canTab\":\"1\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-19 23:25:10\"}]}}', '127.0.0.1', 1777444993);
|
||
INSERT INTO `la_operation_log` VALUES (406, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777450621);
|
||
INSERT INTO `la_operation_log` VALUES (407, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777450621);
|
||
INSERT INTO `la_operation_log` VALUES (408, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777450621);
|
||
INSERT INTO `la_operation_log` VALUES (409, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#c455ff\"},\"list\":[{\"id\":7,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-2-.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/index\\/index\",\"name\":\"首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":8,\"name\":\"预定\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/booking\\/booking\",\"name\":\"预定\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":9,\"name\":\"会员\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/member\\/member\",\"name\":\"会员\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":10,\"name\":\"通知\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/notice\\/notice\",\"name\":\"通知\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 15:02:26\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":11,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/user\\/user\",\"name\":\"我的\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 15:02:26\",\"update_time\":\"2026-04-29 15:49:07\"}]}}', '127.0.0.1', 1777450621);
|
||
INSERT INTO `la_operation_log` VALUES (410, 1, 'wisdom', 'wisdom', ' 底部导航保存', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/save', '{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#000000\"},\"list\":[{\"id\":\"7\",\"name\":\"\\u9996\\u9875\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-2-.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/index\\/index\",\"name\":\"\\u9996\\u9875\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":\"8\",\"name\":\"\\u9884\\u5b9a\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/booking\\/booking\",\"name\":\"\\u9884\\u5b9a\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":\"9\",\"name\":\"\\u4f1a\\u5458\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/member\\/member\",\"name\":\"\\u4f1a\\u5458\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-19 23:25:10\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":\"10\",\"name\":\"\\u901a\\u77e5\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/notice\\/notice\",\"name\":\"\\u901a\\u77e5\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-29 15:02:26\",\"update_time\":\"2026-04-29 15:49:07\"},{\"id\":\"11\",\"name\":\"\\u6211\\u7684\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/user\\/user\",\"name\":\"\\u6211\\u7684\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-29 15:02:26\",\"update_time\":\"2026-04-29 15:49:07\"}]}', '{\"code\":1,\"show\":1,\"msg\":\"操作成功\",\"data\":[]}', '127.0.0.1', 1777450633);
|
||
INSERT INTO `la_operation_log` VALUES (411, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#000000\"},\"list\":[{\"id\":12,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-2-.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/index\\/index\",\"name\":\"首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":13,\"name\":\"预定\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/booking\\/booking\",\"name\":\"预定\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":14,\"name\":\"会员\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/member\\/member\",\"name\":\"会员\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":15,\"name\":\"通知\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/notice\\/notice\",\"name\":\"通知\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":16,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/user\\/user\",\"name\":\"我的\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"}]}}', '127.0.0.1', 1777450633);
|
||
INSERT INTO `la_operation_log` VALUES (412, 1, 'wisdom', 'wisdom', ' 底部导航保存', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/save', '{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#000000\"},\"list\":[{\"id\":\"12\",\"name\":\"\\u9996\\u9875\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-2-.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/index\\/index\",\"name\":\"\\u9996\\u9875\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":\"13\",\"name\":\"\\u9884\\u5b9a\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/booking\\/booking\",\"name\":\"\\u9884\\u5b9a\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":\"14\",\"name\":\"\\u4f1a\\u5458\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/member\\/member\",\"name\":\"\\u4f1a\\u5458\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":\"15\",\"name\":\"\\u901a\\u77e5\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/notice\\/notice\",\"name\":\"\\u901a\\u77e5\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"},{\"id\":\"16\",\"name\":\"\\u6211\\u7684\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/user\\/user\",\"name\":\"\\u6211\\u7684\",\"type\":\"shop\"},\"is_show\":\"1\",\"create_time\":\"2026-04-29 16:17:13\",\"update_time\":\"2026-04-29 16:17:13\"}]}', '{\"code\":1,\"show\":1,\"msg\":\"操作成功\",\"data\":[]}', '127.0.0.1', 1777450635);
|
||
INSERT INTO `la_operation_log` VALUES (413, 1, 'wisdom', 'wisdom', ' 底部导航详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.tabbar/detail?type=1', '{\"type\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"style\":{\"default_color\":\"#999999\",\"selected_color\":\"#000000\"},\"list\":[{\"id\":17,\"name\":\"首页\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-2-.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/1-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/index\\/index\",\"name\":\"首页\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:15\",\"update_time\":\"2026-04-29 16:17:15\"},{\"id\":18,\"name\":\"预定\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/2-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/booking\\/booking\",\"name\":\"预定\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:15\",\"update_time\":\"2026-04-29 16:17:15\"},{\"id\":19,\"name\":\"会员\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/3-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/member\\/member\",\"name\":\"会员\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:15\",\"update_time\":\"2026-04-29 16:17:15\"},{\"id\":20,\"name\":\"通知\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/4-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/notice\\/notice\",\"name\":\"通知\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:15\",\"update_time\":\"2026-04-29 16:17:15\"},{\"id\":21,\"name\":\"我的\",\"selected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-2.png\",\"unselected\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/tabbar\\/5-1.png\",\"link\":{\"canTab\":\"1\",\"path\":\"\\/pages\\/user\\/user\",\"name\":\"我的\",\"type\":\"shop\"},\"is_show\":1,\"create_time\":\"2026-04-29 16:17:15\",\"update_time\":\"2026-04-29 16:17:15\"}]}}', '127.0.0.1', 1777450635);
|
||
INSERT INTO `la_operation_log` VALUES (414, 0, '', '', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777450926);
|
||
INSERT INTO `la_operation_log` VALUES (415, 0, '', '', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777450939);
|
||
INSERT INTO `la_operation_log` VALUES (416, 0, '', '', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777450969);
|
||
INSERT INTO `la_operation_log` VALUES (417, 0, '', '', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777450979);
|
||
INSERT INTO `la_operation_log` VALUES (418, 0, '', '', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777450979);
|
||
INSERT INTO `la_operation_log` VALUES (419, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777451014);
|
||
INSERT INTO `la_operation_log` VALUES (420, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '127.0.0.1', 1777451014);
|
||
INSERT INTO `la_operation_log` VALUES (421, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777451014);
|
||
INSERT INTO `la_operation_log` VALUES (422, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-29 16:23:34\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\"],\"list\":[{\"name\":\"访客数\",\"data\":[81,50,4,37,7,12,1,12,54,58,17,18,79,19,31]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\"],\"list\":[{\"name\":\"销售量\",\"data\":[77,88,119,50,108,92,133]}]}}}', '127.0.0.1', 1777451014);
|
||
INSERT INTO `la_operation_log` VALUES (423, 1, 'wisdom', 'wisdom', ' 退出登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/logout', '[]', '{\"code\":1,\"show\":0,\"msg\":\"success\",\"data\":[]}', '127.0.0.1', 1777451026);
|
||
INSERT INTO `la_operation_log` VALUES (424, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777451165);
|
||
INSERT INTO `la_operation_log` VALUES (425, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777451165);
|
||
INSERT INTO `la_operation_log` VALUES (426, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777451177);
|
||
INSERT INTO `la_operation_log` VALUES (427, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777451182);
|
||
INSERT INTO `la_operation_log` VALUES (428, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777451182);
|
||
INSERT INTO `la_operation_log` VALUES (429, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"9368bc9ce8c28bb1cab6080028e2314e\"}}', '120.239.179.186', 1777451235);
|
||
INSERT INTO `la_operation_log` VALUES (430, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777451235);
|
||
INSERT INTO `la_operation_log` VALUES (431, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-29 16:27:18\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\",\"04\\/15\"],\"list\":[{\"name\":\"访客数\",\"data\":[80,25,81,64,92,85,9,82,42,76,62,76,65,17,47]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\"],\"list\":[{\"name\":\"销售量\",\"data\":[108,50,40,58,146,57,181]}]}}}', '120.239.179.186', 1777451238);
|
||
INSERT INTO `la_operation_log` VALUES (432, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777451268);
|
||
INSERT INTO `la_operation_log` VALUES (433, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=20&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"20\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":20,\"extend\":[]}}', '120.239.179.186', 1777451268);
|
||
INSERT INTO `la_operation_log` VALUES (434, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '120.239.179.186', 1777451331);
|
||
INSERT INTO `la_operation_log` VALUES (435, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777451331);
|
||
INSERT INTO `la_operation_log` VALUES (436, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777451332);
|
||
INSERT INTO `la_operation_log` VALUES (437, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777451499);
|
||
INSERT INTO `la_operation_log` VALUES (438, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777451499);
|
||
INSERT INTO `la_operation_log` VALUES (439, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777451499);
|
||
INSERT INTO `la_operation_log` VALUES (440, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '120.239.179.186', 1777451500);
|
||
INSERT INTO `la_operation_log` VALUES (441, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777451500);
|
||
INSERT INTO `la_operation_log` VALUES (442, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777451500);
|
||
INSERT INTO `la_operation_log` VALUES (443, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&name=&is_show=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"is_show\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777451607);
|
||
INSERT INTO `la_operation_log` VALUES (444, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&name=&is_show=1', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"is_show\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777451610);
|
||
INSERT INTO `la_operation_log` VALUES (445, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452126);
|
||
INSERT INTO `la_operation_log` VALUES (446, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452126);
|
||
INSERT INTO `la_operation_log` VALUES (447, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452165);
|
||
INSERT INTO `la_operation_log` VALUES (448, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"admin\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":0,\"show\":1,\"msg\":\"账号不存在\",\"data\":[]}', '120.239.179.186', 1777452167);
|
||
INSERT INTO `la_operation_log` VALUES (449, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452174);
|
||
INSERT INTO `la_operation_log` VALUES (450, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777452174);
|
||
INSERT INTO `la_operation_log` VALUES (451, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452175);
|
||
INSERT INTO `la_operation_log` VALUES (452, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452185);
|
||
INSERT INTO `la_operation_log` VALUES (453, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777452185);
|
||
INSERT INTO `la_operation_log` VALUES (454, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452186);
|
||
INSERT INTO `la_operation_log` VALUES (455, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '120.239.179.186', 1777452186);
|
||
INSERT INTO `la_operation_log` VALUES (456, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777452186);
|
||
INSERT INTO `la_operation_log` VALUES (457, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777452187);
|
||
INSERT INTO `la_operation_log` VALUES (458, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452191);
|
||
INSERT INTO `la_operation_log` VALUES (459, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777452191);
|
||
INSERT INTO `la_operation_log` VALUES (460, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452192);
|
||
INSERT INTO `la_operation_log` VALUES (461, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '120.239.179.186', 1777452193);
|
||
INSERT INTO `la_operation_log` VALUES (462, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777452193);
|
||
INSERT INTO `la_operation_log` VALUES (463, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777452193);
|
||
INSERT INTO `la_operation_log` VALUES (464, 1, 'wisdom', 'wisdom', ' 获取充值设置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/recharge.recharge/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"status\":0,\"min_amount\":0}}', '120.239.179.186', 1777452206);
|
||
INSERT INTO `la_operation_log` VALUES (465, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null}]}}', '120.239.179.186', 1777452207);
|
||
INSERT INTO `la_operation_log` VALUES (466, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452330);
|
||
INSERT INTO `la_operation_log` VALUES (467, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777452330);
|
||
INSERT INTO `la_operation_log` VALUES (468, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452331);
|
||
INSERT INTO `la_operation_log` VALUES (469, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null}]}}', '120.239.179.186', 1777452331);
|
||
INSERT INTO `la_operation_log` VALUES (470, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452343);
|
||
INSERT INTO `la_operation_log` VALUES (471, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777452343);
|
||
INSERT INTO `la_operation_log` VALUES (472, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777452343);
|
||
INSERT INTO `la_operation_log` VALUES (473, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null}]}}', '120.239.179.186', 1777452344);
|
||
INSERT INTO `la_operation_log` VALUES (474, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452506);
|
||
INSERT INTO `la_operation_log` VALUES (475, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452579);
|
||
INSERT INTO `la_operation_log` VALUES (476, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null}]}}', '120.239.179.186', 1777452579);
|
||
INSERT INTO `la_operation_log` VALUES (477, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452587);
|
||
INSERT INTO `la_operation_log` VALUES (478, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null}]}}', '120.239.179.186', 1777452587);
|
||
INSERT INTO `la_operation_log` VALUES (479, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777452644);
|
||
INSERT INTO `la_operation_log` VALUES (480, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452644);
|
||
INSERT INTO `la_operation_log` VALUES (481, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":13,\"cid\":\"\",\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"}}', '120.239.179.186', 1777452702);
|
||
INSERT INTO `la_operation_log` VALUES (482, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":12,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452702);
|
||
INSERT INTO `la_operation_log` VALUES (483, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777452709);
|
||
INSERT INTO `la_operation_log` VALUES (484, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:51:49\",\"delete_time\":null}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452709);
|
||
INSERT INTO `la_operation_log` VALUES (485, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:51:49\",\"delete_time\":null}}', '120.239.179.186', 1777452858);
|
||
INSERT INTO `la_operation_log` VALUES (486, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777452861);
|
||
INSERT INTO `la_operation_log` VALUES (487, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":12,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452861);
|
||
INSERT INTO `la_operation_log` VALUES (488, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":14,\"cid\":\"\",\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\"}}', '120.239.179.186', 1777452877);
|
||
INSERT INTO `la_operation_log` VALUES (489, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":13,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452877);
|
||
INSERT INTO `la_operation_log` VALUES (490, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/edit', '{\"id\":\"1\",\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"0\",\"end_time\":\"0\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"编辑成功\",\"data\":[]}', '120.239.179.186', 1777452883);
|
||
INSERT INTO `la_operation_log` VALUES (491, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":1,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452883);
|
||
INSERT INTO `la_operation_log` VALUES (492, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777452919);
|
||
INSERT INTO `la_operation_log` VALUES (493, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":13,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777452919);
|
||
INSERT INTO `la_operation_log` VALUES (494, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":15,\"cid\":\"\",\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\"}}', '120.239.179.186', 1777453004);
|
||
INSERT INTO `la_operation_log` VALUES (495, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":14,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453005);
|
||
INSERT INTO `la_operation_log` VALUES (496, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":14,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453005);
|
||
INSERT INTO `la_operation_log` VALUES (497, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777453008);
|
||
INSERT INTO `la_operation_log` VALUES (498, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":2,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453008);
|
||
INSERT INTO `la_operation_log` VALUES (499, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777453019);
|
||
INSERT INTO `la_operation_log` VALUES (500, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":14,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453019);
|
||
INSERT INTO `la_operation_log` VALUES (501, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":16,\"cid\":\"\",\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"}}', '120.239.179.186', 1777453026);
|
||
INSERT INTO `la_operation_log` VALUES (502, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":15,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453026);
|
||
INSERT INTO `la_operation_log` VALUES (503, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777453029);
|
||
INSERT INTO `la_operation_log` VALUES (504, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":15,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453029);
|
||
INSERT INTO `la_operation_log` VALUES (505, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":17,\"cid\":\"\",\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"}}', '120.239.179.186', 1777453037);
|
||
INSERT INTO `la_operation_log` VALUES (506, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453038);
|
||
INSERT INTO `la_operation_log` VALUES (507, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777453048);
|
||
INSERT INTO `la_operation_log` VALUES (508, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453048);
|
||
INSERT INTO `la_operation_log` VALUES (509, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777453054);
|
||
INSERT INTO `la_operation_log` VALUES (510, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453054);
|
||
INSERT INTO `la_operation_log` VALUES (511, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777453058);
|
||
INSERT INTO `la_operation_log` VALUES (512, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453058);
|
||
INSERT INTO `la_operation_log` VALUES (513, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777453065);
|
||
INSERT INTO `la_operation_log` VALUES (514, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453065);
|
||
INSERT INTO `la_operation_log` VALUES (515, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777453070);
|
||
INSERT INTO `la_operation_log` VALUES (516, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453070);
|
||
INSERT INTO `la_operation_log` VALUES (517, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777453079);
|
||
INSERT INTO `la_operation_log` VALUES (518, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453079);
|
||
INSERT INTO `la_operation_log` VALUES (519, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777453302);
|
||
INSERT INTO `la_operation_log` VALUES (520, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777453302);
|
||
INSERT INTO `la_operation_log` VALUES (521, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777453303);
|
||
INSERT INTO `la_operation_log` VALUES (522, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null}]}}', '120.239.179.186', 1777453303);
|
||
INSERT INTO `la_operation_log` VALUES (523, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453303);
|
||
INSERT INTO `la_operation_log` VALUES (524, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777453640);
|
||
INSERT INTO `la_operation_log` VALUES (525, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777453640);
|
||
INSERT INTO `la_operation_log` VALUES (526, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777453640);
|
||
INSERT INTO `la_operation_log` VALUES (527, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":33,\"name\":\"首页导航Logo\",\"value\":\"home_nav\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"首页顶部导航栏Logo图片\",\"create_time\":\"2026-04-29 17:06:23\",\"update_time\":\"2026-04-29 17:06:23\",\"delete_time\":null}]}}', '120.239.179.186', 1777453640);
|
||
INSERT INTO `la_operation_log` VALUES (528, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":4,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453640);
|
||
INSERT INTO `la_operation_log` VALUES (529, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777453647);
|
||
INSERT INTO `la_operation_log` VALUES (530, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453648);
|
||
INSERT INTO `la_operation_log` VALUES (531, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777453652);
|
||
INSERT INTO `la_operation_log` VALUES (532, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":5,\"title\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":5,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777453652);
|
||
INSERT INTO `la_operation_log` VALUES (533, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777454334);
|
||
INSERT INTO `la_operation_log` VALUES (534, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454334);
|
||
INSERT INTO `la_operation_log` VALUES (535, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"}],\"count\":16,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454349);
|
||
INSERT INTO `la_operation_log` VALUES (536, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":18,\"cid\":\"\",\"type\":10,\"name\":\"pic2.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"url\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"}}', '120.239.179.186', 1777454351);
|
||
INSERT INTO `la_operation_log` VALUES (537, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":19,\"cid\":\"\",\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"url\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"}}', '120.239.179.186', 1777454374);
|
||
INSERT INTO `la_operation_log` VALUES (538, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"}],\"count\":18,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454374);
|
||
INSERT INTO `la_operation_log` VALUES (539, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":20,\"cid\":\"\",\"type\":10,\"name\":\"pic1.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"}}', '120.239.179.186', 1777454375);
|
||
INSERT INTO `la_operation_log` VALUES (540, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":21,\"cid\":\"\",\"type\":10,\"name\":\"pic2.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\"}}', '120.239.179.186', 1777454378);
|
||
INSERT INTO `la_operation_log` VALUES (541, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"}],\"count\":20,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454378);
|
||
INSERT INTO `la_operation_log` VALUES (542, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":22,\"cid\":\"\",\"type\":10,\"name\":\"pic1.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\"}}', '120.239.179.186', 1777454405);
|
||
INSERT INTO `la_operation_log` VALUES (543, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":23,\"cid\":\"\",\"type\":10,\"name\":\"pic1.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\"}}', '120.239.179.186', 1777454407);
|
||
INSERT INTO `la_operation_log` VALUES (544, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":0,\"show\":1,\"msg\":\"RequestCoreException: cURL error: Empty reply from server (52)\",\"data\":[]}', '120.239.179.186', 1777454436);
|
||
INSERT INTO `la_operation_log` VALUES (545, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777454461);
|
||
INSERT INTO `la_operation_log` VALUES (546, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777454461);
|
||
INSERT INTO `la_operation_log` VALUES (547, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777454461);
|
||
INSERT INTO `la_operation_log` VALUES (548, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":33,\"name\":\"首页导航Logo\",\"value\":\"home_nav\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"首页顶部导航栏Logo图片\",\"create_time\":\"2026-04-29 17:06:23\",\"update_time\":\"2026-04-29 17:06:23\",\"delete_time\":null},{\"id\":34,\"name\":\"风格户型轮播\",\"value\":\"home_3_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":35,\"status\":1,\"remark\":\"首页区域3背景上方的轮播图\",\"create_time\":\"2026-04-29 17:17:33\",\"update_time\":\"2026-04-29 17:17:33\",\"delete_time\":null}]}}', '120.239.179.186', 1777454462);
|
||
INSERT INTO `la_operation_log` VALUES (549, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":5,\"title\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":5,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454462);
|
||
INSERT INTO `la_operation_log` VALUES (550, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777454468);
|
||
INSERT INTO `la_operation_log` VALUES (551, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454468);
|
||
INSERT INTO `la_operation_log` VALUES (552, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777454473);
|
||
INSERT INTO `la_operation_log` VALUES (553, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":6,\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:21:13\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":6,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454473);
|
||
INSERT INTO `la_operation_log` VALUES (554, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777454478);
|
||
INSERT INTO `la_operation_log` VALUES (555, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454478);
|
||
INSERT INTO `la_operation_log` VALUES (556, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777454484);
|
||
INSERT INTO `la_operation_log` VALUES (557, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":7,\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:21:24\",\"delete_time\":null},{\"id\":6,\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:21:13\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":7,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454484);
|
||
INSERT INTO `la_operation_log` VALUES (558, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777454494);
|
||
INSERT INTO `la_operation_log` VALUES (559, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454495);
|
||
INSERT INTO `la_operation_log` VALUES (560, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777454513);
|
||
INSERT INTO `la_operation_log` VALUES (561, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":8,\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:21:53\",\"delete_time\":null},{\"id\":7,\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:21:24\",\"delete_time\":null},{\"id\":6,\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:21:13\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":8,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454513);
|
||
INSERT INTO `la_operation_log` VALUES (562, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=8', '{\"id\":\"8\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":8,\"title\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:21:53\",\"delete_time\":null}}', '120.239.179.186', 1777454752);
|
||
INSERT INTO `la_operation_log` VALUES (563, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=8', '{\"id\":\"8\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":8,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:21:53\",\"delete_time\":null}}', '120.239.179.186', 1777454901);
|
||
INSERT INTO `la_operation_log` VALUES (564, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/edit', '{\"id\":\"8\",\"title\":\"\\u5317\\u6b27\\u98ce\\u5c1a\",\"subtitle\":\"Loft\\u6237\\u578b\\uff5c\\u4e00\\u5b57\\u6237\\u578b\\uff5cL\\u578b\\u6237\\u578b\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"0\",\"end_time\":\"0\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"编辑成功\",\"data\":[]}', '120.239.179.186', 1777454932);
|
||
INSERT INTO `la_operation_log` VALUES (565, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:21:24\",\"delete_time\":null},{\"id\":6,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:21:13\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":8,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454932);
|
||
INSERT INTO `la_operation_log` VALUES (566, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=7', '{\"id\":\"7\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":7,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:21:24\",\"delete_time\":null}}', '120.239.179.186', 1777454969);
|
||
INSERT INTO `la_operation_log` VALUES (567, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/edit', '{\"id\":\"7\",\"title\":\"\\u96c5\\u81f4\\u6cd5\\u5f0f\",\"subtitle\":\"\\u4e00\\u5b57\\u6237\\u578b\\uff5cL\\u578b\\u6237\\u578b\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"0\",\"end_time\":\"0\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"编辑成功\",\"data\":[]}', '120.239.179.186', 1777454976);
|
||
INSERT INTO `la_operation_log` VALUES (568, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:21:13\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":8,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777454977);
|
||
INSERT INTO `la_operation_log` VALUES (569, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=6', '{\"id\":\"6\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":6,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:21:13\",\"delete_time\":null}}', '120.239.179.186', 1777454978);
|
||
INSERT INTO `la_operation_log` VALUES (570, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/edit', '{\"id\":\"6\",\"title\":\"\\u7f8e\\u5f0f\\u4e2d\\u53e4\",\"subtitle\":\"\\u4e00\\u5b57\\u6237\\u578b\\uff5cL\\u578b\\u6237\\u578b \\uff5c\\u884c\\u653f\\u5957\\u623f\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"0\",\"end_time\":\"0\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"编辑成功\",\"data\":[]}', '120.239.179.186', 1777455002);
|
||
INSERT INTO `la_operation_log` VALUES (571, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":8,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777455002);
|
||
INSERT INTO `la_operation_log` VALUES (572, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456665);
|
||
INSERT INTO `la_operation_log` VALUES (573, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456665);
|
||
INSERT INTO `la_operation_log` VALUES (574, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456695);
|
||
INSERT INTO `la_operation_log` VALUES (575, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777456710);
|
||
INSERT INTO `la_operation_log` VALUES (576, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777456710);
|
||
INSERT INTO `la_operation_log` VALUES (577, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777456710);
|
||
INSERT INTO `la_operation_log` VALUES (578, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":33,\"name\":\"首页导航Logo\",\"value\":\"home_nav\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"首页顶部导航栏Logo图片\",\"create_time\":\"2026-04-29 17:06:23\",\"update_time\":\"2026-04-29 17:06:23\",\"delete_time\":null},{\"id\":34,\"name\":\"风格户型轮播\",\"value\":\"home_3_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":35,\"status\":1,\"remark\":\"首页区域3背景上方的轮播图\",\"create_time\":\"2026-04-29 17:17:33\",\"update_time\":\"2026-04-29 17:17:33\",\"delete_time\":null},{\"id\":35,\"name\":\"社区设施轮播\",\"value\":\"home_4_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":45,\"status\":1,\"remark\":\"首页区域4背景上方的轮播图\",\"create_time\":\"2026-04-29 17:55:18\",\"update_time\":\"2026-04-29 17:55:18\",\"delete_time\":null}]}}', '120.239.179.186', 1777456710);
|
||
INSERT INTO `la_operation_log` VALUES (579, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":8,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456710);
|
||
INSERT INTO `la_operation_log` VALUES (580, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456716);
|
||
INSERT INTO `la_operation_log` VALUES (581, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456716);
|
||
INSERT INTO `la_operation_log` VALUES (582, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777456720);
|
||
INSERT INTO `la_operation_log` VALUES (583, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 17:58:40\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":9,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456720);
|
||
INSERT INTO `la_operation_log` VALUES (584, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456724);
|
||
INSERT INTO `la_operation_log` VALUES (585, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456725);
|
||
INSERT INTO `la_operation_log` VALUES (586, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777456727);
|
||
INSERT INTO `la_operation_log` VALUES (587, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 17:58:47\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 17:58:40\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":10,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456727);
|
||
INSERT INTO `la_operation_log` VALUES (588, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456731);
|
||
INSERT INTO `la_operation_log` VALUES (589, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456731);
|
||
INSERT INTO `la_operation_log` VALUES (590, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456755);
|
||
INSERT INTO `la_operation_log` VALUES (591, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=9', '{\"id\":\"9\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 17:58:40\",\"delete_time\":null}}', '120.239.179.186', 1777456764);
|
||
INSERT INTO `la_operation_log` VALUES (592, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456768);
|
||
INSERT INTO `la_operation_log` VALUES (593, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456768);
|
||
INSERT INTO `la_operation_log` VALUES (594, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=2&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"2\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":22,\"page_no\":2,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456773);
|
||
INSERT INTO `la_operation_log` VALUES (595, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456776);
|
||
INSERT INTO `la_operation_log` VALUES (596, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"}],\"count\":22,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456809);
|
||
INSERT INTO `la_operation_log` VALUES (597, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":24,\"cid\":\"\",\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"url\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\"}}', '120.239.179.186', 1777456836);
|
||
INSERT INTO `la_operation_log` VALUES (598, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"},{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"}],\"count\":23,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456869);
|
||
INSERT INTO `la_operation_log` VALUES (599, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":25,\"cid\":\"\",\"type\":10,\"name\":\"f1.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"url\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\"}}', '120.239.179.186', 1777456872);
|
||
INSERT INTO `la_operation_log` VALUES (600, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":26,\"cid\":\"\",\"type\":10,\"name\":\"s20.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"}}', '120.239.179.186', 1777456872);
|
||
INSERT INTO `la_operation_log` VALUES (601, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":27,\"cid\":\"\",\"type\":10,\"name\":\"f3.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\"}}', '120.239.179.186', 1777456872);
|
||
INSERT INTO `la_operation_log` VALUES (602, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":28,\"cid\":\"\",\"type\":10,\"name\":\"f2.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"}}', '120.239.179.186', 1777456873);
|
||
INSERT INTO `la_operation_log` VALUES (603, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=2&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"2\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":13,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1banner.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"create_time\":\"2026-04-29 16:51:42\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\"},{\"id\":12,\"cid\":0,\"type\":10,\"name\":\"user_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837e50038157.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837e50038157.png\"},{\"id\":11,\"cid\":0,\"type\":10,\"name\":\"notice.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837057b86552.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837057b86552.png\"},{\"id\":10,\"cid\":0,\"type\":10,\"name\":\"booking_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438374d3c27025.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438374d3c27025.png\"},{\"id\":9,\"cid\":0,\"type\":10,\"name\":\"member.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377fa442293.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377fa442293.png\"},{\"id\":8,\"cid\":0,\"type\":10,\"name\":\"notice_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f77f93518.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f77f93518.png\"},{\"id\":7,\"cid\":0,\"type\":10,\"name\":\"booking.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383740d969182.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383740d969182.png\"},{\"id\":6,\"cid\":0,\"type\":10,\"name\":\"home_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291438377aa480378.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291438377aa480378.png\"},{\"id\":5,\"cid\":0,\"type\":10,\"name\":\"user.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042914383790b9b4939.png\"},{\"id\":4,\"cid\":0,\"type\":10,\"name\":\"home.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837f27420180.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837f27420180.png\"},{\"id\":3,\"cid\":0,\"type\":10,\"name\":\"member_s.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429143837116b78584.png\",\"create_time\":\"2026-04-29 14:38:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429143837116b78584.png\"},{\"id\":2,\"cid\":0,\"type\":10,\"name\":\"80885f334ca315f4ffd69cdc34ac1a5e_thumb.jpg\",\"uri\":\"uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\",\"create_time\":\"2026-04-17 12:51:18\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260417\\/202604171251186daad1656.jpg\"}],\"count\":27,\"page_no\":2,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456874);
|
||
INSERT INTO `la_operation_log` VALUES (604, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"},{\"id\":16,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-3背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"create_time\":\"2026-04-29 16:57:06\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\"},{\"id\":15,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"create_time\":\"2026-04-29 16:56:44\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\"},{\"id\":14,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-1首页.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"create_time\":\"2026-04-29 16:54:37\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\"}],\"count\":27,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456876);
|
||
INSERT INTO `la_operation_log` VALUES (605, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":29,\"cid\":\"\",\"type\":10,\"name\":\"s1.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\"}}', '120.239.179.186', 1777456876);
|
||
INSERT INTO `la_operation_log` VALUES (606, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":30,\"cid\":\"\",\"type\":10,\"name\":\"s3.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"url\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"}}', '120.239.179.186', 1777456882);
|
||
INSERT INTO `la_operation_log` VALUES (607, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":31,\"cid\":\"\",\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"url\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"}}', '120.239.179.186', 1777456885);
|
||
INSERT INTO `la_operation_log` VALUES (608, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/edit', '{\"id\":\"9\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"0\",\"end_time\":\"0\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"编辑成功\",\"data\":[]}', '120.239.179.186', 1777456886);
|
||
INSERT INTO `la_operation_log` VALUES (609, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 17:58:47\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":10,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456886);
|
||
INSERT INTO `la_operation_log` VALUES (610, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=10', '{\"id\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 17:58:47\",\"delete_time\":null}}', '120.239.179.186', 1777456889);
|
||
INSERT INTO `la_operation_log` VALUES (611, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456892);
|
||
INSERT INTO `la_operation_log` VALUES (612, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"}],\"count\":30,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456892);
|
||
INSERT INTO `la_operation_log` VALUES (613, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/edit', '{\"id\":\"10\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"0\",\"end_time\":\"0\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"编辑成功\",\"data\":[]}', '120.239.179.186', 1777456900);
|
||
INSERT INTO `la_operation_log` VALUES (614, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 18:01:40\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":10,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456900);
|
||
INSERT INTO `la_operation_log` VALUES (615, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456902);
|
||
INSERT INTO `la_operation_log` VALUES (616, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"}],\"count\":30,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456902);
|
||
INSERT INTO `la_operation_log` VALUES (617, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777456909);
|
||
INSERT INTO `la_operation_log` VALUES (618, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":11,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:49\",\"update_time\":\"2026-04-29 18:01:49\",\"delete_time\":null},{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 18:01:40\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":11,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456909);
|
||
INSERT INTO `la_operation_log` VALUES (619, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777456913);
|
||
INSERT INTO `la_operation_log` VALUES (620, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"}],\"count\":30,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456913);
|
||
INSERT INTO `la_operation_log` VALUES (621, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777456918);
|
||
INSERT INTO `la_operation_log` VALUES (622, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:58\",\"update_time\":\"2026-04-29 18:01:58\",\"delete_time\":null},{\"id\":11,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:49\",\"update_time\":\"2026-04-29 18:01:49\",\"delete_time\":null},{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 18:01:40\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":12,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777456918);
|
||
INSERT INTO `la_operation_log` VALUES (623, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=4', '{\"id\":\"4\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null}}', '120.239.179.186', 1777458167);
|
||
INSERT INTO `la_operation_log` VALUES (624, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/detail?id=4', '{\"id\":\"4\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 16:57:50\",\"delete_time\":null}}', '120.239.179.186', 1777458174);
|
||
INSERT INTO `la_operation_log` VALUES (625, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777458176);
|
||
INSERT INTO `la_operation_log` VALUES (626, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"},{\"id\":17,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291657178a70d3173.png\",\"create_time\":\"2026-04-29 16:57:17\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657178a70d3173.png\"}],\"count\":30,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777458177);
|
||
INSERT INTO `la_operation_log` VALUES (627, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":32,\"cid\":\"\",\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"url\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"}}', '120.239.179.186', 1777458184);
|
||
INSERT INTO `la_operation_log` VALUES (628, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":32,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"create_time\":\"2026-04-29 18:23:04\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"},{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"}],\"count\":31,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777458184);
|
||
INSERT INTO `la_operation_log` VALUES (629, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/edit', '{\"id\":\"4\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"0\",\"end_time\":\"0\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"编辑成功\",\"data\":[]}', '120.239.179.186', 1777458188);
|
||
INSERT INTO `la_operation_log` VALUES (630, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:58\",\"update_time\":\"2026-04-29 18:01:58\",\"delete_time\":null},{\"id\":11,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:49\",\"update_time\":\"2026-04-29 18:01:49\",\"delete_time\":null},{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 18:01:40\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 18:23:08\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":12,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777458188);
|
||
INSERT INTO `la_operation_log` VALUES (631, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777473906);
|
||
INSERT INTO `la_operation_log` VALUES (632, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777473906);
|
||
INSERT INTO `la_operation_log` VALUES (633, 0, '', '', ' 基础配置', 'GET', 'http://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '127.0.0.1', 1777473906);
|
||
INSERT INTO `la_operation_log` VALUES (634, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"admin\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":0,\"show\":1,\"msg\":\"账号不存在\",\"data\":[]}', '127.0.0.1', 1777473920);
|
||
INSERT INTO `la_operation_log` VALUES (635, 0, '', '', ' 账号登录', 'POST', 'http://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"admin\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":0,\"show\":1,\"msg\":\"账号不存在\",\"data\":[]}', '127.0.0.1', 1777473924);
|
||
INSERT INTO `la_operation_log` VALUES (636, 0, '', '', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777486924);
|
||
INSERT INTO `la_operation_log` VALUES (637, 0, '', '', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777486924);
|
||
INSERT INTO `la_operation_log` VALUES (638, 0, '', '', ' 账号登录', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"hajimi\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":0,\"show\":1,\"msg\":\"账号不存在\",\"data\":[]}', '120.239.179.186', 1777486926);
|
||
INSERT INTO `la_operation_log` VALUES (639, 0, '', '', ' 账号登录', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/login/account', '{\"account\":\"wisdom\",\"password\":\"******\",\"terminal\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"wisdom\",\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\",\"role_name\":\"系统管理员\",\"token\":\"36b56ccc55cbfae08fb8a31fcdb52c20\"}}', '120.239.179.186', 1777487011);
|
||
INSERT INTO `la_operation_log` VALUES (640, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":185,\"pid\":29,\"type\":\"C\",\"name\":\"联系方式\",\"icon\":\"\",\"sort\":2,\"perms\":\"setting.web.web_setting\\/getContact\",\"paths\":\"contact\",\"component\":\"setting\\/website\\/contact\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-30 02:18:43\",\"update_time\":\"2026-04-30 02:18:43\"},{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777487011);
|
||
INSERT INTO `la_operation_log` VALUES (641, 1, 'wisdom', 'wisdom', ' 工作台', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/workbench/index', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"version\":{\"version\":\"1.9.4\",\"website\":\"www.likeadmin.cn\\/\",\"name\":\"安铂公寓\",\"based\":\"vue3.x、ElementUI、MySQL\",\"channel\":{\"website\":\"https:\\/\\/www.likeadmin.cn\",\"gitee\":\"https:\\/\\/gitee.com\\/likeadmin\\/likeadmin_php\"}},\"today\":{\"time\":\"2026-04-30 02:23:32\",\"today_sales\":100,\"total_sales\":1000,\"today_visitor\":10,\"total_visitor\":100,\"today_new_user\":30,\"total_new_user\":3000,\"order_num\":12,\"order_sum\":255},\"menu\":[{\"name\":\"管理员\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_admin.png\",\"url\":\"\\/permission\\/admin\"},{\"name\":\"角色管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_role.png\",\"url\":\"\\/permission\\/role\"},{\"name\":\"部门管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dept.png\",\"url\":\"\\/organization\\/department\"},{\"name\":\"字典管理\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_dict.png\",\"url\":\"\\/setting\\/dev_tools\\/dict\"},{\"name\":\"代码生成器\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_generator.png\",\"url\":\"\\/dev_tools\\/code\"},{\"name\":\"素材中心\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_file.png\",\"url\":\"\\/app\\/material\\/index\"},{\"name\":\"菜单权限\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_auth.png\",\"url\":\"\\/permission\\/menu\"},{\"name\":\"网站信息\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/menu_web.png\",\"url\":\"\\/setting\\/website\\/information\"}],\"visitor\":{\"date\":[\"04\\/30\",\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\",\"04\\/23\",\"04\\/22\",\"04\\/21\",\"04\\/20\",\"04\\/19\",\"04\\/18\",\"04\\/17\",\"04\\/16\"],\"list\":[{\"name\":\"访客数\",\"data\":[12,19,8,12,60,71,70,66,1,44,86,38,12,88,13]}]},\"support\":[{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/qq_group.png\",\"title\":\"官方公众号\",\"desc\":\"关注官方公众号\"},{\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/customer_service.jpg\",\"title\":\"添加企业客服微信\",\"desc\":\"想了解更多请添加客服\"}],\"sale\":{\"date\":[\"04\\/30\",\"04\\/29\",\"04\\/28\",\"04\\/27\",\"04\\/26\",\"04\\/25\",\"04\\/24\"],\"list\":[{\"name\":\"销售量\",\"data\":[87,142,93,132,39,118,143]}]}}}', '120.239.179.186', 1777487012);
|
||
INSERT INTO `la_operation_log` VALUES (642, 1, 'wisdom', 'wisdom', ' 获取H5设置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/channel.web_page_setting/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"status\":1,\"page_status\":0,\"page_url\":\"\",\"url\":\"https:\\/\\/server.anbo.dev.drawsnake.cn\\/mobile\"}}', '120.239.179.186', 1777487025);
|
||
INSERT INTO `la_operation_log` VALUES (643, 1, 'wisdom', 'wisdom', ' 获取微信开放平台设置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/channel.open_setting/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"app_id\":\"\",\"app_secret\":\"\"}}', '120.239.179.186', 1777487029);
|
||
INSERT INTO `la_operation_log` VALUES (644, 1, 'wisdom', 'wisdom', ' 获取小程序配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/channel.mnp_settings/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"\",\"original_id\":\"\",\"qr_code\":\"\",\"app_id\":\"\",\"app_secret\":\"\",\"request_domain\":\"https:\\/\\/server.anbo.dev.drawsnake.cn\",\"socket_domain\":\"wss:\\/\\/server.anbo.dev.drawsnake.cn\",\"upload_file_domain\":\"https:\\/\\/server.anbo.dev.drawsnake.cn\",\"download_file_domain\":\"https:\\/\\/server.anbo.dev.drawsnake.cn\",\"udp_domain\":\"udp:\\/\\/server.anbo.dev.drawsnake.cn\",\"business_domain\":\"server.anbo.dev.drawsnake.cn\"}}', '120.239.179.186', 1777487030);
|
||
INSERT INTO `la_operation_log` VALUES (645, 1, 'wisdom', 'wisdom', ' 获取装修修页面详情', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/decorate.page/detail?id=1', '{\"id\":\"1\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":{\"id\":1,\"type\":1,\"name\":\"商城首页\",\"data\":\"[{\\\"title\\\":\\\"搜索\\\",\\\"name\\\":\\\"search\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页轮播图\\\",\\\"name\\\":\\\"banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":6,\\\"name\\\":\\\"来自瓷器的爱\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":6},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner001_bg.png\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":3,\\\"name\\\":\\\"金山电池公布“沪广深市民绿色生活方式”调查结果\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":3},\\\"type\\\":\\\"article\\\"},\\\"is_show\\\":\\\"1\\\",\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner002_bg.png\\\"},{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"id\\\":1,\\\"name\\\":\\\"让生活更精致!五款居家好物推荐,实用性超高\\\",\\\"path\\\":\\\"\\/pages\\/news_detail\\/news_detail\\\",\\\"query\\\":{\\\"id\\\":1},\\\"type\\\":\\\"article\\\"},\\\"bg\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/banner003_bg.png\\\"}],\\\"style\\\":1,\\\"bg_style\\\":1},\\\"styles\\\":{}},{\\\"title\\\":\\\"导航菜单\\\",\\\"name\\\":\\\"nav\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav01.png\\\",\\\"name\\\":\\\"资讯中心\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/news\\/news\\\",\\\"name\\\":\\\"文章资讯\\\",\\\"type\\\":\\\"shop\\\",\\\"canTab\\\":true},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav03.png\\\",\\\"name\\\":\\\"个人设置\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/user_set\\/user_set\\\",\\\"name\\\":\\\"个人设置\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav02.png\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/collection\\/collection\\\",\\\"name\\\":\\\"我的收藏\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav05.png\\\",\\\"name\\\":\\\"关于我们\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/as_us\\/as_us\\\",\\\"name\\\":\\\"关于我们\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"},{\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/nav04.png\\\",\\\"name\\\":\\\"联系客服\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/customer_service\\/customer_service\\\",\\\"name\\\":\\\"联系客服\\\",\\\"type\\\":\\\"shop\\\"},\\\"is_show\\\":\\\"1\\\"}],\\\"style\\\":2,\\\"per_line\\\":5,\\\"show_line\\\":2},\\\"styles\\\":{}},{\\\"title\\\":\\\"首页中部轮播图\\\",\\\"name\\\":\\\"middle-banner\\\",\\\"content\\\":{\\\"enabled\\\":1,\\\"data\\\":[{\\\"is_show\\\":\\\"1\\\",\\\"image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/index_ad01.png\\\",\\\"name\\\":\\\"\\\",\\\"link\\\":{\\\"path\\\":\\\"\\/pages\\/agreement\\/agreement\\\",\\\"name\\\":\\\"隐私政策\\\",\\\"query\\\":{\\\"type\\\":\\\"privacy\\\"},\\\"type\\\":\\\"shop\\\"}}]},\\\"styles\\\":{}},{\\\"id\\\":\\\"l84almsk2uhyf\\\",\\\"title\\\":\\\"资讯\\\",\\\"name\\\":\\\"news\\\",\\\"disabled\\\":1,\\\"content\\\":{},\\\"styles\\\":{}}]\",\"meta\":\"[{\\\"title\\\":\\\"页面设置\\\",\\\"name\\\":\\\"page-meta\\\",\\\"content\\\":{\\\"title\\\":\\\"首页\\\",\\\"bg_type\\\":\\\"2\\\",\\\"bg_color\\\":\\\"#2F80ED\\\",\\\"bg_image\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_meta_bg01.png\\\",\\\"text_color\\\":\\\"2\\\",\\\"title_type\\\":\\\"2\\\",\\\"title_img\\\":\\\"\\/resource\\/image\\/adminapi\\/default\\/page_mate_title.png\\\"},\\\"styles\\\":{}}]\",\"create_time\":\"2022-08-29 15:13:08\",\"update_time\":\"2024-03-21 10:55:00\"}}', '120.239.179.186', 1777487034);
|
||
INSERT INTO `la_operation_log` VALUES (646, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777487034);
|
||
INSERT INTO `la_operation_log` VALUES (647, 1, 'wisdom', 'wisdom', ' 文章列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/decorate.data/article?limit=10', '{\"limit\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"获取成功\",\"data\":[{\"click\":15,\"id\":3,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"create_time\":\"2022-09-16 18:04:25\"},{\"click\":6,\"id\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"create_time\":\"2022-09-16 18:07:34\"},{\"click\":5,\"id\":1,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"create_time\":\"2022-09-16 16:42:39\"}]}', '120.239.179.186', 1777487034);
|
||
INSERT INTO `la_operation_log` VALUES (648, 1, 'wisdom', 'wisdom', ' 获取联系方式配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getContact', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"inAmber 安铂庭酒店式公寓\",\"address\":\"上海市闵行区竹园路559号\",\"phone\":\"021-00008888\",\"email\":\"reception@inamber.com\",\"latitude\":31.0586,\"longitude\":121.5128,\"logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"work_time\":\"我们的工作时间为早上10:00-晚上8:00\"}}', '120.239.179.186', 1777487043);
|
||
INSERT INTO `la_operation_log` VALUES (649, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777487047);
|
||
INSERT INTO `la_operation_log` VALUES (650, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":32,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"create_time\":\"2026-04-29 18:23:04\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"},{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"},{\"id\":18,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\",\"create_time\":\"2026-04-29 17:19:11\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917190585dfc3673.png\"}],\"count\":31,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777487047);
|
||
INSERT INTO `la_operation_log` VALUES (651, 1, 'wisdom', 'wisdom', ' 上传图片', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/upload/image', '{\"cid\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"上传成功\",\"data\":{\"id\":33,\"cid\":\"\",\"type\":10,\"name\":\"logoicon.png\",\"uri\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"url\":\"uploads\\/images\\/20260430\\/202604300225238efbc6661.png\"}}', '120.239.179.186', 1777487123);
|
||
INSERT INTO `la_operation_log` VALUES (652, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":33,\"cid\":0,\"type\":10,\"name\":\"logoicon.png\",\"uri\":\"uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"create_time\":\"2026-04-30 02:25:23\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\"},{\"id\":32,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"create_time\":\"2026-04-29 18:23:04\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"},{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"}],\"count\":32,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777487123);
|
||
INSERT INTO `la_operation_log` VALUES (653, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777487129);
|
||
INSERT INTO `la_operation_log` VALUES (654, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":33,\"cid\":0,\"type\":10,\"name\":\"logoicon.png\",\"uri\":\"uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"create_time\":\"2026-04-30 02:25:23\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\"},{\"id\":32,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"create_time\":\"2026-04-29 18:23:04\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"},{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"}],\"count\":32,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777487129);
|
||
INSERT INTO `la_operation_log` VALUES (655, 1, 'wisdom', 'wisdom', ' 设置联系方式配置', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/setContact', '{\"name\":\"inAmber \\u5b89\\u94c2\\u5ead\\u9152\\u5e97\\u5f0f\\u516c\\u5bd3\",\"logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"address\":\"\\u4e0a\\u6d77\\u5e02\\u95f5\\u884c\\u533a\\u7af9\\u56ed\\u8def559\\u53f7\",\"phone\":\"021-00008888\",\"email\":\"reception@inamber.com\",\"work_time\":\"\\u6211\\u4eec\\u7684\\u5de5\\u4f5c\\u65f6\\u95f4\\u4e3a\\u65e9\\u4e0a10:00-\\u665a\\u4e0a8:00\",\"latitude\":\"31.0586\",\"longitude\":\"121.5128\"}', '{\"code\":1,\"show\":1,\"msg\":\"设置成功\",\"data\":[]}', '120.239.179.186', 1777487135);
|
||
INSERT INTO `la_operation_log` VALUES (656, 1, 'wisdom', 'wisdom', ' 获取联系方式配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getContact', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"inAmber 安铂庭酒店式公寓\",\"address\":\"上海市闵行区竹园路559号\",\"phone\":\"021-00008888\",\"email\":\"reception@inamber.com\",\"latitude\":31.0586,\"longitude\":121.5128,\"logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"work_time\":\"我们的工作时间为早上10:00-晚上8:00\"}}', '120.239.179.186', 1777487135);
|
||
INSERT INTO `la_operation_log` VALUES (657, 1, 'wisdom', 'wisdom', ' 获取联系方式配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getContact', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"inAmber 安铂庭酒店式公寓\",\"address\":\"上海市闵行区竹园路559号\",\"phone\":\"021-00008888\",\"email\":\"reception@inamber.com\",\"latitude\":31.0586,\"longitude\":121.5128,\"logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"brand_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"work_time\":\"我们的工作时间为早上10:00-晚上8:00\"}}', '120.239.179.186', 1777487345);
|
||
INSERT INTO `la_operation_log` VALUES (658, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777487416);
|
||
INSERT INTO `la_operation_log` VALUES (659, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":33,\"cid\":0,\"type\":10,\"name\":\"logoicon.png\",\"uri\":\"uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"create_time\":\"2026-04-30 02:25:23\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\"},{\"id\":32,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"create_time\":\"2026-04-29 18:23:04\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"},{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"}],\"count\":32,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777487416);
|
||
INSERT INTO `la_operation_log` VALUES (660, 1, 'wisdom', 'wisdom', ' 设置联系方式配置', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/setContact', '{\"name\":\"inAmber \\u5b89\\u94c2\\u5ead\\u9152\\u5e97\\u5f0f\\u516c\\u5bd3\",\"logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"brand_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"address\":\"\\u4e0a\\u6d77\\u5e02\\u95f5\\u884c\\u533a\\u7af9\\u56ed\\u8def559\\u53f7\",\"phone\":\"021-00008888\",\"email\":\"reception@inamber.com\",\"work_time\":\"\\u6211\\u4eec\\u7684\\u5de5\\u4f5c\\u65f6\\u95f4\\u4e3a\\u65e9\\u4e0a10:00-\\u665a\\u4e0a8:00\",\"latitude\":\"31.0586\",\"longitude\":\"121.5128\"}', '{\"code\":1,\"show\":1,\"msg\":\"设置成功\",\"data\":[]}', '120.239.179.186', 1777487420);
|
||
INSERT INTO `la_operation_log` VALUES (661, 1, 'wisdom', 'wisdom', ' 获取联系方式配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/setting.web.web_setting/getContact', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"name\":\"inAmber 安铂庭酒店式公寓\",\"address\":\"上海市闵行区竹园路559号\",\"phone\":\"021-00008888\",\"email\":\"reception@inamber.com\",\"latitude\":31.0586,\"longitude\":121.5128,\"logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"brand_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"work_time\":\"我们的工作时间为早上10:00-晚上8:00\"}}', '120.239.179.186', 1777487420);
|
||
INSERT INTO `la_operation_log` VALUES (662, 1, 'wisdom', 'wisdom', ' 根据类型获取字典数据', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/dict?type=banner_position', '{\"type\":\"banner_position\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"banner_position\":[{\"id\":24,\"name\":\"首页区域1-主视觉\",\"value\":\"home_1\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":1,\"status\":1,\"remark\":\"Hero轮播背景图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":25,\"name\":\"首页区域2-品牌介绍\",\"value\":\"home_2\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":2,\"status\":1,\"remark\":\"品牌Logo+介绍图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":26,\"name\":\"首页区域3-风格户型\",\"value\":\"home_3\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":3,\"status\":1,\"remark\":\"户型轮播图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":27,\"name\":\"首页区域4-社区设施\",\"value\":\"home_4\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":4,\"status\":1,\"remark\":\"社区设施Tab图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":28,\"name\":\"首页区域5-公众号\",\"value\":\"home_5\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"公众号引导栏\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":29,\"name\":\"首页区域6-联系信息\",\"value\":\"home_6\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"底部联系信息图\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":30,\"name\":\"预定页轮播\",\"value\":\"booking_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":10,\"status\":1,\"remark\":\"预定页顶部轮播\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":31,\"name\":\"会员页Banner\",\"value\":\"member_banner\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":11,\"status\":1,\"remark\":\"会员页Banner\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":32,\"name\":\"弹窗广告\",\"value\":\"popup\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":20,\"status\":1,\"remark\":\"弹窗广告\",\"create_time\":\"2026-04-29 15:41:28\",\"update_time\":null,\"delete_time\":null},{\"id\":33,\"name\":\"首页导航Logo\",\"value\":\"home_nav\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":5,\"status\":1,\"remark\":\"首页顶部导航栏Logo图片\",\"create_time\":\"2026-04-29 17:06:23\",\"update_time\":\"2026-04-29 17:06:23\",\"delete_time\":null},{\"id\":34,\"name\":\"风格户型轮播\",\"value\":\"home_3_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":35,\"status\":1,\"remark\":\"首页区域3背景上方的轮播图\",\"create_time\":\"2026-04-29 17:17:33\",\"update_time\":\"2026-04-29 17:17:33\",\"delete_time\":null},{\"id\":35,\"name\":\"社区设施轮播\",\"value\":\"home_4_slide\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":45,\"status\":1,\"remark\":\"首页区域4背景上方的轮播图\",\"create_time\":\"2026-04-29 17:55:18\",\"update_time\":\"2026-04-29 17:55:18\",\"delete_time\":null},{\"id\":36,\"name\":\"预定页轮播图\",\"value\":\"booking_hero\",\"type_id\":6,\"type_value\":\"banner_position\",\"sort\":6,\"status\":1,\"remark\":\"\",\"create_time\":\"2026-04-30 02:45:32\",\"update_time\":null,\"delete_time\":null}]}}', '120.239.179.186', 1777488365);
|
||
INSERT INTO `la_operation_log` VALUES (663, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":12,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:58\",\"update_time\":\"2026-04-29 18:01:58\",\"delete_time\":null},{\"id\":11,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:49\",\"update_time\":\"2026-04-29 18:01:49\",\"delete_time\":null},{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 18:01:40\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 18:23:08\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":12,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777488365);
|
||
INSERT INTO `la_operation_log` VALUES (664, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777488387);
|
||
INSERT INTO `la_operation_log` VALUES (665, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":33,\"cid\":0,\"type\":10,\"name\":\"logoicon.png\",\"uri\":\"uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"create_time\":\"2026-04-30 02:25:23\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\"},{\"id\":32,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"create_time\":\"2026-04-29 18:23:04\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"},{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"}],\"count\":32,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777488388);
|
||
INSERT INTO `la_operation_log` VALUES (666, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"booking_hero\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777488393);
|
||
INSERT INTO `la_operation_log` VALUES (667, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":13,\"title\":\"\",\"subtitle\":\"\",\"position\":\"booking_hero\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-30 02:46:33\",\"update_time\":\"2026-04-30 02:46:33\",\"delete_time\":null},{\"id\":12,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:58\",\"update_time\":\"2026-04-29 18:01:58\",\"delete_time\":null},{\"id\":11,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:49\",\"update_time\":\"2026-04-29 18:01:49\",\"delete_time\":null},{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 18:01:40\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 18:23:08\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":13,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777488393);
|
||
INSERT INTO `la_operation_log` VALUES (668, 1, 'wisdom', 'wisdom', ' 分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/listCate?page_type=0&type=10', '{\"page_type\":\"0\",\"type\":\"10\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[],\"count\":0,\"page_no\":1,\"page_size\":25000,\"extend\":[]}}', '120.239.179.186', 1777488398);
|
||
INSERT INTO `la_operation_log` VALUES (669, 1, 'wisdom', 'wisdom', ' 文件列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/file/lists?page_no=1&page_size=15&name=&type=10&cid=&source=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"name\":\"\",\"type\":\"10\",\"cid\":\"\",\"source\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":33,\"cid\":0,\"type\":10,\"name\":\"logoicon.png\",\"uri\":\"uploads\\/images\\/20260430\\/202604300225238efbc6661.png\",\"create_time\":\"2026-04-30 02:25:23\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260430\\/202604300225238efbc6661.png\"},{\"id\":32,\"cid\":0,\"type\":10,\"name\":\"inAmber层级1-4背景.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"create_time\":\"2026-04-29 18:23:04\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\"},{\"id\":31,\"cid\":0,\"type\":10,\"name\":\"包房KTV .png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"create_time\":\"2026-04-29 18:01:25\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\"},{\"id\":30,\"cid\":0,\"type\":10,\"name\":\"s3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"create_time\":\"2026-04-29 18:01:22\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\"},{\"id\":29,\"cid\":0,\"type\":10,\"name\":\"s1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"create_time\":\"2026-04-29 18:01:16\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\"},{\"id\":28,\"cid\":0,\"type\":10,\"name\":\"f2.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\",\"create_time\":\"2026-04-29 18:01:13\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108ac6fa7407.png\"},{\"id\":27,\"cid\":0,\"type\":10,\"name\":\"f3.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180107c52963532.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180107c52963532.png\"},{\"id\":26,\"cid\":0,\"type\":10,\"name\":\"s20.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\"},{\"id\":25,\"cid\":0,\"type\":10,\"name\":\"f1.png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"create_time\":\"2026-04-29 18:01:12\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\"},{\"id\":24,\"cid\":0,\"type\":10,\"name\":\"精酿酒吧 (2).png\",\"uri\":\"uploads\\/images\\/20260429\\/2026042917590620d139968.png\",\"create_time\":\"2026-04-29 18:00:36\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042917590620d139968.png\"},{\"id\":23,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"create_time\":\"2026-04-29 17:20:07\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\"},{\"id\":22,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171924481019277.png\",\"create_time\":\"2026-04-29 17:20:05\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171924481019277.png\"},{\"id\":21,\"cid\":0,\"type\":10,\"name\":\"pic2.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"create_time\":\"2026-04-29 17:19:38\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\"},{\"id\":20,\"cid\":0,\"type\":10,\"name\":\"pic1.png\",\"uri\":\"uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"create_time\":\"2026-04-29 17:19:35\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\"},{\"id\":19,\"cid\":0,\"type\":10,\"name\":\"pic3.jpg\",\"uri\":\"uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"create_time\":\"2026-04-29 17:19:34\",\"url\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\"}],\"count\":32,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777488398);
|
||
INSERT INTO `la_operation_log` VALUES (670, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'POST', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/add', '{\"id\":\"\",\"title\":\"\",\"subtitle\":\"\",\"position\":\"booking_hero\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"icon\":\"\",\"link_type\":\"1\",\"link_value\":\"\",\"start_time\":\"\",\"end_time\":\"\",\"sort\":\"0\",\"status\":\"1\"}', '{\"code\":1,\"show\":1,\"msg\":\"添加成功\",\"data\":[]}', '120.239.179.186', 1777488403);
|
||
INSERT INTO `la_operation_log` VALUES (671, 1, 'wisdom', 'wisdom', '无法获取操作名称,请给控制器方法注释', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/banner/lists?page_no=1&page_size=15&position=&status=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"position\":\"\",\"status\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"id\":14,\"title\":\"\",\"subtitle\":\"\",\"position\":\"booking_hero\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171941892461376.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-30 02:46:43\",\"update_time\":\"2026-04-30 02:46:43\",\"delete_time\":null},{\"id\":13,\"title\":\"\",\"subtitle\":\"\",\"position\":\"booking_hero\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918010793b473647.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-30 02:46:33\",\"update_time\":\"2026-04-30 02:46:33\",\"delete_time\":null},{\"id\":12,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108be2a65177.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:58\",\"update_time\":\"2026-04-29 18:01:58\",\"delete_time\":null},{\"id\":11,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291801090a6fe4263.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 18:01:49\",\"update_time\":\"2026-04-29 18:01:49\",\"delete_time\":null},{\"id\":10,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108388662857.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:47\",\"update_time\":\"2026-04-29 18:01:40\",\"delete_time\":null},{\"id\":9,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429180108d5f288703.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:58:40\",\"update_time\":\"2026-04-29 18:01:26\",\"delete_time\":null},{\"id\":8,\"title\":\"北欧风尚\",\"subtitle\":\"Loft户型|一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719234803a1340.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:53\",\"update_time\":\"2026-04-29 17:28:52\",\"delete_time\":null},{\"id\":7,\"title\":\"雅致法式\",\"subtitle\":\"一字户型|L型户型\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429171923dc3d25828.jpg\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:24\",\"update_time\":\"2026-04-29 17:29:36\",\"delete_time\":null},{\"id\":6,\"title\":\"美式中古\",\"subtitle\":\"一字户型|L型户型 |行政套房\",\"position\":\"home_3_slide\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291719066e31e8383.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:21:13\",\"update_time\":\"2026-04-29 17:30:02\",\"delete_time\":null},{\"id\":5,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_nav\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165142f49ea7323.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 17:07:32\",\"update_time\":\"2026-04-29 17:07:32\",\"delete_time\":null},{\"id\":4,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_4\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/2026042918230451cfb9832.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:50\",\"update_time\":\"2026-04-29 18:23:08\",\"delete_time\":null},{\"id\":3,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_3\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/202604291657067ef9e8034.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:57:38\",\"update_time\":\"2026-04-29 16:57:38\",\"delete_time\":null},{\"id\":2,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_2\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165644075133819.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:56:48\",\"update_time\":\"2026-04-29 16:56:48\",\"delete_time\":null},{\"id\":1,\"title\":\"\",\"subtitle\":\"\",\"position\":\"home_1\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/uploads\\/images\\/20260429\\/20260429165436b91348853.png\",\"icon\":\"\",\"link_type\":1,\"link_value\":\"\",\"start_time\":0,\"end_time\":0,\"sort\":0,\"click_count\":0,\"status\":1,\"create_time\":\"2026-04-29 16:51:49\",\"update_time\":\"2026-04-29 16:54:43\",\"delete_time\":null}],\"count\":14,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777488403);
|
||
INSERT INTO `la_operation_log` VALUES (672, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.186', 1777489018);
|
||
INSERT INTO `la_operation_log` VALUES (673, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777489018);
|
||
INSERT INTO `la_operation_log` VALUES (674, 1, 'wisdom', 'wisdom', ' 查看资讯分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/lists?page_no=1&page_size=15', '{\"page_no\":\"1\",\"page_size\":\"15\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"article_count\":1,\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"article_count\":1,\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"article_count\":1,\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777489019);
|
||
INSERT INTO `la_operation_log` VALUES (675, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.186', 1777489020);
|
||
INSERT INTO `la_operation_log` VALUES (676, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777489020);
|
||
INSERT INTO `la_operation_log` VALUES (677, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777489162);
|
||
INSERT INTO `la_operation_log` VALUES (678, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":185,\"pid\":29,\"type\":\"C\",\"name\":\"联系方式\",\"icon\":\"\",\"sort\":2,\"perms\":\"setting.web.web_setting\\/getContact\",\"paths\":\"contact\",\"component\":\"setting\\/website\\/contact\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-30 02:18:43\",\"update_time\":\"2026-04-30 02:18:43\"},{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777489162);
|
||
INSERT INTO `la_operation_log` VALUES (679, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777489163);
|
||
INSERT INTO `la_operation_log` VALUES (680, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.186', 1777489163);
|
||
INSERT INTO `la_operation_log` VALUES (681, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777489163);
|
||
INSERT INTO `la_operation_log` VALUES (682, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777489194);
|
||
INSERT INTO `la_operation_log` VALUES (683, 1, 'wisdom', 'wisdom', ' 获取当前管理员信息', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/auth.admin/mySelf', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"user\":{\"role_id\":[],\"dept_id\":[1],\"jobs_id\":[],\"id\":1,\"account\":\"wisdom\",\"name\":\"wisdom\",\"disable\":0,\"root\":1,\"multipoint_login\":1,\"avatar\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/avatar.png\"},\"menu\":[{\"id\":5,\"pid\":0,\"type\":\"C\",\"name\":\"工作台\",\"icon\":\"el-icon-Monitor\",\"sort\":1000,\"perms\":\"workbench\\/index\",\"paths\":\"workbench\",\"component\":\"workbench\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:39:53\",\"update_time\":\"2022-09-28 16:49:41\"},{\"id\":117,\"pid\":0,\"type\":\"M\",\"name\":\"用户管理\",\"icon\":\"el-icon-User\",\"sort\":900,\"perms\":\"\",\"paths\":\"consumer\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:11\",\"update_time\":\"2024-03-15 11:07:54\",\"children\":[{\"id\":118,\"pid\":117,\"type\":\"C\",\"name\":\"用户列表\",\"icon\":\"local-icon-user_guanli\",\"sort\":100,\"perms\":\"user.user\\/lists\",\"paths\":\"lists\",\"component\":\"consumer\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:39:52\",\"update_time\":\"2024-03-15 11:04:05\"},{\"id\":119,\"pid\":117,\"type\":\"C\",\"name\":\"用户详情\",\"icon\":\"\",\"sort\":90,\"perms\":\"user.user\\/detail\",\"paths\":\"lists\\/detail\",\"component\":\"consumer\\/lists\\/detail\",\"selected\":\"\\/consumer\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-23 11:41:10\",\"update_time\":\"2024-03-15 11:04:11\"}]},{\"id\":158,\"pid\":0,\"type\":\"M\",\"name\":\"应用管理\",\"icon\":\"el-icon-Postcard\",\"sort\":800,\"perms\":\"\",\"paths\":\"app\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:10:30\",\"update_time\":\"2024-03-15 11:07:59\",\"children\":[{\"id\":159,\"pid\":158,\"type\":\"C\",\"name\":\"用户充值\",\"icon\":\"local-icon-fukuan\",\"sort\":100,\"perms\":\"recharge.recharge\\/getConfig\",\"paths\":\"recharge\",\"component\":\"app\\/recharge\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 17:24:44\",\"update_time\":\"2024-03-15 11:04:20\"},{\"id\":70,\"pid\":158,\"type\":\"M\",\"name\":\"文章资讯\",\"icon\":\"el-icon-ChatLineSquare\",\"sort\":90,\"perms\":\"\",\"paths\":\"article\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:46:05\",\"update_time\":\"2024-03-15 11:04:27\",\"children\":[{\"id\":71,\"pid\":70,\"type\":\"C\",\"name\":\"文章管理\",\"icon\":\"el-icon-ChatDotSquare\",\"sort\":0,\"perms\":\"article.article\\/lists\",\"paths\":\"lists\",\"component\":\"article\\/lists\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:48:21\",\"update_time\":\"2022-09-28 16:43:35\"},{\"id\":72,\"pid\":70,\"type\":\"C\",\"name\":\"文章添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"article.article\\/add:edit\",\"paths\":\"lists\\/edit\",\"component\":\"article\\/lists\\/edit\",\"selected\":\"\\/article\\/lists\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-21 16:49:13\",\"update_time\":\"2022-09-28 17:11:15\"},{\"id\":73,\"pid\":70,\"type\":\"C\",\"name\":\"文章栏目\",\"icon\":\"el-icon-CollectionTag\",\"sort\":0,\"perms\":\"article.articleCate\\/lists\",\"paths\":\"column\",\"component\":\"article\\/column\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 16:51:27\",\"update_time\":\"2022-09-28 16:44:38\"}]},{\"id\":101,\"pid\":158,\"type\":\"M\",\"name\":\"消息管理\",\"icon\":\"el-icon-ChatDotRound\",\"sort\":80,\"perms\":\"\",\"paths\":\"message\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:23:22\",\"update_time\":\"2024-03-15 11:04:34\",\"children\":[{\"id\":102,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/settingLists\",\"paths\":\"notice\",\"component\":\"message\\/notice\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 17:33:15\",\"update_time\":\"2022-09-22 17:33:15\"},{\"id\":104,\"pid\":101,\"type\":\"C\",\"name\":\"通知设置编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.notice\\/set\",\"paths\":\"notice\\/edit\",\"component\":\"message\\/notice\\/edit\",\"selected\":\"\\/message\\/notice\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-09-22 17:44:33\",\"update_time\":\"2022-09-23 10:01:17\"},{\"id\":107,\"pid\":101,\"type\":\"C\",\"name\":\"短信设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"notice.sms_config\\/getConfig\",\"paths\":\"short_letter\",\"component\":\"message\\/short_letter\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:03:11\",\"update_time\":\"2022-09-28 17:01:48\"}]},{\"id\":179,\"pid\":158,\"type\":\"C\",\"name\":\"广告管理\",\"icon\":\"el-icon-Picture\",\"sort\":50,\"perms\":\"banner\\/lists\",\"paths\":\"banner\",\"component\":\"app\\/banner\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-29 16:40:13\",\"update_time\":\"2026-04-29 16:40:13\"},{\"id\":63,\"pid\":158,\"type\":\"M\",\"name\":\"素材管理\",\"icon\":\"el-icon-Picture\",\"sort\":0,\"perms\":\"\",\"paths\":\"material\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:38:53\",\"update_time\":\"2024-03-15 11:10:43\",\"children\":[{\"id\":64,\"pid\":63,\"type\":\"C\",\"name\":\"素材中心\",\"icon\":\"el-icon-PictureRounded\",\"sort\":0,\"perms\":\"\",\"paths\":\"index\",\"component\":\"material\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-11 10:41:36\",\"update_time\":\"2022-09-28 17:00:53\"}]}]},{\"id\":166,\"pid\":0,\"type\":\"M\",\"name\":\"财务管理\",\"icon\":\"local-icon-user_gaikuang\",\"sort\":700,\"perms\":\"\",\"paths\":\"finance\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:44:29\",\"update_time\":\"2024-03-15 11:08:05\",\"children\":[{\"id\":168,\"pid\":166,\"type\":\"C\",\"name\":\"余额明细\",\"icon\":\"local-icon-qianbao\",\"sort\":100,\"perms\":\"finance.account_log\\/lists\",\"paths\":\"balance_details\",\"component\":\"finance\\/balance_details\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:56:16\",\"update_time\":\"2024-03-15 11:21:34\"},{\"id\":167,\"pid\":166,\"type\":\"C\",\"name\":\"充值记录\",\"icon\":\"el-icon-Wallet\",\"sort\":90,\"perms\":\"recharge.recharge\\/lists\",\"paths\":\"recharge_record\",\"component\":\"finance\\/recharge_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-28 10:52:37\",\"update_time\":\"2024-03-15 11:21:42\"},{\"id\":170,\"pid\":166,\"type\":\"C\",\"name\":\"退款记录\",\"icon\":\"local-icon-heshoujilu\",\"sort\":0,\"perms\":\"finance.refund\\/record\",\"paths\":\"refund_record\",\"component\":\"finance\\/refund_record\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-03-03 10:41:11\",\"update_time\":\"2023-03-03 10:41:11\"}]},{\"id\":96,\"pid\":0,\"type\":\"M\",\"name\":\"装修管理\",\"icon\":\"el-icon-Brush\",\"sort\":600,\"perms\":\"\",\"paths\":\"decoration\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:20:25\",\"update_time\":\"2024-03-15 11:08:19\",\"children\":[{\"id\":175,\"pid\":96,\"type\":\"M\",\"name\":\"移动端\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"mobile\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:25:43\",\"update_time\":\"2024-03-20 18:08:14\",\"children\":[{\"id\":97,\"pid\":175,\"type\":\"C\",\"name\":\"页面装修\",\"icon\":\"el-icon-CopyDocument\",\"sort\":100,\"perms\":\"decorate.page\\/detail\",\"paths\":\"pages\",\"component\":\"decoration\\/pages\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:21:19\",\"update_time\":\"2024-03-20 18:07:36\"},{\"id\":99,\"pid\":175,\"type\":\"C\",\"name\":\"底部导航\",\"icon\":\"el-icon-Position\",\"sort\":90,\"perms\":\"decorate.tabbar\\/detail\",\"paths\":\"tabbar\",\"component\":\"decoration\\/tabbar\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 16:23:24\",\"update_time\":\"2024-03-20 18:07:42\"},{\"id\":173,\"pid\":175,\"type\":\"C\",\"name\":\"系统风格\",\"icon\":\"el-icon-Brush\",\"sort\":80,\"perms\":\"\",\"paths\":\"style\",\"component\":\"decoration\\/style\\/style\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-04-16 16:50:44\",\"update_time\":\"2024-03-20 18:07:58\"}]},{\"id\":176,\"pid\":96,\"type\":\"M\",\"name\":\"PC端\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-03-20 10:26:32\",\"update_time\":\"2024-03-20 18:08:19\",\"children\":[{\"id\":142,\"pid\":176,\"type\":\"C\",\"name\":\"PC端装修\",\"icon\":\"el-icon-Monitor\",\"sort\":8,\"perms\":\"\",\"paths\":\"pc\",\"component\":\"decoration\\/pc\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-14 18:54:44\",\"update_time\":\"2024-03-20 10:26:42\"}]}]},{\"id\":82,\"pid\":0,\"type\":\"M\",\"name\":\"渠道设置\",\"icon\":\"el-icon-Message\",\"sort\":500,\"perms\":\"\",\"paths\":\"channel\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:54:44\",\"update_time\":\"2024-03-15 11:17:29\",\"children\":[{\"id\":83,\"pid\":82,\"type\":\"C\",\"name\":\"h5设置\",\"icon\":\"el-icon-Cellphone\",\"sort\":100,\"perms\":\"channel.web_page_setting\\/getConfig\",\"paths\":\"h5\",\"component\":\"channel\\/h5\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 17:55:58\",\"update_time\":\"2024-03-15 11:22:09\"},{\"id\":94,\"pid\":82,\"type\":\"C\",\"name\":\"微信小程序\",\"icon\":\"local-icon-weixin\",\"sort\":90,\"perms\":\"channel.mnp_settings\\/getConfig\",\"paths\":\"weapp\",\"component\":\"channel\\/weapp\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 15:23:16\",\"update_time\":\"2024-03-15 11:22:21\"},{\"id\":85,\"pid\":82,\"type\":\"M\",\"name\":\"微信公众号\",\"icon\":\"local-icon-dingdan\",\"sort\":80,\"perms\":\"\",\"paths\":\"wx_oa\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:17:50\",\"update_time\":\"2024-03-15 11:22:26\",\"children\":[{\"id\":86,\"pid\":85,\"type\":\"C\",\"name\":\"公众号配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_setting\\/getConfig\",\"paths\":\"config\",\"component\":\"channel\\/wx_oa\\/config\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:21:03\",\"update_time\":\"2022-09-28 16:57:30\"},{\"id\":87,\"pid\":85,\"type\":\"C\",\"name\":\"菜单管理\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_menu\\/detail\",\"paths\":\"menu\",\"component\":\"channel\\/wx_oa\\/menu\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-21 18:22:47\",\"update_time\":\"2022-09-28 16:57:36\"},{\"id\":90,\"pid\":85,\"type\":\"C\",\"name\":\"关注回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"channel.official_account_reply\\/lists\",\"paths\":\"follow\",\"component\":\"channel\\/wx_oa\\/reply\\/follow_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:45:58\",\"update_time\":\"2022-09-22 11:46:06\"},{\"id\":91,\"pid\":85,\"type\":\"C\",\"name\":\"关键字回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"keyword\",\"component\":\"channel\\/wx_oa\\/reply\\/keyword_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:47:25\",\"update_time\":\"2022-09-22 11:47:25\"},{\"id\":93,\"pid\":85,\"type\":\"C\",\"name\":\"默认回复\",\"icon\":\"\",\"sort\":0,\"perms\":\"\",\"paths\":\"default\",\"component\":\"channel\\/wx_oa\\/reply\\/default_reply\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-22 11:49:40\",\"update_time\":\"2022-09-22 11:49:40\"}]},{\"id\":140,\"pid\":82,\"type\":\"C\",\"name\":\"微信开发平台\",\"icon\":\"local-icon-notice_buyer\",\"sort\":70,\"perms\":\"channel.open_setting\\/getConfig\",\"paths\":\"open_setting\",\"component\":\"channel\\/open_setting\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-10-18 17:35:13\",\"update_time\":\"2024-03-15 11:22:31\"}]},{\"id\":25,\"pid\":0,\"type\":\"M\",\"name\":\"组织管理\",\"icon\":\"el-icon-OfficeBuilding\",\"sort\":400,\"perms\":\"\",\"paths\":\"organization\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:31:54\",\"update_time\":\"2024-03-15 11:19:57\",\"children\":[{\"id\":26,\"pid\":25,\"type\":\"C\",\"name\":\"部门管理\",\"icon\":\"el-icon-Coordinate\",\"sort\":100,\"perms\":\"dept.dept\\/lists\",\"paths\":\"department\",\"component\":\"organization\\/department\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:33:09\",\"update_time\":\"2024-03-15 11:22:42\"},{\"id\":27,\"pid\":25,\"type\":\"C\",\"name\":\"岗位管理\",\"icon\":\"el-icon-PriceTag\",\"sort\":90,\"perms\":\"dept.jobs\\/lists\",\"paths\":\"post\",\"component\":\"organization\\/post\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:34:04\",\"update_time\":\"2024-03-15 11:22:47\"}]},{\"id\":4,\"pid\":0,\"type\":\"M\",\"name\":\"权限管理\",\"icon\":\"el-icon-Lock\",\"sort\":300,\"perms\":\"\",\"paths\":\"permission\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:35:56\",\"update_time\":\"2024-03-15 11:20:02\",\"children\":[{\"id\":6,\"pid\":4,\"type\":\"C\",\"name\":\"菜单\",\"icon\":\"el-icon-Operation\",\"sort\":100,\"perms\":\"auth.menu\\/lists\",\"paths\":\"menu\",\"component\":\"permission\\/menu\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":1,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-01 16:42:40\",\"update_time\":\"2024-03-15 11:23:14\"},{\"id\":8,\"pid\":4,\"type\":\"C\",\"name\":\"角色\",\"icon\":\"el-icon-Female\",\"sort\":90,\"perms\":\"auth.role\\/lists\",\"paths\":\"role\",\"component\":\"permission\\/role\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:27:40\",\"update_time\":\"2024-03-15 11:23:20\"},{\"id\":7,\"pid\":4,\"type\":\"C\",\"name\":\"管理员\",\"icon\":\"local-icon-shouyiren\",\"sort\":80,\"perms\":\"auth.admin\\/lists\",\"paths\":\"admin\",\"component\":\"permission\\/admin\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-04 10:26:07\",\"update_time\":\"2024-03-15 11:23:33\"}]},{\"id\":28,\"pid\":0,\"type\":\"M\",\"name\":\"系统设置\",\"icon\":\"el-icon-Setting\",\"sort\":200,\"perms\":\"\",\"paths\":\"setting\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:36:04\",\"update_time\":\"2024-03-15 11:20:07\",\"children\":[{\"id\":29,\"pid\":28,\"type\":\"M\",\"name\":\"网站设置\",\"icon\":\"el-icon-Basketball\",\"sort\":100,\"perms\":\"\",\"paths\":\"website\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:37:10\",\"update_time\":\"2024-03-15 11:24:09\",\"children\":[{\"id\":185,\"pid\":29,\"type\":\"C\",\"name\":\"联系方式\",\"icon\":\"\",\"sort\":2,\"perms\":\"setting.web.web_setting\\/getContact\",\"paths\":\"contact\",\"component\":\"setting\\/website\\/contact\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2026-04-30 02:18:43\",\"update_time\":\"2026-04-30 02:18:43\"},{\"id\":30,\"pid\":29,\"type\":\"C\",\"name\":\"网站信息\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getWebsite\",\"paths\":\"information\",\"component\":\"setting\\/website\\/information\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:38:26\",\"update_time\":\"2022-07-07 11:26:52\"},{\"id\":31,\"pid\":29,\"type\":\"C\",\"name\":\"网站备案\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getCopyright\",\"paths\":\"filing\",\"component\":\"setting\\/website\\/filing\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:40:34\",\"update_time\":\"2022-07-07 11:32:03\"},{\"id\":32,\"pid\":29,\"type\":\"C\",\"name\":\"政策协议\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.web.web_setting\\/getAgreement\",\"paths\":\"protocol\",\"component\":\"setting\\/website\\/protocol\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:42:51\",\"update_time\":\"2022-07-07 11:32:50\"},{\"id\":177,\"pid\":29,\"type\":\"C\",\"name\":\"站点统计\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.web.web_setting\\/getSiteStatistics\",\"paths\":\"statistics\",\"component\":\"setting\\/website\\/statistics\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2024-09-20 22:11:21\",\"update_time\":\"2024-09-20 22:43:54\"}]},{\"id\":112,\"pid\":28,\"type\":\"M\",\"name\":\"用户设置\",\"icon\":\"local-icon-keziyuyue\",\"sort\":90,\"perms\":\"\",\"paths\":\"user\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:21:42\",\"update_time\":\"2024-03-15 11:24:16\",\"children\":[{\"id\":113,\"pid\":112,\"type\":\"C\",\"name\":\"用户设置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getConfig\",\"paths\":\"setup\",\"component\":\"setting\\/user\\/setup\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:25:06\",\"update_time\":\"2022-09-23 11:25:06\"},{\"id\":115,\"pid\":112,\"type\":\"C\",\"name\":\"登录注册\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.user.user\\/getRegisterConfig\",\"paths\":\"login_register\",\"component\":\"setting\\/user\\/login_register\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 11:30:32\",\"update_time\":\"2022-09-23 11:30:32\"}]},{\"id\":161,\"pid\":28,\"type\":\"M\",\"name\":\"支付设置\",\"icon\":\"local-icon-set_pay\",\"sort\":80,\"perms\":\"\",\"paths\":\"pay\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:27:55\",\"update_time\":\"2024-03-15 11:24:21\",\"children\":[{\"id\":162,\"pid\":161,\"type\":\"C\",\"name\":\"支付方式\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_way\\/getPayWay\",\"paths\":\"method\",\"component\":\"setting\\/pay\\/method\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:30:07\",\"update_time\":\"2023-02-23 18:30:07\"},{\"id\":163,\"pid\":161,\"type\":\"C\",\"name\":\"支付配置\",\"icon\":\"\",\"sort\":0,\"perms\":\"setting.pay.pay_config\\/lists\",\"paths\":\"config\",\"component\":\"setting\\/pay\\/config\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2023-02-23 18:31:00\",\"update_time\":\"2023-02-23 18:32:54\"}]},{\"id\":33,\"pid\":28,\"type\":\"C\",\"name\":\"存储设置\",\"icon\":\"el-icon-FolderOpened\",\"sort\":70,\"perms\":\"setting.storage\\/lists\",\"paths\":\"storage\",\"component\":\"setting\\/storage\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:29:19\",\"update_time\":\"2024-03-15 11:24:55\"},{\"id\":110,\"pid\":28,\"type\":\"C\",\"name\":\"热门搜索\",\"icon\":\"el-icon-Search\",\"sort\":60,\"perms\":\"setting.hot_search\\/getConfig\",\"paths\":\"search\",\"component\":\"setting\\/search\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-09-23 10:57:01\",\"update_time\":\"2024-03-15 11:25:09\"},{\"id\":35,\"pid\":28,\"type\":\"M\",\"name\":\"系统维护\",\"icon\":\"el-icon-SetUp\",\"sort\":50,\"perms\":\"\",\"paths\":\"system\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:39:29\",\"update_time\":\"2024-03-15 11:25:22\",\"children\":[{\"id\":143,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务\",\"icon\":\"\",\"sort\":100,\"perms\":\"crontab.crontab\\/lists\",\"paths\":\"scheduled_task\",\"component\":\"setting\\/system\\/scheduled_task\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-11-25 14:25:09\",\"update_time\":\"2024-03-15 11:27:26\"},{\"id\":36,\"pid\":35,\"type\":\"C\",\"name\":\"系统日志\",\"icon\":\"\",\"sort\":90,\"perms\":\"setting.system.log\\/lists\",\"paths\":\"journal\",\"component\":\"setting\\/system\\/journal\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:41:36\",\"update_time\":\"2024-03-15 11:27:33\"},{\"id\":37,\"pid\":35,\"type\":\"C\",\"name\":\"系统缓存\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"cache\",\"component\":\"setting\\/system\\/cache\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:44:56\",\"update_time\":\"2024-03-15 11:27:38\"},{\"id\":38,\"pid\":35,\"type\":\"C\",\"name\":\"系统环境\",\"icon\":\"\",\"sort\":70,\"perms\":\"setting.system.system\\/info\",\"paths\":\"environment\",\"component\":\"setting\\/system\\/environment\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:46:40\",\"update_time\":\"2024-03-15 11:27:45\"},{\"id\":144,\"pid\":35,\"type\":\"C\",\"name\":\"定时任务添加\\/编辑\",\"icon\":\"\",\"sort\":0,\"perms\":\"crontab.crontab\\/add:edit\",\"paths\":\"scheduled_task\\/edit\",\"component\":\"setting\\/system\\/scheduled_task\\/edit\",\"selected\":\"\\/setting\\/system\\/scheduled_task\",\"params\":\"\",\"is_cache\":0,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-11-25 14:27:50\",\"update_time\":\"2022-11-25 14:29:25\"}]},{\"id\":23,\"pid\":28,\"type\":\"M\",\"name\":\"开发工具\",\"icon\":\"el-icon-EditPen\",\"sort\":40,\"perms\":\"\",\"paths\":\"dev_tools\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 16:55:44\",\"update_time\":\"2024-03-15 11:25:27\",\"children\":[{\"id\":24,\"pid\":23,\"type\":\"C\",\"name\":\"代码生成器\",\"icon\":\"el-icon-DocumentAdd\",\"sort\":1,\"perms\":\"tools.generator\\/generateTable\",\"paths\":\"code\",\"component\":\"dev_tools\\/code\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-06 17:01:50\",\"update_time\":\"2022-07-28 14:23:43\"},{\"id\":34,\"pid\":23,\"type\":\"C\",\"name\":\"字典管理\",\"icon\":\"el-icon-Box\",\"sort\":1,\"perms\":\"setting.dict.dict_type\\/lists\",\"paths\":\"dict\",\"component\":\"setting\\/dict\\/type\\/index\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-07-07 10:33:31\",\"update_time\":\"2022-09-15 15:12:15\"},{\"id\":41,\"pid\":23,\"type\":\"C\",\"name\":\"编辑数据表\",\"icon\":\"\",\"sort\":1,\"perms\":\"tools.generator\\/edit\",\"paths\":\"code\\/edit\",\"component\":\"dev_tools\\/code\\/edit\",\"selected\":\"\\/dev_tools\\/code\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 11:01:06\",\"update_time\":\"2022-09-21 16:24:28\"},{\"id\":62,\"pid\":23,\"type\":\"C\",\"name\":\"字典数据管理\",\"icon\":\"\",\"sort\":1,\"perms\":\"setting.dict.dict_data\\/lists\",\"paths\":\"dict\\/data\",\"component\":\"setting\\/dict\\/data\\/index\",\"selected\":\"\\/dev_tools\\/dict\",\"params\":\"\",\"is_cache\":1,\"is_show\":0,\"is_disable\":0,\"create_time\":\"2022-07-07 14:12:31\",\"update_time\":\"2022-09-21 15:33:37\"}]}]},{\"id\":148,\"pid\":0,\"type\":\"M\",\"name\":\"模板示例\",\"icon\":\"el-icon-SetUp\",\"sort\":100,\"perms\":\"\",\"paths\":\"template\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:20:19\",\"update_time\":\"2024-03-15 11:20:11\",\"children\":[{\"id\":149,\"pid\":148,\"type\":\"M\",\"name\":\"组件示例\",\"icon\":\"el-icon-Coin\",\"sort\":0,\"perms\":\"\",\"paths\":\"component\",\"component\":\"\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:26:22\",\"update_time\":\"2022-12-05 10:27:24\",\"children\":[{\"id\":152,\"pid\":149,\"type\":\"C\",\"name\":\"图标\",\"icon\":\"\",\"sort\":100,\"perms\":\"\",\"paths\":\"icon\",\"component\":\"template\\/component\\/icon\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 16:47:49\",\"update_time\":\"2024-03-15 11:28:26\"},{\"id\":150,\"pid\":149,\"type\":\"C\",\"name\":\"富文本\",\"icon\":\"\",\"sort\":90,\"perms\":\"\",\"paths\":\"rich_text\",\"component\":\"template\\/component\\/rich_text\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:35:51\",\"update_time\":\"2024-03-15 11:28:35\"},{\"id\":151,\"pid\":149,\"type\":\"C\",\"name\":\"上传文件\",\"icon\":\"\",\"sort\":80,\"perms\":\"\",\"paths\":\"upload\",\"component\":\"template\\/component\\/upload\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 10:55:25\",\"update_time\":\"2024-03-15 11:28:42\"},{\"id\":156,\"pid\":149,\"type\":\"C\",\"name\":\"悬浮input\",\"icon\":\"\",\"sort\":70,\"perms\":\"\",\"paths\":\"popover_input\",\"component\":\"template\\/component\\/popover_input\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:22:16\",\"update_time\":\"2024-03-15 11:28:49\"},{\"id\":153,\"pid\":149,\"type\":\"C\",\"name\":\"文件选择器\",\"icon\":\"\",\"sort\":60,\"perms\":\"\",\"paths\":\"file\",\"component\":\"template\\/component\\/file\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-05 17:22:09\",\"update_time\":\"2024-03-15 11:29:01\"},{\"id\":154,\"pid\":149,\"type\":\"C\",\"name\":\"链接选择器\",\"icon\":\"\",\"sort\":50,\"perms\":\"\",\"paths\":\"link\",\"component\":\"template\\/component\\/link\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:10:36\",\"update_time\":\"2024-03-15 11:29:06\"},{\"id\":155,\"pid\":149,\"type\":\"C\",\"name\":\"超出自动打点\",\"icon\":\"\",\"sort\":40,\"perms\":\"\",\"paths\":\"overflow\",\"component\":\"template\\/component\\/overflow\",\"selected\":\"\",\"params\":\"\",\"is_cache\":0,\"is_show\":1,\"is_disable\":0,\"create_time\":\"2022-12-06 10:14:43\",\"update_time\":\"2024-03-15 11:29:11\"}]}]}],\"permissions\":[\"*\"]}}', '120.239.179.186', 1777489194);
|
||
INSERT INTO `la_operation_log` VALUES (684, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777489194);
|
||
INSERT INTO `la_operation_log` VALUES (685, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.186', 1777489195);
|
||
INSERT INTO `la_operation_log` VALUES (686, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777489195);
|
||
INSERT INTO `la_operation_log` VALUES (687, 1, 'wisdom', 'wisdom', ' 基础配置', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/config/getConfig', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"oss_domain\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/\",\"web_name\":\"安铂公寓\",\"web_favicon\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_favicon.ico\",\"web_logo\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/web_logo.jpg\",\"login_image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/login_image.png\",\"copyright_config\":[],\"version\":\"1.9.4\"}}', '120.239.179.186', 1777491745);
|
||
INSERT INTO `la_operation_log` VALUES (688, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":4,\"name\":\"公告\",\"sort\":100,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"id\":5,\"name\":\"活动通知\",\"sort\":99,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.186', 1777491745);
|
||
INSERT INTO `la_operation_log` VALUES (689, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777491745);
|
||
INSERT INTO `la_operation_log` VALUES (690, 1, 'wisdom', 'wisdom', ' 查看资讯分类列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/lists?page_no=1&page_size=15', '{\"page_no\":\"1\",\"page_size\":\"15\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"article_count\":0,\"id\":4,\"name\":\"公告\",\"sort\":100,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"article_count\":0,\"id\":5,\"name\":\"活动通知\",\"sort\":99,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"article_count\":1,\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"article_count\":1,\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"article_count\":1,\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}],\"count\":5,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777491747);
|
||
INSERT INTO `la_operation_log` VALUES (691, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":4,\"name\":\"公告\",\"sort\":100,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"id\":5,\"name\":\"活动通知\",\"sort\":99,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.186', 1777491749);
|
||
INSERT INTO `la_operation_log` VALUES (692, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777491749);
|
||
INSERT INTO `la_operation_log` VALUES (693, 1, 'wisdom', 'wisdom', ' 查看资讯列表', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/lists?page_no=1&page_size=15&title=&cid=&is_show=', '{\"page_no\":\"1\",\"page_size\":\"15\",\"title\":\"\",\"cid\":\"\",\"is_show\":\"\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"lists\":[{\"cate_name\":\"科技\",\"click\":15,\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null},{\"cate_name\":\"生活\",\"click\":6,\"id\":2,\"cid\":2,\"title\":\"埋葬UI设计师的坟墓不是内卷,而是免费模式\",\"desc\":\"\",\"abstract\":\"本文从另外一个角度,聊聊作者对UI设计师职业发展前景的担忧,欢迎从事UI设计的同学来参与讨论,会有赠书哦\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article02.jpeg\",\"author\":\"小明\",\"content\":\"<p><br><\\/p><p style=\\\"text-align: justify;\\\">一个职业,卷,根本就没什么大不了的,尤其是成熟且收入高的职业,不卷才不符合事物发展的规律。何况 UI 设计师的人力市场到今天也和 5 年前一样,还是停留在大型菜鸡互啄的场面。远不能和医疗、证券、教师或者演艺练习生相提并论。<\\/p><p style=\\\"text-align: justify;\\\">真正会让我对UI设计师发展前景觉得悲观的事情就只有一件 —— 国内的互联网产品免费机制。这也是一个我一直以来想讨论的话题,就在这次写一写。<\\/p><p style=\\\"text-align: justify;\\\">国内互联网市场的发展,是一部浩瀚的 “免费经济” 发展史。虽然今天免费已经是深入国内民众骨髓的认知,但最早的中文互联网也是需要付费的,网游也都是要花钱的。<\\/p><p style=\\\"text-align: justify;\\\">只是自有国情在此,付费确实阻碍了互联网行业的扩张和普及,一批创业家就开始通过免费的模式为用户提供服务,从而扩大了自己的产品覆盖面和普及程度。<\\/p><p style=\\\"text-align: justify;\\\">印象最深的就是免费急先锋周鸿祎,和现在鲜少出现在公众视野不同,一零年前他是当之无愧的互联网教主,因为他开发出了符合中国国情的互联网产品 “打法”,让 360 的发展如日中天。<\\/p><p style=\\\"text-align: justify;\\\">就是他在自传中提到:<\\/p><p style=\\\"text-align: justify;\\\">只要是在互联网上每个人都需要的服务,我们就认为它是基础服务,基础服务一定是免费的,这样的话不会形成价值歧视。就是说,只要这种服务是每个人都一定要用的,我一定免费提供,而且是无条件免费。增值服务不是所有人都需要的,这个比例可能会相当低,它只是百分之几甚至更少比例的人需要,所以这种服务一定要收费……<\\/p><p style=\\\"text-align: justify;\\\">这就是互联网的游戏规则,它决定了要想建立一个有效的商业模式,就一定要有海量的用户基数……<\\/p>\",\"click_virtual\":2,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:07:34\",\"update_time\":\"2024-09-23 13:59:38\",\"delete_time\":null},{\"cate_name\":\"好物\",\"click\":5,\"id\":1,\"cid\":3,\"title\":\"让生活更精致!五款居家好物推荐,实用性超高\",\"desc\":\"##好物推荐🔥\",\"abstract\":\"随着当代生活节奏的忙碌,很多人在闲暇之余都想好好的享受生活。随着科技的发展,也出现了越来越多可以帮助我们提升幸福感,让生活变得更精致的产品,下面周周就给大家盘点五款居家必备的好物,都是实用性很高的产品,周周可以保证大家买了肯定会喜欢。\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article01.png\",\"author\":\"红花\",\"content\":\"<p>拥有一台投影仪,闲暇时可以在家里直接看影院级别的大片,光是想想都觉得超级爽。市面上很多投影仪大几千,其实周周觉得没必要,选泰捷这款一千多的足够了,性价比非常高。<\\/p><p>泰捷的专业度很高,在电视TV领域研发已经十年,有诸多专利和技术创新,荣获国内外多项技术奖项,拿下了腾讯创新工场投资,打造的泰捷视频TV端和泰捷电视盒子都获得了极高评价。<\\/p><p>这款投影仪的分辨率在3000元内无敌,做到了真1080P高分辨率,也就是跟市场售价三千DLP投影仪一样的分辨率,真正做到了分毫毕现,像桌布的花纹、天空的云彩等,这些细节都清晰可见。<\\/p><p>亮度方面,泰捷达到了850ANSI流明,同价位一般是200ANSI。这是因为泰捷为了提升亮度和LCD技术透射率低的问题,首创高功率LED灯源,让其亮度做到同价位最好。专业媒体也进行了多次对比,效果与3000元价位投影仪相当。<\\/p><p>操作系统周周也很喜欢,完全不卡。泰捷作为资深音视频品牌,在系统优化方面有十年的研发经验,打造出的“零极”系统是业内公认效率最高、速度最快的系统,用户也评价它流畅度能一台顶三台,而且为了解决行业广告多这一痛点,系统内不植入任何广告。<\\/p>\",\"click_virtual\":1,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 16:42:39\",\"update_time\":\"2026-04-29 14:43:18\",\"delete_time\":null}],\"count\":3,\"page_no\":1,\"page_size\":15,\"extend\":[]}}', '120.239.179.186', 1777491751);
|
||
INSERT INTO `la_operation_log` VALUES (694, 1, 'wisdom', 'wisdom', ' 获取文章分类', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.articleCate/all', '[]', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":[{\"id\":4,\"name\":\"公告\",\"sort\":100,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"id\":5,\"name\":\"活动通知\",\"sort\":99,\"is_show\":1,\"create_time\":\"2026-04-30 03:42:01\",\"update_time\":\"2026-04-30 03:42:01\",\"delete_time\":null},{\"id\":3,\"name\":\"好物\",\"sort\":0,\"is_show\":1,\"create_time\":\"2024-09-23 13:54:18\",\"update_time\":\"2024-09-23 13:54:18\",\"delete_time\":null},{\"id\":2,\"name\":\"生活\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 17:44:24\",\"delete_time\":null},{\"id\":1,\"name\":\"科技\",\"sort\":0,\"is_show\":1,\"create_time\":\"2022-09-16 16:34:40\",\"update_time\":\"2022-09-16 16:34:40\",\"delete_time\":null}]}', '120.239.179.186', 1777491755);
|
||
INSERT INTO `la_operation_log` VALUES (695, 1, 'wisdom', 'wisdom', ' 资讯详情', 'GET', 'https://server.anbo.dev.drawsnake.cn/adminapi/article.article/detail?id=3', '{\"id\":\"3\"}', '{\"code\":1,\"show\":0,\"msg\":\"\",\"data\":{\"id\":3,\"cid\":1,\"title\":\"金山电池公布“沪广深市民绿色生活方式”调查结果\",\"desc\":\"\",\"abstract\":\"60%以上受访者认为高质量的10分钟足以完成“自我充电”\",\"image\":\"https:\\/\\/anbo-file.oss-cn-shanghai.aliyuncs.com\\/resource\\/image\\/adminapi\\/default\\/article03.png\",\"author\":\"中网资讯科技\",\"content\":\"<p style=\\\"text-align: left;\\\"><strong>深圳,2021年10月22日)<\\/strong>生活在一线城市的沪广深市民一向以效率见称,工作繁忙和快节奏的生活容易缺乏充足的休息。近日,一项针对沪广深市民绿色生活方式而展开的网络问卷调查引起了大家的注意。问卷的问题设定集中于市民对休息时间的看法,以及从对循环充电电池的使用方面了解其对绿色生活方式的态度。该调查采用随机抽样的模式,并对最终收集的1,500份有效问卷进行专业分析后发现,超过60%的受访者表示,在每天的工作时段能拥有10分钟高质量的休息时间,就可以高效“自我充电”。该调查结果反映出,在快节奏时代下,人们需要高质量的休息时间,也要学会利用高效率的休息方式和工具来应对快节奏的生活,以时刻保持“满电”状态。<\\/p><p style=\\\"text-align: left;\\\"> <strong>60%以上受访者认为高质量的10分钟足以完成“自我充电”<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 这次调查超过1,500人,主要聚焦18至85岁的沪广深市民,了解他们对于休息时间的观念及使用充电电池的习惯,结果发现:<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上有工作受访者每天工作时间在7小时以上,平均工作时间为8小时,其中43%以上的受访者工作时间超过9小时<\\/p><p style=\\\"text-align: left;\\\"> · 70%受访者认为在工作期间拥有10分钟“自我充电”时间不是一件困难的事情<\\/p><p style=\\\"text-align: left;\\\"> · 60%受访者认为在工作期间有10分钟休息时间足以为自己快速充电<\\/p><p style=\\\"text-align: left;\\\"> 临床心理学家黄咏诗女士在发布会上分享为自己快速充电的实用技巧,她表示:“事实上,只要选择正确的休息方法,10分钟也足以为自己充电。以喝咖啡为例,我们可以使用心灵休息法 ── 静观呼吸,慢慢感受咖啡的温度和气味,如果能配合着聆听流水或海洋的声音,能够有效放松大脑及心灵。”<\\/p><p style=\\\"text-align: left;\\\"> 这次调查结果反映出沪广深市民的希望在繁忙的工作中适时停下来,抽出10分钟喝杯咖啡、聆听音乐或小睡片刻,为自己充电。金山电池全新推出的“绿再十分充”超快速充电器仅需10分钟就能充好电,喝一杯咖啡的时间既能完成“自我充电”,也满足设备使用的用电需求,为提升工作效率和放松身心注入新能量。<\\/p><p style=\\\"text-align: left;\\\"> <strong>金山电池推出10分钟超快电池充电器*绿再十分充,以创新科技为市场带来革新体验<\\/strong><\\/p><p style=\\\"text-align: left;\\\"> 该问卷同时从沪广深市民对循环充电电池的使用方面进行了调查,以了解其对绿色生活方式的态度:<\\/p><p style=\\\"text-align: left;\\\"> · 87%受访者目前没有使用充电电池,其中61%表示会考虑使用充电电池<\\/p><p style=\\\"text-align: left;\\\"> · 58%受访者过往曾使用过充电电池,却只有20%左右市民仍在使用<\\/p><p style=\\\"text-align: left;\\\"> · 60%左右受访者认为充电电池尚未被广泛使用,主要障碍来自于充电时间过长、缺乏相关教育<\\/p><p style=\\\"text-align: left;\\\"> · 90%以上受访者认为充电电池充满电需要1小时或更长的时间<\\/p><p style=\\\"text-align: left;\\\"> 金山电池一直致力于为大众提供安全可靠的充电电池,并与消费者的需求和生活方式一起演变及进步。今天,金山电池宣布推出10分钟超快电池充电器*绿再十分充,只需10分钟*即可将4粒绿再十分充充电电池充好电,充电速度比其他品牌提升3倍**。充电器的LED灯可以显示每粒电池的充电状态和模式,并提示用户是否错误插入已损坏电池或一次性电池。尽管其体型小巧,却具备多项创新科技 ,如拥有独特的充电算法以优化充电电流,并能根据各个电池类型、状况和温度用最短的时间为充电电池充好电;绿再十分充内置横流扇,有效防止电池温度过热和提供低噪音的充电环境等。<br><\\/p>\",\"click_virtual\":11,\"click_actual\":4,\"is_show\":1,\"sort\":0,\"create_time\":\"2022-09-16 18:04:25\",\"update_time\":\"2024-09-23 13:59:14\",\"delete_time\":null}}', '120.239.179.186', 1777491755);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_recharge_order
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_recharge_order`;
|
||
CREATE TABLE `la_recharge_order` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`sn` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '订单编号',
|
||
`user_id` int NOT NULL COMMENT '用户id',
|
||
`pay_sn` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '支付编号-冗余字段,针对微信同一主体不同客户端支付需用不同订单号预留。',
|
||
`pay_way` tinyint NOT NULL DEFAULT 2 COMMENT '支付方式 2-微信支付 3-支付宝支付',
|
||
`pay_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '支付状态:0-待支付;1-已支付',
|
||
`pay_time` int NULL DEFAULT NULL COMMENT '支付时间',
|
||
`order_amount` decimal(10, 2) NOT NULL COMMENT '充值金额',
|
||
`order_terminal` tinyint(1) NULL DEFAULT 1 COMMENT '终端 1-PC端 2-移动端 3-小程序',
|
||
`transaction_id` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '第三方平台交易流水号',
|
||
`refund_status` tinyint(1) NULL DEFAULT 0 COMMENT '退款状态 0-未退款 1-已退款',
|
||
`refund_transaction_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '退款交易流水号',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '充值订单表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_recharge_order
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_refund_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_refund_log`;
|
||
CREATE TABLE `la_refund_log` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`sn` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '编号',
|
||
`record_id` int NOT NULL COMMENT '退款记录id',
|
||
`user_id` int NOT NULL DEFAULT 0 COMMENT '关联用户',
|
||
`handle_id` int NOT NULL DEFAULT 0 COMMENT '处理人id(管理员id)',
|
||
`order_amount` decimal(10, 2) UNSIGNED NOT NULL DEFAULT 0.00 COMMENT '订单总的应付款金额,冗余字段',
|
||
`refund_amount` decimal(10, 2) UNSIGNED NOT NULL DEFAULT 0.00 COMMENT '本次退款金额',
|
||
`refund_status` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '退款状态 0-退款中 1-退款成功 2-退款失败',
|
||
`refund_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '退款信息',
|
||
`create_time` int UNSIGNED NULL DEFAULT 0 COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '退款日志表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_refund_log
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_refund_record
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_refund_record`;
|
||
CREATE TABLE `la_refund_record` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`sn` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '退款编号',
|
||
`user_id` int NOT NULL DEFAULT 0 COMMENT '关联用户',
|
||
`order_id` int NOT NULL DEFAULT 0 COMMENT '来源订单id',
|
||
`order_sn` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '来源单号',
|
||
`order_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'order' COMMENT '订单来源 order-商品订单 recharge-充值订单',
|
||
`order_amount` decimal(10, 2) UNSIGNED NOT NULL DEFAULT 0.00 COMMENT '订单总的应付款金额,冗余字段',
|
||
`refund_amount` decimal(10, 2) UNSIGNED NOT NULL DEFAULT 0.00 COMMENT '本次退款金额',
|
||
`transaction_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '第三方平台交易流水号',
|
||
`refund_way` tinyint(1) NOT NULL DEFAULT 1 COMMENT '退款方式 1-线上退款 2-线下退款',
|
||
`refund_type` tinyint(1) NOT NULL DEFAULT 1 COMMENT '退款类型 1-后台退款',
|
||
`refund_status` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '退款状态 0-退款中 1-退款成功 2-退款失败',
|
||
`create_time` int UNSIGNED NULL DEFAULT 0 COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '退款记录表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_refund_record
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_sms_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_sms_log`;
|
||
CREATE TABLE `la_sms_log` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`scene_id` int NOT NULL COMMENT '场景id',
|
||
`mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '手机号码',
|
||
`content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '发送内容',
|
||
`code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '发送关键字(注册、找回密码)',
|
||
`is_verify` tinyint(1) NULL DEFAULT 0 COMMENT '是否已验证;0-否;1-是',
|
||
`check_num` int NULL DEFAULT 0 COMMENT '验证次数',
|
||
`send_status` tinyint(1) NOT NULL COMMENT '发送状态:0-发送中;1-发送成功;2-发送失败',
|
||
`send_time` int NOT NULL COMMENT '发送时间',
|
||
`results` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '短信结果',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '短信记录表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_sms_log
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_system_menu
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_system_menu`;
|
||
CREATE TABLE `la_system_menu` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
|
||
`pid` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '上级菜单',
|
||
`type` char(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '权限类型: M=目录,C=菜单,A=按钮',
|
||
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '菜单名称',
|
||
`icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '菜单图标',
|
||
`sort` smallint UNSIGNED NOT NULL DEFAULT 0 COMMENT '菜单排序',
|
||
`perms` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '权限标识',
|
||
`paths` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '路由地址',
|
||
`component` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '前端组件',
|
||
`selected` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '选中路径',
|
||
`params` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '路由参数',
|
||
`is_cache` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否缓存: 0=否, 1=是',
|
||
`is_show` tinyint UNSIGNED NOT NULL DEFAULT 1 COMMENT '是否显示: 0=否, 1=是',
|
||
`is_disable` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否禁用: 0=否, 1=是',
|
||
`create_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间',
|
||
`update_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 193 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统菜单表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_system_menu
|
||
-- ----------------------------
|
||
INSERT INTO `la_system_menu` VALUES (4, 0, 'M', '权限管理', 'el-icon-Lock', 300, '', 'permission', '', '', '', 0, 1, 0, 1656664556, 1710472802);
|
||
INSERT INTO `la_system_menu` VALUES (5, 0, 'C', '工作台', 'el-icon-Monitor', 1000, 'workbench/index', 'workbench', 'workbench/index', '', '', 0, 1, 0, 1656664793, 1664354981);
|
||
INSERT INTO `la_system_menu` VALUES (6, 4, 'C', '菜单', 'el-icon-Operation', 100, 'auth.menu/lists', 'menu', 'permission/menu/index', '', '', 1, 1, 0, 1656664960, 1710472994);
|
||
INSERT INTO `la_system_menu` VALUES (7, 4, 'C', '管理员', 'local-icon-shouyiren', 80, 'auth.admin/lists', 'admin', 'permission/admin/index', '', '', 0, 1, 0, 1656901567, 1710473013);
|
||
INSERT INTO `la_system_menu` VALUES (8, 4, 'C', '角色', 'el-icon-Female', 90, 'auth.role/lists', 'role', 'permission/role/index', '', '', 0, 1, 0, 1656901660, 1710473000);
|
||
INSERT INTO `la_system_menu` VALUES (12, 8, 'A', '新增', '', 1, 'auth.role/add', '', '', '', '', 0, 1, 0, 1657001790, 1663750625);
|
||
INSERT INTO `la_system_menu` VALUES (14, 8, 'A', '编辑', '', 1, 'auth.role/edit', '', '', '', '', 0, 1, 0, 1657001924, 1663750631);
|
||
INSERT INTO `la_system_menu` VALUES (15, 8, 'A', '删除', '', 1, 'auth.role/delete', '', '', '', '', 0, 1, 0, 1657001982, 1663750637);
|
||
INSERT INTO `la_system_menu` VALUES (16, 6, 'A', '新增', '', 1, 'auth.menu/add', '', '', '', '', 0, 1, 0, 1657072523, 1663750565);
|
||
INSERT INTO `la_system_menu` VALUES (17, 6, 'A', '编辑', '', 1, 'auth.menu/edit', '', '', '', '', 0, 1, 0, 1657073955, 1663750570);
|
||
INSERT INTO `la_system_menu` VALUES (18, 6, 'A', '删除', '', 1, 'auth.menu/delete', '', '', '', '', 0, 1, 0, 1657073987, 1663750578);
|
||
INSERT INTO `la_system_menu` VALUES (19, 7, 'A', '新增', '', 1, 'auth.admin/add', '', '', '', '', 0, 1, 0, 1657074035, 1663750596);
|
||
INSERT INTO `la_system_menu` VALUES (20, 7, 'A', '编辑', '', 1, 'auth.admin/edit', '', '', '', '', 0, 1, 0, 1657074071, 1663750603);
|
||
INSERT INTO `la_system_menu` VALUES (21, 7, 'A', '删除', '', 1, 'auth.admin/delete', '', '', '', '', 0, 1, 0, 1657074108, 1663750609);
|
||
INSERT INTO `la_system_menu` VALUES (23, 28, 'M', '开发工具', 'el-icon-EditPen', 40, '', 'dev_tools', '', '', '', 0, 1, 0, 1657097744, 1710473127);
|
||
INSERT INTO `la_system_menu` VALUES (24, 23, 'C', '代码生成器', 'el-icon-DocumentAdd', 1, 'tools.generator/generateTable', 'code', 'dev_tools/code/index', '', '', 0, 1, 0, 1657098110, 1658989423);
|
||
INSERT INTO `la_system_menu` VALUES (25, 0, 'M', '组织管理', 'el-icon-OfficeBuilding', 400, '', 'organization', '', '', '', 0, 1, 0, 1657099914, 1710472797);
|
||
INSERT INTO `la_system_menu` VALUES (26, 25, 'C', '部门管理', 'el-icon-Coordinate', 100, 'dept.dept/lists', 'department', 'organization/department/index', '', '', 1, 1, 0, 1657099989, 1710472962);
|
||
INSERT INTO `la_system_menu` VALUES (27, 25, 'C', '岗位管理', 'el-icon-PriceTag', 90, 'dept.jobs/lists', 'post', 'organization/post/index', '', '', 0, 1, 0, 1657100044, 1710472967);
|
||
INSERT INTO `la_system_menu` VALUES (28, 0, 'M', '系统设置', 'el-icon-Setting', 200, '', 'setting', '', '', '', 0, 1, 0, 1657100164, 1710472807);
|
||
INSERT INTO `la_system_menu` VALUES (29, 28, 'M', '网站设置', 'el-icon-Basketball', 100, '', 'website', '', '', '', 0, 1, 0, 1657100230, 1710473049);
|
||
INSERT INTO `la_system_menu` VALUES (30, 29, 'C', '网站信息', '', 1, 'setting.web.web_setting/getWebsite', 'information', 'setting/website/information', '', '', 0, 1, 0, 1657100306, 1657164412);
|
||
INSERT INTO `la_system_menu` VALUES (31, 29, 'C', '网站备案', '', 1, 'setting.web.web_setting/getCopyright', 'filing', 'setting/website/filing', '', '', 0, 1, 0, 1657100434, 1657164723);
|
||
INSERT INTO `la_system_menu` VALUES (32, 29, 'C', '政策协议', '', 1, 'setting.web.web_setting/getAgreement', 'protocol', 'setting/website/protocol', '', '', 0, 1, 0, 1657100571, 1657164770);
|
||
INSERT INTO `la_system_menu` VALUES (33, 28, 'C', '存储设置', 'el-icon-FolderOpened', 70, 'setting.storage/lists', 'storage', 'setting/storage/index', '', '', 0, 1, 0, 1657160959, 1710473095);
|
||
INSERT INTO `la_system_menu` VALUES (34, 23, 'C', '字典管理', 'el-icon-Box', 1, 'setting.dict.dict_type/lists', 'dict', 'setting/dict/type/index', '', '', 0, 1, 0, 1657161211, 1663225935);
|
||
INSERT INTO `la_system_menu` VALUES (35, 28, 'M', '系统维护', 'el-icon-SetUp', 50, '', 'system', '', '', '', 0, 1, 0, 1657161569, 1710473122);
|
||
INSERT INTO `la_system_menu` VALUES (36, 35, 'C', '系统日志', '', 90, 'setting.system.log/lists', 'journal', 'setting/system/journal', '', '', 0, 1, 0, 1657161696, 1710473253);
|
||
INSERT INTO `la_system_menu` VALUES (37, 35, 'C', '系统缓存', '', 80, '', 'cache', 'setting/system/cache', '', '', 0, 1, 0, 1657161896, 1710473258);
|
||
INSERT INTO `la_system_menu` VALUES (38, 35, 'C', '系统环境', '', 70, 'setting.system.system/info', 'environment', 'setting/system/environment', '', '', 0, 1, 0, 1657162000, 1710473265);
|
||
INSERT INTO `la_system_menu` VALUES (39, 24, 'A', '导入数据表', '', 1, 'tools.generator/selectTable', '', '', '', '', 0, 1, 0, 1657162736, 1657162736);
|
||
INSERT INTO `la_system_menu` VALUES (40, 24, 'A', '代码生成', '', 1, 'tools.generator/generate', '', '', '', '', 0, 1, 0, 1657162806, 1657162806);
|
||
INSERT INTO `la_system_menu` VALUES (41, 23, 'C', '编辑数据表', '', 1, 'tools.generator/edit', 'code/edit', 'dev_tools/code/edit', '/dev_tools/code', '', 1, 0, 0, 1657162866, 1663748668);
|
||
INSERT INTO `la_system_menu` VALUES (42, 24, 'A', '同步表结构', '', 1, 'tools.generator/syncColumn', '', '', '', '', 0, 1, 0, 1657162934, 1657162934);
|
||
INSERT INTO `la_system_menu` VALUES (43, 24, 'A', '删除数据表', '', 1, 'tools.generator/delete', '', '', '', '', 0, 1, 0, 1657163015, 1657163015);
|
||
INSERT INTO `la_system_menu` VALUES (44, 24, 'A', '预览代码', '', 1, 'tools.generator/preview', '', '', '', '', 0, 1, 0, 1657163263, 1657163263);
|
||
INSERT INTO `la_system_menu` VALUES (45, 26, 'A', '新增', '', 1, 'dept.dept/add', '', '', '', '', 0, 1, 0, 1657163548, 1663750492);
|
||
INSERT INTO `la_system_menu` VALUES (46, 26, 'A', '编辑', '', 1, 'dept.dept/edit', '', '', '', '', 0, 1, 0, 1657163599, 1663750498);
|
||
INSERT INTO `la_system_menu` VALUES (47, 26, 'A', '删除', '', 1, 'dept.dept/delete', '', '', '', '', 0, 1, 0, 1657163687, 1663750504);
|
||
INSERT INTO `la_system_menu` VALUES (48, 27, 'A', '新增', '', 1, 'dept.jobs/add', '', '', '', '', 0, 1, 0, 1657163778, 1663750524);
|
||
INSERT INTO `la_system_menu` VALUES (49, 27, 'A', '编辑', '', 1, 'dept.jobs/edit', '', '', '', '', 0, 1, 0, 1657163800, 1663750530);
|
||
INSERT INTO `la_system_menu` VALUES (50, 27, 'A', '删除', '', 1, 'dept.jobs/delete', '', '', '', '', 0, 1, 0, 1657163820, 1663750535);
|
||
INSERT INTO `la_system_menu` VALUES (51, 30, 'A', '保存', '', 1, 'setting.web.web_setting/setWebsite', '', '', '', '', 0, 1, 0, 1657164469, 1663750649);
|
||
INSERT INTO `la_system_menu` VALUES (52, 31, 'A', '保存', '', 1, 'setting.web.web_setting/setCopyright', '', '', '', '', 0, 1, 0, 1657164692, 1663750657);
|
||
INSERT INTO `la_system_menu` VALUES (53, 32, 'A', '保存', '', 1, 'setting.web.web_setting/setAgreement', '', '', '', '', 0, 1, 0, 1657164824, 1663750665);
|
||
INSERT INTO `la_system_menu` VALUES (54, 33, 'A', '设置', '', 1, 'setting.storage/setup', '', '', '', '', 0, 1, 0, 1657165303, 1663750673);
|
||
INSERT INTO `la_system_menu` VALUES (55, 34, 'A', '新增', '', 1, 'setting.dict.dict_type/add', '', '', '', '', 0, 1, 0, 1657166966, 1663750783);
|
||
INSERT INTO `la_system_menu` VALUES (56, 34, 'A', '编辑', '', 1, 'setting.dict.dict_type/edit', '', '', '', '', 0, 1, 0, 1657166997, 1663750789);
|
||
INSERT INTO `la_system_menu` VALUES (57, 34, 'A', '删除', '', 1, 'setting.dict.dict_type/delete', '', '', '', '', 0, 1, 0, 1657167038, 1663750796);
|
||
INSERT INTO `la_system_menu` VALUES (58, 62, 'A', '新增', '', 1, 'setting.dict.dict_data/add', '', '', '', '', 0, 1, 0, 1657167317, 1663750758);
|
||
INSERT INTO `la_system_menu` VALUES (59, 62, 'A', '编辑', '', 1, 'setting.dict.dict_data/edit', '', '', '', '', 0, 1, 0, 1657167371, 1663750751);
|
||
INSERT INTO `la_system_menu` VALUES (60, 62, 'A', '删除', '', 1, 'setting.dict.dict_data/delete', '', '', '', '', 0, 1, 0, 1657167397, 1663750768);
|
||
INSERT INTO `la_system_menu` VALUES (61, 37, 'A', '清除系统缓存', '', 1, 'setting.system.cache/clear', '', '', '', '', 0, 1, 0, 1657173837, 1657173939);
|
||
INSERT INTO `la_system_menu` VALUES (62, 23, 'C', '字典数据管理', '', 1, 'setting.dict.dict_data/lists', 'dict/data', 'setting/dict/data/index', '/dev_tools/dict', '', 1, 0, 0, 1657174351, 1663745617);
|
||
INSERT INTO `la_system_menu` VALUES (63, 158, 'M', '素材管理', 'el-icon-Picture', 0, '', 'material', '', '', '', 0, 1, 0, 1657507133, 1710472243);
|
||
INSERT INTO `la_system_menu` VALUES (64, 63, 'C', '素材中心', 'el-icon-PictureRounded', 0, '', 'index', 'material/index', '', '', 0, 1, 0, 1657507296, 1664355653);
|
||
INSERT INTO `la_system_menu` VALUES (66, 26, 'A', '详情', '', 0, 'dept.dept/detail', '', '', '', '', 0, 1, 0, 1663725459, 1663750516);
|
||
INSERT INTO `la_system_menu` VALUES (67, 27, 'A', '详情', '', 0, 'dept.jobs/detail', '', '', '', '', 0, 1, 0, 1663725514, 1663750559);
|
||
INSERT INTO `la_system_menu` VALUES (68, 6, 'A', '详情', '', 0, 'auth.menu/detail', '', '', '', '', 0, 1, 0, 1663725564, 1663750584);
|
||
INSERT INTO `la_system_menu` VALUES (69, 7, 'A', '详情', '', 0, 'auth.admin/detail', '', '', '', '', 0, 1, 0, 1663725623, 1663750615);
|
||
INSERT INTO `la_system_menu` VALUES (70, 158, 'M', '文章资讯', 'el-icon-ChatLineSquare', 90, '', 'article', '', '', '', 0, 1, 0, 1663749965, 1710471867);
|
||
INSERT INTO `la_system_menu` VALUES (71, 70, 'C', '文章管理', 'el-icon-ChatDotSquare', 0, 'article.article/lists', 'lists', 'article/lists/index', '', '', 0, 1, 0, 1663750101, 1664354615);
|
||
INSERT INTO `la_system_menu` VALUES (72, 70, 'C', '文章添加/编辑', '', 0, 'article.article/add:edit', 'lists/edit', 'article/lists/edit', '/article/lists', '', 0, 0, 0, 1663750153, 1664356275);
|
||
INSERT INTO `la_system_menu` VALUES (73, 70, 'C', '文章栏目', 'el-icon-CollectionTag', 0, 'article.articleCate/lists', 'column', 'article/column/index', '', '', 1, 1, 0, 1663750287, 1664354678);
|
||
INSERT INTO `la_system_menu` VALUES (74, 71, 'A', '新增', '', 0, 'article.article/add', '', '', '', '', 0, 1, 0, 1663750335, 1663750335);
|
||
INSERT INTO `la_system_menu` VALUES (75, 71, 'A', '详情', '', 0, 'article.article/detail', '', '', '', '', 0, 1, 0, 1663750354, 1663750383);
|
||
INSERT INTO `la_system_menu` VALUES (76, 71, 'A', '删除', '', 0, 'article.article/delete', '', '', '', '', 0, 1, 0, 1663750413, 1663750413);
|
||
INSERT INTO `la_system_menu` VALUES (77, 71, 'A', '修改状态', '', 0, 'article.article/updateStatus', '', '', '', '', 0, 1, 0, 1663750442, 1663750442);
|
||
INSERT INTO `la_system_menu` VALUES (78, 73, 'A', '添加', '', 0, 'article.articleCate/add', '', '', '', '', 0, 1, 0, 1663750483, 1663750483);
|
||
INSERT INTO `la_system_menu` VALUES (79, 73, 'A', '删除', '', 0, 'article.articleCate/delete', '', '', '', '', 0, 1, 0, 1663750895, 1663750895);
|
||
INSERT INTO `la_system_menu` VALUES (80, 73, 'A', '详情', '', 0, 'article.articleCate/detail', '', '', '', '', 0, 1, 0, 1663750913, 1663750913);
|
||
INSERT INTO `la_system_menu` VALUES (81, 73, 'A', '修改状态', '', 0, 'article.articleCate/updateStatus', '', '', '', '', 0, 1, 0, 1663750936, 1663750936);
|
||
INSERT INTO `la_system_menu` VALUES (82, 0, 'M', '渠道设置', 'el-icon-Message', 500, '', 'channel', '', '', '', 0, 1, 0, 1663754084, 1710472649);
|
||
INSERT INTO `la_system_menu` VALUES (83, 82, 'C', 'h5设置', 'el-icon-Cellphone', 100, 'channel.web_page_setting/getConfig', 'h5', 'channel/h5', '', '', 0, 1, 0, 1663754158, 1710472929);
|
||
INSERT INTO `la_system_menu` VALUES (84, 83, 'A', '保存', '', 0, 'channel.web_page_setting/setConfig', '', '', '', '', 0, 1, 0, 1663754259, 1663754259);
|
||
INSERT INTO `la_system_menu` VALUES (85, 82, 'M', '微信公众号', 'local-icon-dingdan', 80, '', 'wx_oa', '', '', '', 0, 1, 0, 1663755470, 1710472946);
|
||
INSERT INTO `la_system_menu` VALUES (86, 85, 'C', '公众号配置', '', 0, 'channel.official_account_setting/getConfig', 'config', 'channel/wx_oa/config', '', '', 0, 1, 0, 1663755663, 1664355450);
|
||
INSERT INTO `la_system_menu` VALUES (87, 85, 'C', '菜单管理', '', 0, 'channel.official_account_menu/detail', 'menu', 'channel/wx_oa/menu', '', '', 0, 1, 0, 1663755767, 1664355456);
|
||
INSERT INTO `la_system_menu` VALUES (88, 86, 'A', '保存', '', 0, 'channel.official_account_setting/setConfig', '', '', '', '', 0, 1, 0, 1663755799, 1663755799);
|
||
INSERT INTO `la_system_menu` VALUES (89, 86, 'A', '保存并发布', '', 0, 'channel.official_account_menu/save', '', '', '', '', 0, 1, 0, 1663756490, 1663756490);
|
||
INSERT INTO `la_system_menu` VALUES (90, 85, 'C', '关注回复', '', 0, 'channel.official_account_reply/lists', 'follow', 'channel/wx_oa/reply/follow_reply', '', '', 0, 1, 0, 1663818358, 1663818366);
|
||
INSERT INTO `la_system_menu` VALUES (91, 85, 'C', '关键字回复', '', 0, '', 'keyword', 'channel/wx_oa/reply/keyword_reply', '', '', 0, 1, 0, 1663818445, 1663818445);
|
||
INSERT INTO `la_system_menu` VALUES (93, 85, 'C', '默认回复', '', 0, '', 'default', 'channel/wx_oa/reply/default_reply', '', '', 0, 1, 0, 1663818580, 1663818580);
|
||
INSERT INTO `la_system_menu` VALUES (94, 82, 'C', '微信小程序', 'local-icon-weixin', 90, 'channel.mnp_settings/getConfig', 'weapp', 'channel/weapp', '', '', 0, 1, 0, 1663831396, 1710472941);
|
||
INSERT INTO `la_system_menu` VALUES (95, 94, 'A', '保存', '', 0, 'channel.mnp_settings/setConfig', '', '', '', '', 0, 1, 0, 1663831436, 1663831436);
|
||
INSERT INTO `la_system_menu` VALUES (96, 0, 'M', '装修管理', 'el-icon-Brush', 600, '', 'decoration', '', '', '', 0, 1, 0, 1663834825, 1710472099);
|
||
INSERT INTO `la_system_menu` VALUES (97, 175, 'C', '页面装修', 'el-icon-CopyDocument', 100, 'decorate.page/detail', 'pages', 'decoration/pages/index', '', '', 0, 1, 0, 1663834879, 1710929256);
|
||
INSERT INTO `la_system_menu` VALUES (98, 97, 'A', '保存', '', 0, 'decorate.page/save', '', '', '', '', 0, 1, 0, 1663834956, 1663834956);
|
||
INSERT INTO `la_system_menu` VALUES (99, 175, 'C', '底部导航', 'el-icon-Position', 90, 'decorate.tabbar/detail', 'tabbar', 'decoration/tabbar', '', '', 0, 1, 0, 1663835004, 1710929262);
|
||
INSERT INTO `la_system_menu` VALUES (100, 99, 'A', '保存', '', 0, 'decorate.tabbar/save', '', '', '', '', 0, 1, 0, 1663835018, 1663835018);
|
||
INSERT INTO `la_system_menu` VALUES (101, 158, 'M', '消息管理', 'el-icon-ChatDotRound', 80, '', 'message', '', '', '', 0, 1, 0, 1663838602, 1710471874);
|
||
INSERT INTO `la_system_menu` VALUES (102, 101, 'C', '通知设置', '', 0, 'notice.notice/settingLists', 'notice', 'message/notice/index', '', '', 0, 1, 0, 1663839195, 1663839195);
|
||
INSERT INTO `la_system_menu` VALUES (103, 102, 'A', '详情', '', 0, 'notice.notice/detail', '', '', '', '', 0, 1, 0, 1663839537, 1663839537);
|
||
INSERT INTO `la_system_menu` VALUES (104, 101, 'C', '通知设置编辑', '', 0, 'notice.notice/set', 'notice/edit', 'message/notice/edit', '/message/notice', '', 0, 0, 0, 1663839873, 1663898477);
|
||
INSERT INTO `la_system_menu` VALUES (105, 71, 'A', '编辑', '', 0, 'article.article/edit', '', '', '', '', 0, 1, 0, 1663840043, 1663840053);
|
||
INSERT INTO `la_system_menu` VALUES (107, 101, 'C', '短信设置', '', 0, 'notice.sms_config/getConfig', 'short_letter', 'message/short_letter/index', '', '', 0, 1, 0, 1663898591, 1664355708);
|
||
INSERT INTO `la_system_menu` VALUES (108, 107, 'A', '设置', '', 0, 'notice.sms_config/setConfig', '', '', '', '', 0, 1, 0, 1663898644, 1663898644);
|
||
INSERT INTO `la_system_menu` VALUES (109, 107, 'A', '详情', '', 0, 'notice.sms_config/detail', '', '', '', '', 0, 1, 0, 1663898661, 1663898661);
|
||
INSERT INTO `la_system_menu` VALUES (110, 28, 'C', '热门搜索', 'el-icon-Search', 60, 'setting.hot_search/getConfig', 'search', 'setting/search/index', '', '', 0, 1, 0, 1663901821, 1710473109);
|
||
INSERT INTO `la_system_menu` VALUES (111, 110, 'A', '保存', '', 0, 'setting.hot_search/setConfig', '', '', '', '', 0, 1, 0, 1663901856, 1663901856);
|
||
INSERT INTO `la_system_menu` VALUES (112, 28, 'M', '用户设置', 'local-icon-keziyuyue', 90, '', 'user', '', '', '', 0, 1, 0, 1663903302, 1710473056);
|
||
INSERT INTO `la_system_menu` VALUES (113, 112, 'C', '用户设置', '', 0, 'setting.user.user/getConfig', 'setup', 'setting/user/setup', '', '', 0, 1, 0, 1663903506, 1663903506);
|
||
INSERT INTO `la_system_menu` VALUES (114, 113, 'A', '保存', '', 0, 'setting.user.user/setConfig', '', '', '', '', 0, 1, 0, 1663903522, 1663903522);
|
||
INSERT INTO `la_system_menu` VALUES (115, 112, 'C', '登录注册', '', 0, 'setting.user.user/getRegisterConfig', 'login_register', 'setting/user/login_register', '', '', 0, 1, 0, 1663903832, 1663903832);
|
||
INSERT INTO `la_system_menu` VALUES (116, 115, 'A', '保存', '', 0, 'setting.user.user/setRegisterConfig', '', '', '', '', 0, 1, 0, 1663903852, 1663903852);
|
||
INSERT INTO `la_system_menu` VALUES (117, 0, 'M', '用户管理', 'el-icon-User', 900, '', 'consumer', '', '', '', 0, 1, 0, 1663904351, 1710472074);
|
||
INSERT INTO `la_system_menu` VALUES (118, 117, 'C', '用户列表', 'local-icon-user_guanli', 100, 'user.user/lists', 'lists', 'consumer/lists/index', '', '', 0, 1, 0, 1663904392, 1710471845);
|
||
INSERT INTO `la_system_menu` VALUES (119, 117, 'C', '用户详情', '', 90, 'user.user/detail', 'lists/detail', 'consumer/lists/detail', '/consumer/lists', '', 0, 0, 0, 1663904470, 1710471851);
|
||
INSERT INTO `la_system_menu` VALUES (120, 119, 'A', '编辑', '', 0, 'user.user/edit', '', '', '', '', 0, 1, 0, 1663904499, 1663904499);
|
||
INSERT INTO `la_system_menu` VALUES (140, 82, 'C', '微信开发平台', 'local-icon-notice_buyer', 70, 'channel.open_setting/getConfig', 'open_setting', 'channel/open_setting', '', '', 0, 1, 0, 1666085713, 1710472951);
|
||
INSERT INTO `la_system_menu` VALUES (141, 140, 'A', '保存', '', 0, 'channel.open_setting/setConfig', '', '', '', '', 0, 1, 0, 1666085751, 1666085776);
|
||
INSERT INTO `la_system_menu` VALUES (142, 176, 'C', 'PC端装修', 'el-icon-Monitor', 8, '', 'pc', 'decoration/pc', '', '', 0, 1, 0, 1668423284, 1710901602);
|
||
INSERT INTO `la_system_menu` VALUES (143, 35, 'C', '定时任务', '', 100, 'crontab.crontab/lists', 'scheduled_task', 'setting/system/scheduled_task/index', '', '', 0, 1, 0, 1669357509, 1710473246);
|
||
INSERT INTO `la_system_menu` VALUES (144, 35, 'C', '定时任务添加/编辑', '', 0, 'crontab.crontab/add:edit', 'scheduled_task/edit', 'setting/system/scheduled_task/edit', '/setting/system/scheduled_task', '', 0, 0, 0, 1669357670, 1669357765);
|
||
INSERT INTO `la_system_menu` VALUES (145, 143, 'A', '添加', '', 0, 'crontab.crontab/add', '', '', '', '', 0, 1, 0, 1669358282, 1669358282);
|
||
INSERT INTO `la_system_menu` VALUES (146, 143, 'A', '编辑', '', 0, 'crontab.crontab/edit', '', '', '', '', 0, 1, 0, 1669358303, 1669358303);
|
||
INSERT INTO `la_system_menu` VALUES (147, 143, 'A', '删除', '', 0, 'crontab.crontab/delete', '', '', '', '', 0, 1, 0, 1669358334, 1669358334);
|
||
INSERT INTO `la_system_menu` VALUES (148, 0, 'M', '模板示例', 'el-icon-SetUp', 100, '', 'template', '', '', '', 0, 1, 0, 1670206819, 1710472811);
|
||
INSERT INTO `la_system_menu` VALUES (149, 148, 'M', '组件示例', 'el-icon-Coin', 0, '', 'component', '', '', '', 0, 1, 0, 1670207182, 1670207244);
|
||
INSERT INTO `la_system_menu` VALUES (150, 149, 'C', '富文本', '', 90, '', 'rich_text', 'template/component/rich_text', '', '', 0, 1, 0, 1670207751, 1710473315);
|
||
INSERT INTO `la_system_menu` VALUES (151, 149, 'C', '上传文件', '', 80, '', 'upload', 'template/component/upload', '', '', 0, 1, 0, 1670208925, 1710473322);
|
||
INSERT INTO `la_system_menu` VALUES (152, 149, 'C', '图标', '', 100, '', 'icon', 'template/component/icon', '', '', 0, 1, 0, 1670230069, 1710473306);
|
||
INSERT INTO `la_system_menu` VALUES (153, 149, 'C', '文件选择器', '', 60, '', 'file', 'template/component/file', '', '', 0, 1, 0, 1670232129, 1710473341);
|
||
INSERT INTO `la_system_menu` VALUES (154, 149, 'C', '链接选择器', '', 50, '', 'link', 'template/component/link', '', '', 0, 1, 0, 1670292636, 1710473346);
|
||
INSERT INTO `la_system_menu` VALUES (155, 149, 'C', '超出自动打点', '', 40, '', 'overflow', 'template/component/overflow', '', '', 0, 1, 0, 1670292883, 1710473351);
|
||
INSERT INTO `la_system_menu` VALUES (156, 149, 'C', '悬浮input', '', 70, '', 'popover_input', 'template/component/popover_input', '', '', 0, 1, 0, 1670293336, 1710473329);
|
||
INSERT INTO `la_system_menu` VALUES (157, 119, 'A', '余额调整', '', 0, 'user.user/adjustMoney', '', '', '', '', 0, 1, 0, 1677143088, 1677143088);
|
||
INSERT INTO `la_system_menu` VALUES (158, 0, 'M', '应用管理', 'el-icon-Postcard', 800, '', 'app', '', '', '', 0, 1, 0, 1677143430, 1710472079);
|
||
INSERT INTO `la_system_menu` VALUES (159, 158, 'C', '用户充值', 'local-icon-fukuan', 100, 'recharge.recharge/getConfig', 'recharge', 'app/recharge/index', '', '', 0, 1, 0, 1677144284, 1710471860);
|
||
INSERT INTO `la_system_menu` VALUES (160, 159, 'A', '保存', '', 0, 'recharge.recharge/setConfig', '', '', '', '', 0, 1, 0, 1677145012, 1677145012);
|
||
INSERT INTO `la_system_menu` VALUES (161, 28, 'M', '支付设置', 'local-icon-set_pay', 80, '', 'pay', '', '', '', 0, 1, 0, 1677148075, 1710473061);
|
||
INSERT INTO `la_system_menu` VALUES (162, 161, 'C', '支付方式', '', 0, 'setting.pay.pay_way/getPayWay', 'method', 'setting/pay/method/index', '', '', 0, 1, 0, 1677148207, 1677148207);
|
||
INSERT INTO `la_system_menu` VALUES (163, 161, 'C', '支付配置', '', 0, 'setting.pay.pay_config/lists', 'config', 'setting/pay/config/index', '', '', 0, 1, 0, 1677148260, 1677148374);
|
||
INSERT INTO `la_system_menu` VALUES (164, 162, 'A', '设置支付方式', '', 0, 'setting.pay.pay_way/setPayWay', '', '', '', '', 0, 1, 0, 1677219624, 1677219624);
|
||
INSERT INTO `la_system_menu` VALUES (165, 163, 'A', '配置', '', 0, 'setting.pay.pay_config/setConfig', '', '', '', '', 0, 1, 0, 1677219655, 1677219655);
|
||
INSERT INTO `la_system_menu` VALUES (166, 0, 'M', '财务管理', 'local-icon-user_gaikuang', 700, '', 'finance', '', '', '', 0, 1, 0, 1677552269, 1710472085);
|
||
INSERT INTO `la_system_menu` VALUES (167, 166, 'C', '充值记录', 'el-icon-Wallet', 90, 'recharge.recharge/lists', 'recharge_record', 'finance/recharge_record', '', '', 0, 1, 0, 1677552757, 1710472902);
|
||
INSERT INTO `la_system_menu` VALUES (168, 166, 'C', '余额明细', 'local-icon-qianbao', 100, 'finance.account_log/lists', 'balance_details', 'finance/balance_details', '', '', 0, 1, 0, 1677552976, 1710472894);
|
||
INSERT INTO `la_system_menu` VALUES (169, 167, 'A', '退款', '', 0, 'recharge.recharge/refund', '', '', '', '', 0, 1, 0, 1677809715, 1677809715);
|
||
INSERT INTO `la_system_menu` VALUES (170, 166, 'C', '退款记录', 'local-icon-heshoujilu', 0, 'finance.refund/record', 'refund_record', 'finance/refund_record', '', '', 0, 1, 0, 1677811271, 1677811271);
|
||
INSERT INTO `la_system_menu` VALUES (171, 170, 'A', '重新退款', '', 0, 'recharge.recharge/refundAgain', '', '', '', '', 0, 1, 0, 1677811295, 1677811295);
|
||
INSERT INTO `la_system_menu` VALUES (172, 170, 'A', '退款日志', '', 0, 'finance.refund/log', '', '', '', '', 0, 1, 0, 1677811361, 1677811361);
|
||
INSERT INTO `la_system_menu` VALUES (173, 175, 'C', '系统风格', 'el-icon-Brush', 80, '', 'style', 'decoration/style/style', '', '', 0, 1, 0, 1681635044, 1710929278);
|
||
INSERT INTO `la_system_menu` VALUES (175, 96, 'M', '移动端', '', 100, '', 'mobile', '', '', '', 0, 1, 0, 1710901543, 1710929294);
|
||
INSERT INTO `la_system_menu` VALUES (176, 96, 'M', 'PC端', '', 90, '', 'pc', '', '', '', 0, 1, 0, 1710901592, 1710929299);
|
||
INSERT INTO `la_system_menu` VALUES (177, 29, 'C', '站点统计', '', 0, 'setting.web.web_setting/getSiteStatistics', 'statistics', 'setting/website/statistics', '', '', 0, 1, 0, 1726841481, 1726843434);
|
||
INSERT INTO `la_system_menu` VALUES (178, 177, 'A', '保存', '', 0, 'setting.web.web_setting/saveSiteStatistics', '', '', '', '', 1, 1, 0, 1726841507, 1726841507);
|
||
INSERT INTO `la_system_menu` VALUES (179, 158, 'C', '广告管理', 'el-icon-Picture', 50, 'banner/lists', 'banner', 'app/banner/index', '', '', 0, 1, 0, 1777452013, 1777452013);
|
||
INSERT INTO `la_system_menu` VALUES (180, 179, 'A', '新增', '', 0, 'banner/add', '', '', '', '', 0, 0, 0, 1777452013, 1777452013);
|
||
INSERT INTO `la_system_menu` VALUES (181, 179, 'A', '编辑', '', 0, 'banner/edit', '', '', '', '', 0, 0, 0, 1777452013, 1777452013);
|
||
INSERT INTO `la_system_menu` VALUES (182, 179, 'A', '删除', '', 0, 'banner/delete', '', '', '', '', 0, 0, 0, 1777452013, 1777452013);
|
||
INSERT INTO `la_system_menu` VALUES (183, 179, 'A', '修改状态', '', 0, 'banner/updateStatus', '', '', '', '', 0, 0, 0, 1777452013, 1777452013);
|
||
INSERT INTO `la_system_menu` VALUES (184, 179, 'A', '详情', '', 0, 'banner/detail', '', '', '', '', 0, 0, 0, 1777452013, 1777452013);
|
||
INSERT INTO `la_system_menu` VALUES (185, 29, 'C', '联系方式', '', 2, 'setting.web.web_setting/getContact', 'contact', 'setting/website/contact', '', '', 0, 1, 0, 1777486723, 1777486723);
|
||
INSERT INTO `la_system_menu` VALUES (186, 185, 'A', '保存', '', 1, 'setting.web.web_setting/setContact', '', '', '', '', 0, 1, 0, 1777486742, 1777486742);
|
||
INSERT INTO `la_system_menu` VALUES (187, 158, 'C', '预定入口', 'el-icon-House', 49, 'booking.rent_type/lists', 'booking-rent-type', 'app/booking-rent-type/index', '', '', 0, 1, 0, 1777489256, 1777489256);
|
||
INSERT INTO `la_system_menu` VALUES (188, 187, 'A', '新增', '', 0, 'booking.rent_type/add', '', '', '', '', 0, 0, 0, 1777489256, 1777489256);
|
||
INSERT INTO `la_system_menu` VALUES (189, 187, 'A', '编辑', '', 0, 'booking.rent_type/edit', '', '', '', '', 0, 0, 0, 1777489256, 1777489256);
|
||
INSERT INTO `la_system_menu` VALUES (190, 187, 'A', '删除', '', 0, 'booking.rent_type/delete', '', '', '', '', 0, 0, 0, 1777489256, 1777489256);
|
||
INSERT INTO `la_system_menu` VALUES (191, 187, 'A', '修改状态', '', 0, 'booking.rent_type/updateStatus', '', '', '', '', 0, 0, 0, 1777489256, 1777489256);
|
||
INSERT INTO `la_system_menu` VALUES (192, 187, 'A', '详情', '', 0, 'booking.rent_type/detail', '', '', '', '', 0, 0, 0, 1777489256, 1777489256);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_system_role
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_system_role`;
|
||
CREATE TABLE `la_system_role` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '名称',
|
||
`desc` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '' COMMENT '描述',
|
||
`sort` int NULL DEFAULT 0 COMMENT '排序',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_system_role
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_system_role_menu
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_system_role_menu`;
|
||
CREATE TABLE `la_system_role_menu` (
|
||
`role_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '角色ID',
|
||
`menu_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '菜单ID',
|
||
PRIMARY KEY (`role_id`, `menu_id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色菜单关系表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_system_role_menu
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_user
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_user`;
|
||
CREATE TABLE `la_user` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
|
||
`sn` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '编号',
|
||
`avatar` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '头像',
|
||
`real_name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '真实姓名',
|
||
`nickname` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '用户昵称',
|
||
`account` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '用户账号',
|
||
`password` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '用户密码',
|
||
`mobile` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '用户电话',
|
||
`sex` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '用户性别: [1=男, 2=女]',
|
||
`channel` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '注册渠道: [1-微信小程序 2-微信公众号 3-手机H5 4-电脑PC 5-苹果APP 6-安卓APP]',
|
||
`user_type` tinyint NOT NULL DEFAULT 1 COMMENT '用户类型 字典 user_type: 1个人 2企业 3商户',
|
||
`realname_status` tinyint NOT NULL DEFAULT 0 COMMENT '实名状态 字典 realname_status',
|
||
`id_card_name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '实名姓名',
|
||
`id_card_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '身份证号(加密存储)',
|
||
`level_id` int UNSIGNED NOT NULL DEFAULT 1 COMMENT '会员等级ID -> la_member_level.id',
|
||
`points` int NOT NULL DEFAULT 0 COMMENT '可用积分余额',
|
||
`total_points` int NOT NULL DEFAULT 0 COMMENT '累计获得积分',
|
||
`is_disable` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否禁用: [0=否, 1=是]',
|
||
`login_ip` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '最后登录IP',
|
||
`login_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '最后登录时间',
|
||
`is_new_user` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否是新注册用户: [1-是, 0-否]',
|
||
`user_money` decimal(10, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '用户余额',
|
||
`total_recharge_amount` decimal(10, 2) UNSIGNED NULL DEFAULT 0.00 COMMENT '累计充值',
|
||
`total_consume` decimal(12, 2) NOT NULL DEFAULT 0.00 COMMENT '累计消费金额',
|
||
`total_rent_month` int NOT NULL DEFAULT 0 COMMENT '累计租赁月数',
|
||
`wx_openid` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '微信小程序openid',
|
||
`wx_unionid` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '微信unionid',
|
||
`enterprise_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属企业ID',
|
||
`family_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属家庭组ID',
|
||
`merchant_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '关联商户ID(商户类型)',
|
||
`housekeeper_id` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '专属管家ID',
|
||
`create_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间',
|
||
`update_time` int UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间',
|
||
`delete_time` int UNSIGNED NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `sn`(`sn` ASC) USING BTREE COMMENT '编号唯一',
|
||
UNIQUE INDEX `account`(`account` ASC) USING BTREE COMMENT '账号唯一',
|
||
INDEX `idx_mobile`(`mobile` ASC) USING BTREE,
|
||
INDEX `idx_openid`(`wx_openid` ASC) USING BTREE,
|
||
INDEX `idx_unionid`(`wx_unionid` ASC) USING BTREE,
|
||
INDEX `idx_enterprise`(`enterprise_id` ASC) USING BTREE,
|
||
INDEX `idx_family`(`family_id` ASC) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_user
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_user_account_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_user_account_log`;
|
||
CREATE TABLE `la_user_account_log` (
|
||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`sn` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '流水号',
|
||
`user_id` int NOT NULL COMMENT '用户id',
|
||
`change_object` tinyint(1) NOT NULL DEFAULT 0 COMMENT '变动对象',
|
||
`change_type` smallint NOT NULL COMMENT '变动类型',
|
||
`action` tinyint(1) NOT NULL DEFAULT 0 COMMENT '动作 1-增加 2-减少',
|
||
`change_amount` decimal(10, 2) NOT NULL COMMENT '变动数量',
|
||
`left_amount` decimal(10, 2) NOT NULL DEFAULT 100.00 COMMENT '变动后数量',
|
||
`source_sn` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '关联单号',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注',
|
||
`extra` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '预留扩展字段',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`delete_time` int NULL DEFAULT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户账户变动日志表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_user_account_log
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_user_auth
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_user_auth`;
|
||
CREATE TABLE `la_user_auth` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`user_id` int NOT NULL COMMENT '用户id',
|
||
`openid` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '微信openid',
|
||
`unionid` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '微信unionid',
|
||
`terminal` tinyint(1) NOT NULL DEFAULT 1 COMMENT '客户端类型:1-微信小程序;2-微信公众号;3-手机H5;4-电脑PC;5-苹果APP;6-安卓APP',
|
||
`create_time` int NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `openid`(`openid` ASC) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户授权表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_user_auth
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for la_user_session
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `la_user_session`;
|
||
CREATE TABLE `la_user_session` (
|
||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
`user_id` int NOT NULL COMMENT '用户id',
|
||
`terminal` tinyint(1) NOT NULL DEFAULT 1 COMMENT '客户端类型:1-微信小程序;2-微信公众号;3-手机H5;4-电脑PC;5-苹果APP;6-安卓APP',
|
||
`token` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '令牌',
|
||
`update_time` int NULL DEFAULT NULL COMMENT '更新时间',
|
||
`expire_time` int NOT NULL COMMENT '到期时间',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `admin_id_client`(`user_id` ASC, `terminal` ASC) USING BTREE COMMENT '一个用户在一个终端只有一个token',
|
||
UNIQUE INDEX `token`(`token` ASC) USING BTREE COMMENT 'token是唯一的'
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户会话表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of la_user_session
|
||
-- ----------------------------
|
||
|
||
SET FOREIGN_KEY_CHECKS = 1;
|