qa-ifish7/web/Application/Install/Data/jijincms.sql

922 lines
505 KiB
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
MySQL Backup
Source Server Version: 5.7.17
Source Database: jijincms
Date: 2020-01-15 09:36:31
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `db_access`
-- ----------------------------
DROP TABLE IF EXISTS `db_access`;
CREATE TABLE `db_access` (
`role_id` smallint(6) unsigned NOT NULL,
`node_id` smallint(6) unsigned NOT NULL,
`level` tinyint(1) NOT NULL,
`module` varchar(50) DEFAULT NULL,
KEY `groupId` (`role_id`),
KEY `nodeId` (`node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_ad`
-- ----------------------------
DROP TABLE IF EXISTS `db_ad`;
CREATE TABLE `db_ad` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`adid` int(11) NOT NULL,
`pubid` bigint(15) NOT NULL,
`status` tinyint(4) NOT NULL,
`name` varchar(50) NOT NULL,
`intro` varchar(255) DEFAULT NULL,
`type` varchar(50) DEFAULT NULL,
`thumb` varchar(255) DEFAULT NULL,
`link` varchar(255) DEFAULT NULL,
`sort` int(11) NOT NULL DEFAULT '0',
`adcode` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_ad_cat`
-- ----------------------------
DROP TABLE IF EXISTS `db_ad_cat`;
CREATE TABLE `db_ad_cat` (
`adid` int(11) NOT NULL AUTO_INCREMENT,
`pubid` bigint(15) NOT NULL,
`name` varchar(50) NOT NULL,
`intro` varchar(255) DEFAULT NULL,
`type` varchar(50) NOT NULL,
`thumb` varchar(255) DEFAULT NULL,
`link` varchar(255) DEFAULT NULL,
`sort` int(11) NOT NULL,
`adcode` text,
PRIMARY KEY (`adid`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_cat`
-- ----------------------------
DROP TABLE IF EXISTS `db_cat`;
CREATE TABLE `db_cat` (
`catid` smallint(11) NOT NULL AUTO_INCREMENT,
`modelid` int(11) NOT NULL,
`lang` varchar(10) DEFAULT '' COMMENT '语言',
`pubid` bigint(15) NOT NULL,
`classpath` varchar(255) NOT NULL DEFAULT '',
`table_name` varchar(100) NOT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
`infonum` int(11) NOT NULL COMMENT '信息条数',
`lencord` smallint(5) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
`sort` smallint(6) unsigned NOT NULL,
`pid` smallint(6) unsigned NOT NULL,
`level` tinyint(1) unsigned NOT NULL,
`is_last` tinyint(1) NOT NULL DEFAULT '0',
`parent_catids` text COMMENT '所有父级栏目',
`son_catids` text COMMENT '所有子级栏目',
`listtemp` int(10) unsigned NOT NULL DEFAULT '0',
`viewtemp` int(10) unsigned NOT NULL DEFAULT '0',
`thumb` varchar(255) NOT NULL DEFAULT '',
`pagetitle` varchar(255) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`description` text,
`is_page` tinyint(1) unsigned NOT NULL DEFAULT '0',
`is_show` tinyint(1) NOT NULL DEFAULT '0',
`list_type` varchar(20) DEFAULT NULL,
`view_type` varchar(20) DEFAULT NULL,
`listorder` varchar(255) DEFAULT NULL,
`reorder` varchar(255) DEFAULT NULL,
`member_group_id` varchar(255) DEFAULT NULL,
`test22` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`catid`),
KEY `level` (`level`),
KEY `pid` (`pid`),
KEY `status` (`status`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_cat_data`
-- ----------------------------
DROP TABLE IF EXISTS `db_cat_data`;
CREATE TABLE `db_cat_data` (
`catid` smallint(11) NOT NULL,
PRIMARY KEY (`catid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_cat_field`
-- ----------------------------
DROP TABLE IF EXISTS `db_cat_field`;
CREATE TABLE `db_cat_field` (
`field_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`field` varchar(50) NOT NULL DEFAULT '' COMMENT '字段名',
`name` varchar(30) NOT NULL DEFAULT '' COMMENT '别名',
`fieldtype` varchar(30) NOT NULL COMMENT '字段类型',
`fieldlen` varchar(20) NOT NULL COMMENT '长度',
`formtype` varchar(20) NOT NULL DEFAULT '' COMMENT '字段类型',
`tips` text COMMENT '字段提示',
`pattern` varchar(255) NOT NULL DEFAULT '' COMMENT '数据校验正则',
`errortips` varchar(255) DEFAULT '' COMMENT '数据校验未通过的提示信息',
`savefun` varchar(255) DEFAULT NULL,
`issystem` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否主表',
`isunique` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '值唯一',
`sort` mediumint(8) unsigned NOT NULL DEFAULT '0',
`formwidth` smallint(4) DEFAULT NULL COMMENT '元素宽度',
`formheight` smallint(4) DEFAULT NULL COMMENT '元素高度',
`imgwidth` smallint(4) DEFAULT '0',
`imgheight` smallint(4) DEFAULT '0',
`defaultval` text COMMENT '默认值',
`htmlcode` longtext COMMENT 'html代码',
PRIMARY KEY (`field_id`),
KEY `field` (`field`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COMMENT='模型字段列表';
-- ----------------------------
-- Table structure for `db_cms_news`
-- ----------------------------
DROP TABLE IF EXISTS `db_cms_news`;
CREATE TABLE `db_cms_news` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`modelid` smallint(5) unsigned NOT NULL DEFAULT '0',
`checked` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`thumb` varchar(255) NOT NULL DEFAULT '',
`linkurl` varchar(255) NOT NULL DEFAULT '',
`newstime` int(11) unsigned NOT NULL DEFAULT '0',
`pagetitle` varchar(255) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`pubid` bigint(15) unsigned NOT NULL DEFAULT '0',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0',
`userid` int(11) unsigned NOT NULL DEFAULT '0',
`username` char(20) NOT NULL DEFAULT '',
`addtime` int(10) unsigned NOT NULL DEFAULT '0',
`editortime` int(10) unsigned NOT NULL DEFAULT '0',
`is_good` int(11) NOT NULL DEFAULT '0' COMMENT '推荐',
`is_top` int(11) NOT NULL DEFAULT '0' COMMENT '置顶',
`views` int(11) NOT NULL DEFAULT '0' COMMENT '点击总数',
`goods` int(11) NOT NULL DEFAULT '0' COMMENT '点赞数',
`favs` int(11) NOT NULL DEFAULT '0' COMMENT '收藏数',
`comments` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
`viewtemp` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `checked` (`checked`),
KEY `catid` (`catid`),
KEY `sort` (`sort`)
) ENGINE=InnoDB AUTO_INCREMENT=9394 DEFAULT CHARSET=utf8 COMMENT='新闻数据表';
-- ----------------------------
-- Table structure for `db_cms_news_data`
-- ----------------------------
DROP TABLE IF EXISTS `db_cms_news_data`;
CREATE TABLE `db_cms_news_data` (
`id` mediumint(8) unsigned NOT NULL,
`newstext` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='新闻数据表-副表';
-- ----------------------------
-- Table structure for `db_cms_product`
-- ----------------------------
DROP TABLE IF EXISTS `db_cms_product`;
CREATE TABLE `db_cms_product` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`modelid` smallint(5) unsigned NOT NULL DEFAULT '0',
`checked` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`thumb` varchar(255) NOT NULL DEFAULT '',
`linkurl` varchar(255) NOT NULL DEFAULT '',
`newstime` int(11) unsigned NOT NULL DEFAULT '0',
`pagetitle` varchar(255) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`pubid` bigint(15) unsigned NOT NULL DEFAULT '0',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0',
`userid` int(11) unsigned NOT NULL DEFAULT '0',
`username` char(20) NOT NULL DEFAULT '',
`addtime` int(10) unsigned NOT NULL DEFAULT '0',
`editortime` int(10) unsigned NOT NULL DEFAULT '0',
`is_good` int(11) NOT NULL DEFAULT '0' COMMENT '推荐',
`is_top` int(11) NOT NULL DEFAULT '0' COMMENT '置顶',
`views` int(11) NOT NULL DEFAULT '0' COMMENT '点击总数',
`goods` int(11) NOT NULL DEFAULT '0' COMMENT '点赞数',
`favs` int(11) NOT NULL DEFAULT '0' COMMENT '收藏数',
`comments` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
`viewtemp` int(11) NOT NULL DEFAULT '0' COMMENT '单独内容模板',
`price` int(11) NOT NULL DEFAULT '0',
`morepic` text,
`type_no` varchar(50) NOT NULL DEFAULT '',
`pro_group` varchar(50) NOT NULL DEFAULT '',
`price2` int(11) unsigned NOT NULL DEFAULT '0',
`sales` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `checked` (`checked`),
KEY `catid` (`catid`),
KEY `sort` (`sort`)
) ENGINE=InnoDB AUTO_INCREMENT=641 DEFAULT CHARSET=utf8 COMMENT='产品数据表';
-- ----------------------------
-- Table structure for `db_cms_product_data`
-- ----------------------------
DROP TABLE IF EXISTS `db_cms_product_data`;
CREATE TABLE `db_cms_product_data` (
`id` mediumint(8) unsigned NOT NULL,
`newstext` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='产品数据表-副表';
-- ----------------------------
-- Table structure for `db_feedback`
-- ----------------------------
DROP TABLE IF EXISTS `db_feedback`;
CREATE TABLE `db_feedback` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`addtime` int(11) NOT NULL,
`member_id` int(11) DEFAULT '0',
`is_read` tinyint(4) NOT NULL DEFAULT '0',
`ip` varchar(50) NOT NULL,
`catid` int(11) NOT NULL,
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(50) NOT NULL DEFAULT '',
`email` varchar(50) NOT NULL DEFAULT '',
`mobile` varchar(255) NOT NULL DEFAULT '',
`content` text,
`sex` varchar(255) NOT NULL DEFAULT '',
`city` varchar(200) NOT NULL DEFAULT '',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_feedback_cat`
-- ----------------------------
DROP TABLE IF EXISTS `db_feedback_cat`;
CREATE TABLE `db_feedback_cat` (
`catid` smallint(4) NOT NULL AUTO_INCREMENT,
`status` tinyint(4) NOT NULL,
`lang` varchar(20) DEFAULT NULL,
`name` varchar(50) NOT NULL,
`sort` int(11) NOT NULL DEFAULT '0',
`formtemp` text,
`is_enter` text,
`must_enter` text,
`verify_code` tinyint(3) NOT NULL,
`member_group` varchar(50) DEFAULT NULL,
`request_email` varchar(255) DEFAULT NULL,
PRIMARY KEY (`catid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_feedback_field`
-- ----------------------------
DROP TABLE IF EXISTS `db_feedback_field`;
CREATE TABLE `db_feedback_field` (
`field_id` mediumint(8) NOT NULL AUTO_INCREMENT,
`field` varchar(20) NOT NULL DEFAULT '' COMMENT '字段名',
`name` varchar(30) NOT NULL DEFAULT '' COMMENT '别名',
`fieldtype` varchar(30) NOT NULL COMMENT '字段类型',
`fieldlen` varchar(20) NOT NULL COMMENT '长度',
`formtype` varchar(20) NOT NULL DEFAULT '' COMMENT '字段类型',
`tips` text COMMENT '字段提示',
`pattern` varchar(255) NOT NULL DEFAULT '' COMMENT '数据校验正则',
`errortips` varchar(255) DEFAULT '' COMMENT '数据校验未通过的提示信息',
`savefun` varchar(255) DEFAULT NULL,
`sort` mediumint(8) unsigned NOT NULL DEFAULT '0',
`formwidth` smallint(4) DEFAULT NULL COMMENT '元素宽度',
`formheight` smallint(4) DEFAULT NULL COMMENT '元素高度',
`defaultval` text COMMENT '默认值',
`htmlcode` longtext COMMENT 'html代码',
PRIMARY KEY (`field_id`),
KEY `field` (`field`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COMMENT='模型字段列表';
-- ----------------------------
-- Table structure for `db_file`
-- ----------------------------
DROP TABLE IF EXISTS `db_file`;
CREATE TABLE `db_file` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '文件ID',
`pubid` bigint(15) NOT NULL COMMENT '关联信息id',
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '原始文件名',
`savename` varchar(255) NOT NULL DEFAULT '' COMMENT '保存名称',
`smallpath` varchar(255) DEFAULT NULL COMMENT '缩略图路径',
`filepath` varchar(255) NOT NULL COMMENT '完整的路径',
`savepath` varchar(255) NOT NULL DEFAULT '' COMMENT '文件保存路径',
`ext` char(5) NOT NULL DEFAULT '' COMMENT '文件后缀',
`mime` char(40) NOT NULL DEFAULT '' COMMENT '文件mime类型',
`size` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '文件大小',
`md5` char(32) NOT NULL DEFAULT '' COMMENT '文件md5',
`sha1` char(40) NOT NULL DEFAULT '' COMMENT '文件 sha1编码',
`location` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '文件保存位置',
`create_time` int(10) unsigned NOT NULL COMMENT '上传时间',
PRIMARY KEY (`id`),
KEY `uk_md5` (`md5`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8 COMMENT='文件表';
-- ----------------------------
-- Table structure for `db_link`
-- ----------------------------
DROP TABLE IF EXISTS `db_link`;
CREATE TABLE `db_link` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`catid` int(11) NOT NULL,
`status` tinyint(3) NOT NULL,
`pubid` bigint(15) NOT NULL,
`name` varchar(50) NOT NULL,
`thumb` varchar(255) DEFAULT NULL,
`link` varchar(255) DEFAULT NULL,
`sort` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_link_cat`
-- ----------------------------
DROP TABLE IF EXISTS `db_link_cat`;
CREATE TABLE `db_link_cat` (
`catid` int(11) NOT NULL AUTO_INCREMENT,
`pubid` bigint(15) NOT NULL,
`lang` varchar(50) DEFAULT NULL,
`name` varchar(50) NOT NULL,
`thumb` varchar(255) DEFAULT NULL,
`link` varchar(255) DEFAULT NULL,
`sort` int(11) NOT NULL,
PRIMARY KEY (`catid`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_member`
-- ----------------------------
DROP TABLE IF EXISTS `db_member`;
CREATE TABLE `db_member` (
`member_id` int(11) NOT NULL AUTO_INCREMENT,
`mobile` varchar(20) DEFAULT NULL,
`password` varchar(50) DEFAULT NULL COMMENT '密码',
`truename` varchar(20) DEFAULT NULL,
`company_name` varchar(255) DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`checked` tinyint(1) DEFAULT '0',
`checked_time` int(11) DEFAULT '0',
`register_time` int(11) DEFAULT NULL,
`login_num` int(11) DEFAULT '0',
`last_login_ip` varchar(255) DEFAULT NULL COMMENT '最后登陆IP',
`last_login_time` int(11) DEFAULT '0',
`token` varchar(50) DEFAULT NULL,
`zhuyinghangye` int(11) DEFAULT NULL COMMENT '主营行业',
`kehuxingzhi` int(11) DEFAULT NULL COMMENT '客户性质',
`guhua` varchar(255) DEFAULT NULL COMMENT '固定电话',
`lianxiren` varchar(255) DEFAULT NULL COMMENT '联系人',
`lianxiren_mobile` varchar(255) DEFAULT NULL COMMENT '联系人手机',
`email` varchar(255) DEFAULT NULL,
PRIMARY KEY (`member_id`)
) ENGINE=MyISAM AUTO_INCREMENT=51 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_member_address`
-- ----------------------------
DROP TABLE IF EXISTS `db_member_address`;
CREATE TABLE `db_member_address` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`username` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`province` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`area` varchar(255) DEFAULT NULL,
`detail` varchar(255) DEFAULT NULL,
`sh_status` tinyint(4) DEFAULT '0',
`sp_status` tinyint(4) DEFAULT '0',
`create_time` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_member_group`
-- ----------------------------
DROP TABLE IF EXISTS `db_member_group`;
CREATE TABLE `db_member_group` (
`group_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
PRIMARY KEY (`group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_member_invoice`
-- ----------------------------
DROP TABLE IF EXISTS `db_member_invoice`;
CREATE TABLE `db_member_invoice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) DEFAULT NULL,
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1:增值税专票 0:普通发票',
`company_name` varchar(255) DEFAULT NULL,
`taxpayer_number` varchar(255) DEFAULT NULL,
`registration_address` varchar(255) DEFAULT NULL,
`registration_mobile` varchar(255) DEFAULT NULL,
`opening_bank` varchar(255) DEFAULT NULL,
`bank_account` varchar(255) DEFAULT NULL,
`create_time` int(11) DEFAULT NULL,
`status` tinyint(4) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_model`
-- ----------------------------
DROP TABLE IF EXISTS `db_model`;
CREATE TABLE `db_model` (
`modelid` smallint(4) NOT NULL AUTO_INCREMENT,
`table_id` smallint(4) NOT NULL,
`table_name` varchar(50) NOT NULL,
`status` tinyint(4) NOT NULL,
`name` varchar(50) NOT NULL,
`sort` int(11) NOT NULL DEFAULT '0',
`contribute` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否开启投稿',
`autochecked` smallint(4) NOT NULL COMMENT '自动审核 1为自动 0为人工',
`listtemp` varchar(255) DEFAULT NULL,
`formtemp` text,
`is_enter` text,
`is_contribute` text,
`must_enter` text,
`is_list` text,
`is_search` text,
`is_sort` text,
`cat_formtemp` text,
`cat_is_enter` text,
`cat_must_enter` text,
PRIMARY KEY (`modelid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_node`
-- ----------------------------
DROP TABLE IF EXISTS `db_node`;
CREATE TABLE `db_node` (
`id` smallint(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`title` varchar(50) DEFAULT NULL,
`status` tinyint(1) DEFAULT '0',
`remark` text,
`sort` smallint(6) unsigned DEFAULT NULL,
`pid` smallint(6) unsigned NOT NULL,
`level` tinyint(1) unsigned NOT NULL,
`icon` varchar(20) DEFAULT NULL COMMENT 'css class名',
`is_dev` smallint(4) DEFAULT NULL COMMENT '仅开发者模式可见',
`is_hide` smallint(4) DEFAULT NULL COMMENT '是否隐藏',
PRIMARY KEY (`id`),
KEY `level` (`level`),
KEY `pid` (`pid`),
KEY `status` (`status`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_page`
-- ----------------------------
DROP TABLE IF EXISTS `db_page`;
CREATE TABLE `db_page` (
`page_id` int(11) NOT NULL AUTO_INCREMENT,
`pubid` bigint(15) DEFAULT '0' COMMENT '附件表pubid',
`path_type` varchar(50) NOT NULL,
`classpath` varchar(255) NOT NULL,
`name` varchar(100) NOT NULL,
`title` varchar(100) DEFAULT NULL,
`lang` varchar(20) DEFAULT NULL,
`thumb` varchar(255) DEFAULT NULL,
`pagemod` varchar(20) NOT NULL COMMENT '1:直接页面式 2:模板式',
`template_id` int(11) DEFAULT NULL COMMENT '模板ID',
`pagetitle` varchar(50) DEFAULT '0',
`pagekey` varchar(255) DEFAULT '0' COMMENT '关键词',
`pagedes` text,
`pagetext` longtext NOT NULL,
PRIMARY KEY (`page_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_pages`
-- ----------------------------
DROP TABLE IF EXISTS `db_pages`;
CREATE TABLE `db_pages` (
`pages_id` smallint(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`path_type` varchar(20) NOT NULL,
`classpath` varchar(255) NOT NULL,
`lang` varchar(20) DEFAULT NULL,
`template_id` int(11) DEFAULT NULL COMMENT '模板ID',
`thumb` varchar(255) DEFAULT NULL,
`pagetitle` varchar(50) DEFAULT '0',
`pagekey` varchar(255) DEFAULT '0' COMMENT '关键词',
`pagedes` text,
`count_sql` text NOT NULL COMMENT '统计sql',
`select_sql` text NOT NULL COMMENT '查询sql',
`num_limit` tinyint(4) NOT NULL DEFAULT '0' COMMENT '条数限制',
`lencord` tinyint(4) NOT NULL DEFAULT '0' COMMENT '每页显示',
PRIMARY KEY (`pages_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_page_history`
-- ----------------------------
DROP TABLE IF EXISTS `db_page_history`;
CREATE TABLE `db_page_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`page_id` int(11) NOT NULL,
`addtime` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`username` varchar(100) NOT NULL,
`content` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_role`
-- ----------------------------
DROP TABLE IF EXISTS `db_role`;
CREATE TABLE `db_role` (
`id` smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`status` tinyint(1) unsigned DEFAULT NULL,
`remark` varchar(255) DEFAULT NULL,
`info_checked` text,
`info_view` text,
`info_add` text,
`info_editor` text,
`info_delete` text,
PRIMARY KEY (`id`),
KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_role_user`
-- ----------------------------
DROP TABLE IF EXISTS `db_role_user`;
CREATE TABLE `db_role_user` (
`role_id` mediumint(9) unsigned DEFAULT NULL,
`user_id` char(32) DEFAULT NULL,
KEY `group_id` (`role_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_shop_cart`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_cart`;
CREATE TABLE `db_shop_cart` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`catid` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`quantity` int(11) NOT NULL,
`addtime` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=342 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for `db_shop_order`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order`;
CREATE TABLE `db_shop_order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`order_num` varchar(50) CHARACTER SET utf8 NOT NULL,
`member_id` int(11) NOT NULL,
`money` float(11,2) NOT NULL DEFAULT '0.00',
`pay_money` float(11,2) NOT NULL DEFAULT '0.00' COMMENT '实付款',
`addtime` int(11) NOT NULL,
`remark` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
`status_code` int(4) NOT NULL DEFAULT '0' COMMENT '状态码,详见/shop/mode/shopOrderModel.php',
`status_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL COMMENT '状态名称,详见/shop/mode/shopOrderModel.php',
`is_cancel` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否取消',
`is_pay` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否支付',
`is_delivery` tinyint(4) NOT NULL DEFAULT '0' COMMENT '已发货',
`delivery_time` int(11) NOT NULL DEFAULT '0' COMMENT '发货时间',
`is_receipt` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否收货',
`is_offline_pay` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否线下付款',
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=185 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for `db_shop_order_address`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order_address`;
CREATE TABLE `db_shop_order_address` (
`order_id` int(11) NOT NULL,
`username` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`province` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`area` varchar(255) DEFAULT NULL,
`detail` varchar(255) DEFAULT NULL,
`express_company_code` varchar(50) DEFAULT NULL,
`express_company_num` varchar(50) DEFAULT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_shop_order_detail`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order_detail`;
CREATE TABLE `db_shop_order_detail` (
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`catid` int(11) NOT NULL DEFAULT '0',
`thumb` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
`title` varchar(255) CHARACTER SET utf8 NOT NULL,
`type_no` varchar(255) DEFAULT NULL,
`quantity` int(11) NOT NULL,
`price` float(10,2) NOT NULL,
`money` float(10,2) NOT NULL
) ENGINE=MyISAM AUTO_INCREMENT=143 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for `db_shop_order_invoice`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order_invoice`;
CREATE TABLE `db_shop_order_invoice` (
`order_id` int(11) NOT NULL,
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1:增值税专票 0:普通发票',
`company_name` varchar(255) DEFAULT NULL,
`taxpayer_number` varchar(255) DEFAULT NULL,
`registration_address` varchar(255) DEFAULT NULL,
`registration_mobile` varchar(255) DEFAULT NULL,
`opening_bank` varchar(255) DEFAULT NULL,
`bank_account` varchar(255) DEFAULT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_shop_order_invoice_address`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order_invoice_address`;
CREATE TABLE `db_shop_order_invoice_address` (
`order_id` int(11) NOT NULL,
`username` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`province` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`area` varchar(255) DEFAULT NULL,
`detail` varchar(255) DEFAULT NULL,
`express_company_code` varchar(50) DEFAULT NULL,
`express_company_num` varchar(50) DEFAULT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_shop_order_log`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order_log`;
CREATE TABLE `db_shop_order_log` (
`order_id` int(11) NOT NULL,
`addtime` int(11) NOT NULL DEFAULT '0' COMMENT '时间',
`content` text
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_shop_order_payment`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order_payment`;
CREATE TABLE `db_shop_order_payment` (
`order_id` int(11) NOT NULL,
`addtime` int(11) NOT NULL,
`paytype` varchar(20) DEFAULT NULL,
`detail` text,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_shop_order_refund`
-- ----------------------------
DROP TABLE IF EXISTS `db_shop_order_refund`;
CREATE TABLE `db_shop_order_refund` (
`order_id` int(11) NOT NULL,
`is_refund` tinyint(1) NOT NULL DEFAULT '0' COMMENT '用户发货退款',
`is_refund_time` int(11) NOT NULL DEFAULT '0' COMMENT '用户发起退款时间',
`is_rerund_agree` tinyint(1) NOT NULL DEFAULT '0' COMMENT '后台同意',
`is_rerund_disagree` tinyint(1) NOT NULL DEFAULT '0' COMMENT '后台不同意',
`is_back_money` tinyint(1) NOT NULL DEFAULT '0' COMMENT '已原路返款',
`is_refund_cancel` tinyint(1) NOT NULL DEFAULT '0' COMMENT '用户自己取消退款',
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_table`
-- ----------------------------
DROP TABLE IF EXISTS `db_table`;
CREATE TABLE `db_table` (
`table_id` smallint(4) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`table_name` varchar(50) NOT NULL,
`description` varchar(255) DEFAULT NULL,
`sort` int(11) NOT NULL,
PRIMARY KEY (`table_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_table_field`
-- ----------------------------
DROP TABLE IF EXISTS `db_table_field`;
CREATE TABLE `db_table_field` (
`field_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`table_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '模型ID',
`field` varchar(50) NOT NULL DEFAULT '' COMMENT '字段名',
`name` varchar(30) NOT NULL DEFAULT '' COMMENT '别名',
`fieldtype` varchar(30) NOT NULL COMMENT '字段类型',
`fieldlen` varchar(20) NOT NULL COMMENT '长度',
`formtype` varchar(20) NOT NULL DEFAULT '' COMMENT '字段类型',
`tips` text COMMENT '字段提示',
`pattern` varchar(255) NOT NULL DEFAULT '' COMMENT '数据校验正则',
`errortips` varchar(255) DEFAULT '' COMMENT '数据校验未通过的提示信息',
`savefun` varchar(255) DEFAULT NULL,
`issystem` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否主表',
`isunique` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '值唯一',
`sort` mediumint(8) unsigned NOT NULL DEFAULT '0',
`formwidth` smallint(4) DEFAULT NULL COMMENT '元素宽度',
`formheight` smallint(4) DEFAULT NULL COMMENT '元素高度',
`imgwidth` smallint(6) DEFAULT '0' COMMENT '图片宽度',
`imgheight` smallint(6) DEFAULT '0' COMMENT '图片高度',
`defaultval` text COMMENT '默认值',
`htmlcode` longtext COMMENT 'html代码',
`memberhtmlcode` longtext COMMENT '会员投稿html代码',
PRIMARY KEY (`field_id`),
KEY `modelid` (`table_id`),
KEY `field` (`field`,`table_id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COMMENT='模型字段列表';
-- ----------------------------
-- Table structure for `db_template`
-- ----------------------------
DROP TABLE IF EXISTS `db_template`;
CREATE TABLE `db_template` (
`template_id` smallint(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`lang` varchar(20) DEFAULT NULL COMMENT '语言',
`type` varchar(20) NOT NULL COMMENT 'index,list,view,public',
`myvar` varchar(20) DEFAULT NULL COMMENT '变更名称',
`sort` int(6) NOT NULL DEFAULT '0',
`isdefault` tinyint(1) NOT NULL DEFAULT '0' COMMENT '默认首页模板',
`content` longtext NOT NULL,
PRIMARY KEY (`template_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_template_history`
-- ----------------------------
DROP TABLE IF EXISTS `db_template_history`;
CREATE TABLE `db_template_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`template_id` int(11) NOT NULL,
`addtime` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`username` varchar(100) NOT NULL,
`content` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_user`
-- ----------------------------
DROP TABLE IF EXISTS `db_user`;
CREATE TABLE `db_user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户组id',
`user_name` varchar(50) NOT NULL COMMENT '用户名',
`user_password` varchar(50) NOT NULL COMMENT '密码',
`is_admin` smallint(4) NOT NULL COMMENT '是否为管理员',
`user_mobile` varchar(20) DEFAULT NULL COMMENT '手机号码',
`user_email` varchar(50) DEFAULT NULL COMMENT '邮箱地址',
`status` smallint(4) DEFAULT NULL COMMENT '是否禁用',
`login_num` int(11) DEFAULT NULL COMMENT '登录次数',
`last_login_ip` varchar(255) DEFAULT NULL COMMENT '最后登陆IP',
`last_login_time` int(11) DEFAULT NULL,
`token` varchar(255) DEFAULT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_user_log`
-- ----------------------------
DROP TABLE IF EXISTS `db_user_log`;
CREATE TABLE `db_user_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userid` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`addtime` int(11) NOT NULL,
`nodestr` text,
`type` varchar(20) DEFAULT NULL,
`url` text,
`ip` varchar(50) DEFAULT NULL,
`table_name` varchar(50) DEFAULT NULL,
`primary_key` text,
`remark` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=567 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_user_login_log`
-- ----------------------------
DROP TABLE IF EXISTS `db_user_login_log`;
CREATE TABLE `db_user_login_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userid` int(11) NOT NULL DEFAULT '0',
`username` varchar(50) NOT NULL,
`addtime` int(11) NOT NULL,
`status` tinyint(1) NOT NULL,
`ip` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=252 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_vars`
-- ----------------------------
DROP TABLE IF EXISTS `db_vars`;
CREATE TABLE `db_vars` (
`name` varchar(255) DEFAULT NULL,
`value` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='常用变量表';
-- ----------------------------
-- Table structure for `db_visit`
-- ----------------------------
DROP TABLE IF EXISTS `db_visit`;
CREATE TABLE `db_visit` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`daytime` int(11) NOT NULL COMMENT '0',
`ip` int(11) NOT NULL DEFAULT '0',
`pv` int(11) NOT NULL DEFAULT '0',
`visit_search` int(11) NOT NULL DEFAULT '0',
`visit_link` int(11) NOT NULL DEFAULT '0',
`visit_website` int(11) NOT NULL DEFAULT '0',
`engine_baidu` int(11) NOT NULL DEFAULT '0',
`engine_google` int(11) NOT NULL DEFAULT '0',
`engine_sogou` int(11) NOT NULL DEFAULT '0',
`engine_360` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `db_visit_48`
-- ----------------------------
DROP TABLE IF EXISTS `db_visit_48`;
CREATE TABLE `db_visit_48` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`visit_type` varchar(20) NOT NULL,
`visit_time` int(11) NOT NULL,
`search_engine` varchar(20) DEFAULT NULL,
`ip` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `db_access` VALUES ('20','103','1',''), ('21','113','2',''), ('21','114','3',''), ('21','104','2',''), ('21','101','1',''), ('20','127','2',''), ('20','126','3',''), ('20','125','3',''), ('20','124','3',''), ('20','123','2',''), ('20','121','3',''), ('20','120','3',''), ('20','119','3',''), ('20','111','2',''), ('13','130','1',''), ('13','131','2',''), ('13','140','3',''), ('13','141','3',''), ('13','142','3',''), ('25','127','2',''), ('25','103','1',''), ('25','284','3',''), ('25','283','3',''), ('25','282','3',''), ('25','280','2',''), ('25','279','1',''), ('25','221','2',''), ('26','130','1',''), ('26','131','2',''), ('26','140','3',''), ('26','141','3',''), ('26','142','3',''), ('26','164','3',''), ('26','165','3',''), ('25','220','2',''), ('25','219','1',''), ('25','118','3',''), ('25','117','3',''), ('25','116','3',''), ('25','115','3',''), ('25','113','2',''), ('25','122','3',''), ('25','114','3',''), ('25','105','3',''), ('25','104','2',''), ('25','101','1',''), ('25','175','3',''), ('25','174','3',''), ('25','163','2',''), ('25','162','1',''), ('1','162','1',''), ('1','163','2',''), ('1','174','3',''), ('1','175','3',''), ('1','219','1',''), ('1','220','2',''), ('1','221','2',''), ('1','222','2',''), ('1','254','2',''), ('1','328','2',''), ('1','233','1',''), ('1','300','2',''), ('1','301','3',''), ('1','315','3',''), ('1','316','3',''), ('1','317','3',''), ('1','318','3',''), ('1','319','3',''), ('1','320','3',''), ('1','321','3',''), ('1','322','3',''), ('1','302','2',''), ('1','303','3',''), ('1','304','3',''), ('1','305','3',''), ('1','306','3',''), ('1','307','3',''), ('1','308','3',''), ('1','309','3',''), ('1','310','2',''), ('1','311','3',''), ('1','312','3',''), ('1','313','3',''), ('1','314','3',''), ('1','264','1',''), ('1','265','2',''), ('1','269','3',''), ('1','270','3',''), ('1','271','3',''), ('1','266','2',''), ('1','272','3',''), ('1','273','3',''), ('1','274','3',''), ('1','267','2',''), ('1','275','3',''), ('1','276','3',''), ('1','268','2',''), ('1','277','3',''), ('1','278','3',''), ('1','279','1','');
INSERT INTO `db_access` VALUES ('1','280','2',''), ('1','282','3',''), ('1','283','3',''), ('1','284','3',''), ('1','285','3',''), ('1','286','3',''), ('1','290','3',''), ('1','281','2',''), ('1','287','3',''), ('1','288','3',''), ('1','289','3',''), ('1','101','1',''), ('1','104','2',''), ('1','105','3',''), ('1','114','3',''), ('1','122','3',''), ('1','113','2',''), ('1','115','3',''), ('1','332','3',''), ('1','116','3',''), ('1','117','3',''), ('1','118','3',''), ('1','103','1',''), ('1','123','2',''), ('1','126','3',''), ('1','161','3',''), ('1','212','2',''), ('1','213','3',''), ('1','214','3',''), ('1','295','3',''), ('1','216','3',''), ('1','217','3',''), ('1','218','3',''), ('1','296','3',''), ('1','294','3',''), ('1','297','3',''), ('1','298','3',''), ('1','299','3',''), ('1','327','3',''), ('1','324','3',''), ('1','325','3',''), ('1','326','3',''), ('1','255','2',''), ('1','329','3',''), ('1','330','3',''), ('1','331','3',''), ('1','291','2',''), ('1','292','3',''), ('1','293','3',''), ('1','127','2',''), ('2','162','1',NULL), ('2','163','2',NULL), ('2','174','3',NULL), ('2','175','3',NULL), ('2','219','1',NULL), ('2','220','2',NULL), ('2','221','2',NULL), ('2','222','2',NULL), ('2','254','2',NULL), ('2','328','2',NULL);
INSERT INTO `db_ad` VALUES ('4','7','1529997956','0','公司厂房盛大开幕','tte2','','/d/image/20180626/5b31b892aeb50.jpg','http://doc.oschina.net/jijin','0',''), ('5','7','1529996119','1','第二张','','','/d/image/20180626/5b31b892c6638.jpg','','0',''), ('6','7','1558008330','1','test2','test4','','','','0','');
INSERT INTO `db_ad_cat` VALUES ('7','1529997869','首页banner广告','','图片轮播','','','0','');
INSERT INTO `db_cat` VALUES ('1','6','','15693086188164','/pro2/pro23/','product','马科','0','20','1','10','21','3','1','|15|21|',NULL,'6','3','','','','','0','0','static','static','','',NULL,''), ('11','5','','15661933204692','/news/','news','新闻中心','0','20','1','10','0','1','0','','|12|13|14|23|','8','7','123','1212','12121','212','0','0','static','static','newstime desc','views desc',NULL,''), ('12','6','','15680939306663','/fad/','product','新闻中心-1','0','20','1','10','11','2','0','|11|','|13|14|','8','7','','','','','0','0','static','static','','',NULL,''), ('13','5','','15680939692975','/news111/','news','新闻中心-1-1','0','20','1','10','12','3','0','|11|12|','|14|','8','7','','','','','0','0','static','static','','',NULL,''), ('14','5','','15680939762966','/fasadffsda/','news','新闻中心-1-1-1','0','20','1','10','13','4','1','|11|12|13|',NULL,'8','7','','','','','0','0','static','static','','',NULL,''), ('15','6','','15680939854166','/product/','product','产品中心','0','20','1','20','0','1','0','','|20|21|1|','6','3','','','','','0','0','static','static','','',NULL,''), ('20','6','','15693085898912','/pro1/','product','电子产品','0','20','1','10','15','2','1','|15|',NULL,'6','3','','','','','0','0','static','static','','',NULL,''), ('21','6','','15693086081185','/pro2/','product','小动物','0','20','1','20','15','2','0','|15|','|1|','6','3','','','','','0','0','static','static','','',NULL,''), ('23','5','','15694782963142','/news//path1/','news','mynews','0','20','1','20','11','2','1','|11|',NULL,'8','7','','2','3','4','0','1','rewrite','rewrite','id desc','1,2','|1|2|','12');
INSERT INTO `db_cat_data` VALUES ('11'), ('12'), ('13'), ('14'), ('15'), ('20'), ('21'), ('22'), ('23');
INSERT INTO `db_cat_field` VALUES ('55','test22','test22','varchar','','image','','','','','1','0','0','0','0','1000','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"test22\" id=\"info_test22\" class=\"span6 modelform_test22\" value=\"<?=$r?$r[\'test22\']:\'\'?>\" style=\"\"/><button type=\"button\" class=\"choose_file\" onClick=\"selectfile(\'info_test22\',\'\',\'img\',\'1000\',\'\')\">选择图片</button>\r\n </div>\r\n</div>');
INSERT INTO `db_feedback` VALUES ('16','1530102134','0','1','192.168.1.3','4','fasdfasdfasd','fasdfasdfadsfasdfas','dfasdfasd','15821183928','','1','|北京|上海|','1531916526'), ('17','1530103031','0','1','192.168.1.3','4','关于通知公告测试 关于通知公告测试 关于通知公告测试 关于通知公告测试 ','test','625432175@qq.com','15821183928','','1','|上海|','1525783011'), ('18','1530103127','0','1','192.168.1.3','4','fasdfdsafasd','fasdfasdfadsfasdfasasdfasdf','fasdfds','15821183928','','1','|上海|','0'), ('19','1565080466','0','0','192.168.1.3','4','fasfadsf','fasdfsadf','','15821183928','','1','|上海|','1563870854'), ('21','1569228438','0','0','192.168.1.3','4','vsdffdsa','fsfdasfdsafasd','fsdafasdfdsf','18988888882','','1','','0'), ('22','1569228449','0','0','192.168.1.3','4','vsdffdsa','fsfdasfdsafasd','fsdafasdfdsf','18988888882','','1','','0'), ('23','1569228470','0','0','192.168.1.3','4','vsdffdsa','fsfdasfdsafasd','fsdafasdfdsf','18988888882','','1','','0'), ('24','1569228602','0','0','192.168.1.3','6','afsadfads','fasdfds','','','','','','0'), ('25','1569228605','0','0','192.168.1.3','6','afsadfads','fasdfds','','','','','','0'), ('26','1569228834','0','0','192.168.1.3','6','afsadfads','fasdfds','','','','','','0'), ('27','1569228855','0','0','192.168.1.3','6','sfdasf','fasdfa','','','','','','0');
INSERT INTO `db_feedback_cat` VALUES ('4','1','','在线留言','0','标题<!--field-->title\r\n姓名<!--field-->name\r\n邮箱<!--field-->email\r\n手机<!--field-->mobile\r\n内容<!--field-->content\r\n女<!--field-->sex\r\n城市<!--field-->city\r\n截止时间<!--field-->endtime',',title,name,email,mobile,sex,city,endtime,',',title,name,mobile,','1',NULL,''), ('5','1','','人才招聘','0','标题<!--field-->title\r\n姓名<!--field-->name\r\n邮箱<!--field-->email\r\n手机<!--field-->mobile\r\n内容<!--field-->content\r\n女<!--field-->sex',',title,name,','','1','',''), ('6','1','','test','0','标题<!--field-->title\r\n姓名<!--field-->name\r\n邮箱<!--field-->email\r\n手机<!--field-->mobile\r\n内容<!--field-->content\r\n女<!--field-->sex\r\n城市<!--field-->city\r\n截止时间<!--field-->endtime',',title,name,','','0','','');
INSERT INTO `db_feedback_field` VALUES ('6','title','标题','varchar','50','text','','','','','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"title\" id=\"info_title\" class=\"span6 modelform_title\" value=\"<?=$r?$r[\'title\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('7','name','姓名','varchar','50','text','','','','','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"name\" id=\"info_name\" class=\"span6 modelform_name\" value=\"<?=$r?$r[\'name\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('8','email','邮箱','varchar','50','text','','/^[\\w\\-\\.]+@[\\w\\-\\.]+(\\.\\w+)+$/','邮箱格式不正确','','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"email\" id=\"info_email\" class=\"span6 modelform_email\" value=\"<?=$r?$r[\'email\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('9','mobile','手机','varchar','20','text','','/^(1)[0-9]{10}$/','手机号码格式不正确','','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"mobile\" id=\"info_mobile\" class=\"span6 modelform_mobile\" value=\"\" style=\"\"/>\r\n </div>\r\n</div>'), ('10','content','内容','text','','textarea','','','','','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <textarea class=\"span6\" placeholder=\"\" name=\"content\" id=\"info_content\" style=\"\"><?=$r?$r[\'content\']:\'\'?></textarea>\r\n </div>\r\n</div>'), ('11','sex','','varchar','20','radio','','','','','0','0','0','男==1:default\r\n女==0','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\" style=\"margin-top:6px;\"><label class=\"label-radio\"><input type=\"radio\" name=\"sex\" value=\"1\" class=\"modelform_title\" <?=$r[\'sex\']==\'1\'?\"checked\":\"\"?> <?=$r?\"\":\"checked\"?>/>男</label><label class=\"label-radio\"><input type=\"radio\" name=\"sex\" value=\"0\" class=\"modelform_title\" <?=$r[\'sex\']==\'0\'?\"checked\":\"\"?> />女</label></div>\r\n</div>'), ('13','city','城市','varchar','200','checkbox','','','','','0','0','0','北京\r\n上海','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\" style=\"margin-top:6px;\"><label class=\"label-radio\"><input type=\"checkbox\" name=\"city[]\" value=\"北京\" class=\"modelform_title\" <?=strstr($r[\'city\'],\'||\')?\"checked\":\"\"?> />北京</label><label class=\"label-radio\"><input type=\"checkbox\" name=\"city[]\" value=\"上海\" class=\"modelform_title\" <?=strstr($r[\'city\'],\'||\')?\"checked\":\"\"?> />上海</label></div>\r\n</div>'), ('14','endtime','截止时间','int','11','date','','','','','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"endtime\" id=\"info_endtime\" class=\"span2 modelform_endtime\" onFocus=\"WdatePicker({dateFmt:\'yyyy-MM-dd HH:mm:ss\'})\" value=\"\" style=\"\"/>\r\n </div>\r\n</div>');
INSERT INTO `db_file` VALUES ('1','1529993393','松鼠.jpg','5b31b892aeb50.jpg','/d/image/20180626/small_5b31b892aeb50.jpg','/d/image/20180626/5b31b892aeb50.jpg','20180626/','jpg','','206280','ff6f15a2bca6c03d89c65baf2d67c2a8','b7e10586582d6eb8bd19b0f7524116855df41c09','0','1529985170'), ('2','1529993393','兔子.jpg','5b31b892c6638.jpg','/d/image/20180626/small_5b31b892c6638.jpg','/d/image/20180626/5b31b892c6638.jpg','20180626/','jpg','','364705','9eb20297cdc1e35f965a4d03c9cd7dc6','93b9fca3138ac7e7a218971f4b3888db6b5ded44','0','1529985170'), ('3','1556179204','48553a80d60349d7aa469038eb39a3fa_out.pdf','5cf0c2d705c30.pdf','','/d/file/20190531/5cf0c2d705c30.pdf','20190531/','pdf','','195067','6b8877906fb46099324a91e2ba8ef1c5','8d9e8c6351b73cf21d2ce4e0437024d6b870507e','0','1559282391'), ('4','1559290646','591bdf7a25f08.mp4','5cf0cdd2a7620.mp4','','/d/video/20190531/5cf0cdd2a7620.mp4','20190531/','mp4','','8457688','b8b57844285f7fdbf33239a92f1d0701','29ba2bfbf670012a8356cab56e29c3b91ceffbe0','0','1559285202'), ('5','15646507279237','可爱狗.jpg','5d109d1e1f400.jpg','/d/image/20190624/small_5d109d1e1f400.jpg','/d/image/20190624/5d109d1e1f400.jpg','20190624/','jpg','','217253','ee8cf536926062e4b005fe66a8b68768','4c9ce5d6c52ae9131c043555e83b3e8cab6fe95b','0','1564651190'), ('6','1561372143','2.jpg','5d109d2f689d4.jpg','/d/image/20190624/small_5d109d2f689d4.jpg','/d/image/20190624/5d109d2f689d4.jpg','20190624/','jpg','','138722','83b7a0aaefe9a4a08a0ada117c57232a','028c3cf02946b3306adff453738707cf8e4a961c','0','1561369903'), ('7','1561372143','php study.pdf','5d109d509d97c.pdf','','/d/file/20190624/5d109d509d97c.pdf','20190624/','pdf','','370149','b2c26952b24fba36850aa32d81ded9d3','c322488edfc51417fa74dd5486c3b7eb1c662d8d','0','1561369936'), ('8','1561373407','0b3a07842b08498a8c5843f575b6dd6d.jpg','5d109f3a9e340.jpg','/d/image/20190624/small_5d109f3a9e340.jpg','/d/image/20190624/5d109f3a9e340.jpg','20190624/','jpg','','83334','a1f074a5e7bdbd52977f7cd16c8e8a78','f0a7a081d0c4a23726e6a92135bb90e837b25a7a','0','1561370426'), ('9','15646507279237','马.jpg','5d42afa817700.jpg','/d/image/20190801/small_5d42afa817700.jpg','/d/image/20190801/5d42afa817700.jpg','20190801/','jpg','','476666','44f594c5322ddc80789eedc2b8b48564','b0dba389e3dd094774e5c7faf6ff2b1d6e16527f','0','1564651432'), ('21','198907164','党建风采-数据导入结构.xls','5d494a3831830.xls','','/d/file/20190806/5d494a3831830.xls','20190806/','xls','','80384','f423021c1a88ea9faf63aa4a0385eedf','6022c8355f110253b757063b7217922079825acf','0','1565084216'), ('22','15650842507216','bcfccc7a30d00c0743a744bc010f2b9f4.png','','/d/image/20190806/small_f2be59aa181a632e819ba097d0967f541.png','/d/image/20190806/bcfccc7a30d00c0743a744bc010f2b9f4.png','20190806','png','','43531','c03197e900c2ae16cb10019210be4acc','5b33a9ab55add089dfba43f42c1c2a0550f3fa48','0','1565084250'), ('52','15675705019247','timg.jpg','5d6f3a4ae86c0.jpg','/d/image/20190904/small_5d6f3a4ae86c0.jpg','/d/image/20190904/5d6f3a4ae86c0.jpg','20190904/','jpg','','49885','124ac04f532b6bb2ad2cc4f6a2505907','aaa3ccd13faa6767f3b23ee859411af73fdeac41','0','1567570506'), ('53','15670805003280',' ','15689504815d8448d18fe585.71504354.jpeg','/d/image/20190920/small_15689504815d8448d18fe585.71504354.jpeg','/d/image/20190920/15689504815d8448d18fe585.71504354.jpeg','','jpeg','','358186','946a5623fb6384fd17f029275ecc8c40','cdda83bc1b261490eb278dd8af969da6451ea8c2','0','1568950481'), ('54','15670805003280',' ','15689504825d8448d2600b87.42003647.gif','/d/image/20190920/small_15689504825d8448d2600b87.42003647.gif','/d/image/20190920/15689504825d8448d2600b87.42003647.gif','','gif','','4792696','f919bb0712f6b23f2255d7ec93d9c57d','bc72bda6b1509ab8060a22196cc44362ef627dc9','0','1568950486'), ('55','15693032323454','2.jpg','5d89aad56dab0.jpg','/d/image/20190924/small_5d89aad56dab0.jpg','/d/image/20190924/5d89aad56dab0.jpg','20190924/','jpg','','28419','de35eacd13df92eb8806c9b158baf374','0330bc7b874a60a5d5fdc52b8bb022a0d9e234bd','0','1569303253'), ('56','15693032323454','马.jpg','5d89aae750dc0.jpg','/d/image/20190924/small_5d89aae750dc0.jpg','/d/image/20190924/5d89aae750dc0.jpg','20190924/','jpg','','59023','30a0e687772e5e505a2c8a64485bf2b8','c7b0ad110dce488dd767665485d76f2e5c16d42e','0','1569303271'), ('57','15693032323454','1569303323','15693033255d89ab1d302509.14528804.jpeg','/d/image/20190924/small_15693033255d89ab1d302509.14528804.jpeg','/d/image/20190924/15693033255d89ab1d302509.14528804.jpeg','','jpeg','','385349','742254c66d82ee9051dd1bfc72c3c2eb','aec496ed1574ef2fa0658c81f22b0362321add65','0','1569303325'), ('58','15693087298929','O1CN01T9Gzxl1IOugDwXhyh_!!2616970884.jpg_430x430q90.jpg','5d89c059eba50.jpg','/d/image/20190924/small_5d89c059eba50.jpg','/d/image/20190924/5d89c059eba50.jpg','20190924/','jpg','','17756','007c027dbdfde691b431bb2bc00775ba','f9557cb0f6c1750d7874bed436ebcc75781b5c04','0','1569308761'), ('59','15693087298929','1569308808','15693088095d89c08929cc07.30001630.jpeg','/d/image/20190924/small_15693088095d89c08929cc07.30001630.jpeg','/d/image/20190924/15693088095d89c08929cc07.30001630.jpeg','','jpeg','','1007000','82f58bdf286f2f51748d086b04a913b4','5a4b0c98f6d229cd435ab7f2c2aed34f0a5e8506','0','1569308809'), ('60','15716335419608','微信截图_20191022102709','15717116035dae6a736ca488.13192629.png','/d/image/20191022/small_15717116035dae6a736ca488.13192629.png','/d/image/20191022/15717116035dae6a736ca488.13192629.png','','png','','402366','4901fbea36700821b30c29db8e553ab0','ce03b399f11785306e71d224866a814d2711312a','0','1571711603'), ('61','15772660414765','bg13.jpg','5e05a5de756e8.jpg','/d/image/20191227/small_5e05a5de756e8.jpg','/d/image/20191227/5e05a5de756e8.jpg','20191227/','jpg','','23221','13f5a448147dee1891c0af291b8a9cd2','495a8965645c899fd9946d9d9ba164c854fdd1cd','0','1577428446'), ('64','15772682703204','name2.jpg','5e1e6af2d7de8.jpg','/d/image/20200115/small_5e1e6af2d7de8.jpg','/d/image/20200115/5e1e6af2d7de8.jpg','20200115/','jpg','','2656','c43f9993f2765e34f9aaa672bbd2fc35','bbd2658845de67f220505db46110605980fdc95d','0','1579052045'), ('66','15772682703204','name1.jpg','5e1e6c08396c0.jpg','/d/image/20200115/small_5e1e6c08396c0.jpg','/d/image/20200115/5e1e6c08396c0.jpg','20200115/','jpg','','2656','c43f9993f2765e34f9aaa672bbd2fc35','bbd2658845de67f220505db46110605980fdc95d','0','1579052049');
INSERT INTO `db_link` VALUES ('1','7','0','1529997869','首页banner图','','','0'), ('3','7','1','0','fd','/d/image/20180626/5b31e71957cb0.jpg','123','0'), ('4','11','1','0','4343443','','','0'), ('5','7','1','0','test','','','0');
INSERT INTO `db_link_cat` VALUES ('7','1529997869','','合作客户','','','0'), ('12','0','','友情链接','','','0'), ('13','0','','teee','','','0');
INSERT INTO `db_member` VALUES ('10','18988888888','8e56813e74d056615cb12952d70c59a6','mine233','11211212121212','1','1','0','1563785971','34','116.227.134.44','1566558272',NULL,'211','61','021-1234561','mine1','13712345678','370858683@qq.com'), ('15','18501719544','8e56813e74d056615cb12952d70c59a6','王焰坤','页溪','1','1','0','1567476570','6','101.80.152.42','1568874302',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('12','15821183924','8e56813e74d056615cb12952d70c59a6','上海小马科技',NULL,'1','1','0','1565169526','0',NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('13','15821183911','8e56813e74d056615cb12952d70c59a6','ggg','fasdfdsafsadf','0','1','0','1565170454','0',NULL,'0',NULL,'0','0','','','',''), ('14','15821183922','8e56813e74d056615cb12952d70c59a6','张小明','张小明工作室','1','1','0','1565171142','9','116.227.134.44','1567476016',NULL,'0','0','','','',''), ('16','15821183943','8e56813e74d056615cb12952d70c59a6','','北京小吉科技有限公司','1','1','0','1567476976','0',NULL,'0',NULL,'0','0','','','',''), ('17','15821183965','8e56813e74d056615cb12952d70c59a6','','北京小吉科技有限公司','1','1','0','1567477046','0',NULL,'0',NULL,'0','0','','','',''), ('18','15821183928','a658b753adc762dc327c2ba4f35cf7e3','','北京123科技有限公司','1','1','0','1567477215','21','122.194.3.33','1568968245',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('19','13062787289','cfa81f718b70d171e4aa1fa57f1b254c','诗和远方','公司','1','1','0','1567495396','10','101.80.152.42','1568948396',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('20','15216861742','5b13b2dd84e0fb345a45938833ef7885','','埃迈诺冠商贸有限公司','1','1','0','1567667983','7','101.230.195.140','1568773629',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('21','18512144688','4da7682cfdd1d3c42dedaec9b5732ae8','NEX test','NEX test','1','1','0','1568015502','1','101.230.195.140','1568015502',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('50','17081430554','8e56813e74d056615cb12952d70c59a6','王二',NULL,'1','1','0','1569306992','1','192.168.1.3','1569306992',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `db_member_address` VALUES ('16','10','fdf','fdfd','北京市','北京市市辖区','西城区','fasfadsfasd','0','0','1566182098'), ('15','10','fafadsas1','17081430554','河北省','石家庄市','长安区','fasdfds1','1','0','1565861740'), ('14','10','zs','15821183928','北京市','北京市市辖区','东城区','fafasfasasdf','0','1','1565861744'), ('13','10','mine','13712345678','上海市','上海市市辖区','黄浦区','test','0','0','1565861135'), ('11','10','mine','13712345678','天津市','天津市市辖区','和平区','mine2','0','0','1565860981'), ('17','14','轩以某','17081430552','上海市','上海市市辖区','长宁区','中山北路118号','1','1','1566792220'), ('18','15','上饶','15821213636','北京市','北京市市辖区','东城区','东昌路88号','0','0','1567495948'), ('20','19','1','12','北京市','北京市市辖区','东城区','12','1','1','1567506347'), ('23','18','ehscn','17081430554','北京市','北京市市辖区','东城区','fassdfa','1','1','1568611436'), ('22','20','15216861742','15216861742','北京市','北京市市辖区','东城区','1243','1','1','1568620493'), ('24','21','1111','111','北京市','北京市市辖区','东城区','111','1','0','1568015633'), ('51','50','王二','17081430554','北京市','北京市市辖区','东城区','大店村','1','1','1569307332');
INSERT INTO `db_member_group` VALUES ('1','普通会员'), ('2','VIP会员');
INSERT INTO `db_member_invoice` VALUES ('29','10','0','上海小明科技','123',NULL,NULL,NULL,NULL,'1566282169','0'), ('30','10','1','小明科技222','1','2','3','4','5','1566282201','0'), ('31','14','0','上海大山信息技术有限公司','9131554654687842',NULL,NULL,NULL,NULL,'1566792263','0'), ('32','15','0','页溪','111',NULL,NULL,NULL,NULL,'1567653581','1'), ('33','20','0','埃迈诺冠商贸有限公司','12345',NULL,NULL,NULL,NULL,'1567668126','0'), ('34','18','0','fasfas','fasdfadsdfas',NULL,NULL,NULL,NULL,'1568687241','1'), ('35','21','1','11','111','111','111','111','111','1568015648','0'), ('36','19','0','1','123',NULL,NULL,NULL,NULL,'1568103392','0'), ('37','20','0','埃迈诺冠商贸有限公司','123',NULL,NULL,NULL,NULL,'1568278118','1'), ('60','50','0','北京百度科技有限公司','2112312231',NULL,NULL,NULL,NULL,'1569307342','1');
INSERT INTO `db_model` VALUES ('5','9','news','1','新闻中心','0','0','1','','标题<!--field-->title\r\n缩略图<!--field-->thumb\r\n时间<!--field-->newstime\r\n跳转链接<!--field-->linkurl\r\n详情<!--field-->newstext\r\nmorepic<!--field-->morepic',',title,thumb,newstime,newstext,','','',',title,thumb,newstime,linkurl,','','','SEO标题<!--field-->pagetitle\r\n关键词<!--field-->keywords\r\n描述<!--field-->description\r\ntest22<!--field-->test22\r\n',',test22,',''), ('6','10','product','1','产品系统模型','0','0','1','','标题<!--field-->title\r\n缩略图<!--field-->thumb\r\n时间<!--field-->newstime\r\n产品价格<!--field-->price\r\n型号<!--field-->type_no\r\n产品系列<!--field-->pro_group\r\n产品多图<!--field-->morepic\r\n产品详情<!--field-->newstext',',title,thumb,newstime,price,type_no,pro_group,morepic,newstext,','',',title,',',title,thumb,newstime,price,type_no,pro_group,morepic,','','','栏目名称<!--field-->name\r\n 缩略图<!--field-->thumb\r\n 每页显示<!--field-->lencord\r\n 是否为单面模式<!--field-->is_page\r\n 列表模板<!--field-->listtemp\r\n 内容模板<!--field-->viewtemp\r\n 状态<!--field-->status\r\n SEO标题<!--field-->pagetitle\r\n 关键词<!--field-->keywords\r\n 描述<!--field-->description\r\n ','','');
INSERT INTO `db_node` VALUES ('101','User/index','用户管理','0','','100','0','1',' icon-group','0','0'), ('103','Config/index','系统设置','0','','900','0','1',' icon-sitemap','0','0'), ('104','User/index','用户列表','0','','10','101','2','','0','0'), ('105','User/add','增加用户','0','','10','104','3','','0','0'), ('113','Role/index','角色列表','0','','20','101','2','','0','0'), ('114','User/editor','修改用户','0','','20','104','3','','0','0'), ('115','Role/access','权限配置','0','','10','113','3','','0','0'), ('116','Role/add','添加角色','0','','20','113','3','','0','0'), ('117','Role/editor','修改角色','0','','30','113','3','','0','0'), ('118','Role/del','删除角色','0','','40','113','3','','0','0'), ('122','User/del','删除用户','0','','30','104','3','','0','0'), ('123','Menu/index','菜单管理','0','','20','103','2','','0','0'), ('126','Menu/editor','编辑菜单','0','','30','123','3','','0','0'), ('127','Config/index','网站设置','0','','30','103','2','','0','0'), ('161','Menu/del','删除菜单','0','','40','123','3','','0','0'), ('162','Member/index','会员管理','0','','25','0','1','icon-user','0','1'), ('163','Member/index','会员列表','0','','10','162','2','','0','0'), ('174','Member/editor','修改会员','0','','10','163','3','','0','0'), ('175','Member/delete','删除会员','0','','20','163','3','','0','0'), ('212','Table/index','数据表管理','0','','25','103','2','','0','0'), ('213','Table/add','增加数据表','0','','10','212','3','','0','0'), ('214','Table/editor','编辑数据表','0','','20','212','3','','0','0'), ('216','TableField/index','字段管理','0','','40','212','3','','0','0'), ('217','TableField/add','增加字段','0','','10','216','4','','0','0'), ('218','TableField/editor','编辑字段','0','','20','216','4','','0','0'), ('219','Info/index','信息管理','0','','60','0','1','','0','1'), ('220','Info/add','增加信息','0','','10','219','2','','0','0'), ('221','Info/editor','修改信息','0','','20','219','2','','0','0'), ('222','Info/delete','删除信息','0','','30','219','2','','0','0'), ('233','Feedback/index','插件管理','0','','70','0','1',' icon-plus','0','0'), ('254','Info/checked','审核信息','0','','40','219','2','','0','0'), ('255','Cat/showcat','栏目管理','0','','21','103','2','','0','0'), ('264','Template/index','模版管理','0','','80','0','1',' icon-indent-right','0','0'), ('265','Template/index','首页模板','0','','10','264','2','','0','0'), ('266','Template/listtemp','列表页模板','0','','20','264','2','','0','0'), ('267','Template/view','内容页模板','0','','30','264','2','','0','0'), ('268','Template/publictemp','公共模板','0','','40','264','2','','0','0'), ('269','Template/add','增加模板','0','','10','265','3','','0','0'), ('270','Template/editor','修改模板','0','','20','265','3','','0','0'), ('271','Template/delete','删除模板','0','','30','265','3','','0','0'), ('272','Template/listAdd','添加模板','0','','10','266','3','','0','0'), ('273','Template/listEditor','编辑模板','0','','20','266','3','','0','0'), ('274','Template/listDelete','删除模板','0','','30','266','3','','0','0'), ('275','Template/viewAdd','添加模板','0','','10','267','3','','0','0'), ('276','Template/viewEditor','编辑模板','0','','20','267','3','','0','0'), ('277','Template/publicAdd','添加模板','0','','10','268','3','','0','0'), ('278','Template/publicEditor','编辑模板','0','','20','268','3','','0','0'), ('279','Page/page','自定义页管理','0','','90','0','1',' icon-dashboard','0','0'), ('280','Page/page','自定义单页','0','','10','279','2','','0','0'), ('281','Pages/index','自定义列表','0','','20','279','2','','0','0'), ('282','Page/page_add','增加单页','0','','10','280','3','','0','0'), ('283','Page/page_editor','修改单页','0','','20','280','3','','0','0'), ('284','Page/page_template','自定义模板','0','','30','280','3','','0','0'), ('285','Page/page_template_add','增加模板','0','','10','284','4','','0','0'), ('286','Page/page_template_editor','修改模板','0','','20','284','4','','0','0'), ('287','Pages/add','增加列表','0','','10','281','3','','0','0'), ('288','Pages/editor','修改列表','0','','20','281','3','','0','0'), ('289','Pages/delete','删除列表','0','','30','281','3','','0','0'), ('290','Page/page_delete','删除单页','0','','40','280','3','','0','0'), ('291','Database/index','数据备份','0','','26','103','2','','0','0'), ('292','Database/import','恢复数据','0','','10','291','3','','0','0'), ('293','Database/delete','删除备份','0','','20','291','3','','0','0'), ('294','Model/index','数据模型管理','0','','50','212','3','','0','0'), ('295','Table/delete','删除数据表','0','','30','212','3','','0','0'), ('296','TableField/delete','删除字段','0','','30','216','4','','0','0'), ('297','Model/add','添加模型','0','','10','294','4','','0','0'), ('298','Model/editor','修改模型','0','','20','294','4','','0','0'), ('299','Model/delete','删除模型','0','','30','294','4','','0','0'), ('300','Feedback/index','留言反馈','0','','10','233','2','','0','0'), ('301','Feedback/delete','删除信息','0','','10','300','3','','0','0'), ('302','AdCat/index','广告管理','0','','20','233','2','','0','0'), ('303','AdCat/add','增加广告位','0','','10','302','3','','0','0'), ('304','AdCat/editor','编辑广告位','0','','20','302','3','','0','0'), ('305','AdCat/delete','删除广告位','0','','30','302','3','','0','0'), ('306','Ad/index','广告内容','0','','40','302','3','','0','0'), ('307','Ad/add','添加内容','0','','10','306','4','','0','0'), ('308','Ad/editor','编辑内容','0','','20','306','4','','0','0'), ('309','Ad/delete','删除内容','0','','30','306','4','','0','0'), ('310','Link/index','友情链接','0','','30','233','2','','0','0'), ('311','Link/add','增加信息','0','','10','310','3','','0','0'), ('312','Link/editor','编辑信息','0','','20','310','3','','0','0'), ('313','Link/delete','删除信息','0','','30','310','3','','0','0'), ('314','LinkCat/index','分类管理','0','','40','310','3','','0','0'), ('315','FeedbackField/index','字段管理','0','','20','300','3','','0','0'), ('316','FeedbackField/add','增加字段','0','','10','315','4','','0','0'), ('317','FeedbackField/editor','编辑字段','0','','20','315','4','','0','0'), ('318','FeedbackField/delete','删除字段','0','','30','315','4','','0','0'), ('319','FeedbackCat/index','分类管理','0','','30','300','3','','0','0'), ('320','FeedbackCat/add','增加分类','0','','10','319','4','','0','0'), ('321','FeedbackCat/editor','编辑分类','0','','20','319','4','','0','0'), ('322','FeedbackCat/delete','删除分类','0','','30','319','4','','0','0'), ('323','Order/index','订单管理','0','','30','0','1',' icon-cogs','0','1'), ('324','CatField/index','管理栏目字段','0','','60','212','3','','0','0'), ('325','CatField/add','增加字段','0','','10','324','4','','0','0'), ('326','CatField/editor','修改字段','0','','20','324','4','','0','0'), ('327','Model/editorCatModel','勾选栏目字段','0','','40','294','4','','0','0'), ('328','Info/import','数据导入','0','','60','219','2','','0','0'), ('329','Cat/add','增加栏目','0','','10','255','3','','0','0'), ('330','Cat/editor','修改栏目','0','','20','255','3','','0','0'), ('331','Cat/delete','删除栏目','0','','30','255','3','','0','0');
INSERT INTO `db_node` VALUES ('332','Role/access_cat','栏目授权','0','','11','113','3','','0','0'), ('333','UserLoginLog/index','登录日志','0','','30','101','2','','0','0'), ('334','UserLog/index','操作日志','0','','40','101','2','','0','0'), ('335','CatField/delete','删除字段','0','','30','324','4','','0','0'), ('336','Database/Ebak_BakExe','备份数据','0','','30','291','3','','0','0'), ('339','Menu/add','增加菜单','0','','50','123','3','','0','0'), ('340','Template/setDefault','设置为默认模板','0','','40','265','3','','0','0'), ('341','Member/detail','会员详情','0','','30','163','3','','0','0'), ('342','Order/index','订单列表','0','','10','323','2','','0','0'), ('343','Order/goods_delivery','商品发货管理','0','','20','323','2','','0','0'), ('344','Order/invoice_delivery','发票发货管理','0','','30','323','2','','0','0'), ('345','Order/refundOrder','退款订单处理','0','','40','323','2','','0','0'), ('346','Order/goods_delivery_add','操作发货','0','','10','343','3','','0','0'), ('347','Info/copy','复制信息','0','','70','219','2','','0','0'), ('348','Info/move','移动信息','0','','80','219','2','','0','0'), ('349','Info/set_top','信息顶置','0','','41','219','2','','0','0'), ('350','Info/set_good','信息推荐','0','','42','219','2','','0','0');
INSERT INTO `db_page` VALUES ('1','1558063461','','/page2/2.html','名称','标题',NULL,'','1','0','','','','[!--pagetitle--]\r\ntest'), ('2','1558077494','','/page1/1.html','自定义页','fasdfsdfasdasd',NULL,'','1','0','','','','我是第一次修改的'), ('3','15718815926829','','/page/name.html','测试自定义','测试自定义',NULL,'','1',NULL,'','','','测试自定义'), ('4','15718816045498','','/page/nam2e.html','测试自定义','',NULL,'','1',NULL,'','','','测试自定义'), ('5','15718816123541','','/page/n2ame.html','测试自定义','测试自定义',NULL,'','1',NULL,'','','','测试自定义'), ('6','15718816187960','','/page/n22ame.html','测试自定义','测试自定义',NULL,'','1',NULL,'','','','测试自定义'), ('7','15777629896735','static','/page/fd.html','test','fasdafsdafs',NULL,'','2','4','','','','&lt;p&gt;fasdfadsadfsadsf&lt;/p&gt;'), ('8','15777634347598','static','/digy/afd.html','fasdfas','fasdfadsfadsfasdf',NULL,'','1',NULL,'','','','fasdfdsa'), ('9','15777666232808','static','/page/nafme.html','突然富士达','',NULL,'','1',NULL,'','','','fdfd');
INSERT INTO `db_pages` VALUES ('1','test','static','/diylb/',NULL,'8','test','','','test','select count(*) as total from __CMS_NEWS__ where checked=1','select * from __CMS_NEWS__ where checked=1','0','20');
INSERT INTO `db_page_history` VALUES ('1','1','1571816611','1','admin','\r\n[!--pagetitle--]\r\ntest');
INSERT INTO `db_role` VALUES ('1','管理员','1','网站管理员','\"|8|\"|23|','','|23|','',''), ('2','test','1','tete','null|23|','|11|23||1|','|23|','','');
INSERT INTO `db_role_user` VALUES ('21','20'), ('13','20'), ('25','28'), ('21','19'), ('13','19'), ('2','2');
INSERT INTO `db_shop_cart` VALUES ('341','50','20','9','2','1569312314');
INSERT INTO `db_shop_order` VALUES ('184','20190924153049505563','50','4999.00','4999.00','1569310249','','101','待付款','0','0','0','0','0','0');
INSERT INTO `db_shop_order_address` VALUES ('184','王二','17081430554','北京市','北京市市辖区','东城区','大店村',NULL,NULL);
INSERT INTO `db_shop_order_detail` VALUES ('184','9','20','/d/image/20190924/5d89c059eba50.jpg','苹果手机','iphone9 plus','1','4.00','4.00');
INSERT INTO `db_shop_order_invoice` VALUES ('184','0','北京百度科技有限公司','2112312231',NULL,NULL,NULL,NULL);
INSERT INTO `db_shop_order_invoice_address` VALUES ('184','王二','17081430554','北京市','北京市市辖区','东城区','大店村',NULL,NULL);
INSERT INTO `db_shop_order_log` VALUES ('184','1569310249','用户创建订单');
INSERT INTO `db_table` VALUES ('9','新闻数据表','news','','0'), ('10','产品数据表','product','','0');
INSERT INTO `db_table_field` VALUES ('27','9','title','标题','varchar','255','text','','','','','1','0','0','0','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"title\" id=\"info_title\" class=\"span6 modelform_title\" value=\"<?=$r?$r[\'title\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"title\" id=\"info_title\" class=\"span6 modelform_title\" value=\"<?=$r?$r[\'title\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('28','9','thumb','缩略图','varchar','255','image','','','','','1','0','0','0','0','123','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"thumb\" id=\"info_thumb\" class=\"span6 modelform_thumb\" value=\"<?=$r?$r[\'thumb\']:\'\'?>\" style=\"\"/><button type=\"button\" class=\"choose_file\" onClick=\"selectfile(\'info_thumb\',\'\',\'img\',\'123\',\'\')\">选择图片</button>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"thumb\" id=\"info_thumb\" class=\"span6 modelform_thumb\" value=\"<?=$r?$r[\'thumb\']:\'\'?>\" style=\"\"/>\r\n <input type=\"button\" value=\"上传图片\" onClick=\"$(this).next().click()\" class=\"liulan fr\">\r\n <input type=\"file\" onChange=\"ajaxupload(this,function(url){$(\'#info_thumb\').val(url)})\" style=\"height:26px; display:none\"> \r\n </div>\r\n</div>'), ('29','9','newstime','时间','int','11','date','','','','','1','0','0','0','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" autocomplete=\"off\" name=\"newstime\" com id=\"info_newstime\" class=\"span2 modelform_newstime\" onFocus=\"WdatePicker({dateFmt:\'yyyy-MM-dd HH:mm:ss\'})\" value=\"<?=$r?date(\"Y-m-d H:i:s\",$r[\'newstime\']):date(\"Y-m-d H:i:s\")?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" autocomplete=\"off\" name=\"newstime\" com id=\"info_newstime\" class=\"span2 modelform_newstime\" onFocus=\"WdatePicker({dateFmt:\'yyyy-MM-dd HH:mm:ss\'})\" value=\"<?=$r?date(\"Y-m-d H:i:s\",$r[\'newstime\']):date(\"Y-m-d H:i:s\")?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('30','9','linkurl','跳转链接','varchar','255','text','如填写直接跳转到该地址','','','','1','0','0','0','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"如填写直接跳转到该地址\" name=\"linkurl\" id=\"info_linkurl\" class=\"span6 modelform_linkurl\" value=\"<?=$r?$r[\'linkurl\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"如填写直接跳转到该地址\" name=\"linkurl\" id=\"info_linkurl\" class=\"span6 modelform_linkurl\" value=\"<?=$r?$r[\'linkurl\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('32','9','newstext','详情','longtext','','editor','','','','','0','0','0','98','500','800','0','','<div class=\"control-group newstext_control\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <div class=\"news_editor\" editor_name=\"newstext\" editor_width=\"98%\" editor_height=\"500\" imgwidth=\"800\" imgheight=\"\"><script id=\"newstext\" name=\"newstext\" type=\"text/plain\"><?=$r?htmlspecialchars_decode($r[\'newstext\']):\'\'?></script></div>\r\n 远程图片保存本地<input type=\"checkbox\" name=\"newstext_saveFile\" value=\"1\" checked> &nbsp;&nbsp;\r\n 提取第一张图做为缩略图(如果缩略图为空的情况下)<input type=\"checkbox\" name=\"newstext_getFirstImg\" value=\"1\"> \r\n </div>\r\n</div> ','<div class=\"control-group newstext_control\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <div class=\"news_editor\" editor_name=\"newstext\" editor_width=\"width:98%;\" editor_height=\"height:500px;\" imgwidth=\"800\" imgheight=\"\">\r\n <script id=\"newstext\" name=\"newstext\" type=\"text/plain\"><?=$r?htmlspecialchars_decode($r[\'newstext\']):\'\'?></script>\r\n </div>\r\n </div>\r\n</div> '), ('53','10','title','标题','varchar','255','text','','','','','1','0','1','0','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"title\" id=\"info_title\" class=\"span6 modelform_title\" value=\"<?=$r?$r[\'title\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"title\" id=\"info_title\" class=\"span6 modelform_title\" value=\"<?=$r?$r[\'title\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('54','10','thumb','缩略图','varchar','255','image','','','','','1','0','2','0','0','1000','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"thumb\" id=\"info_thumb\" class=\"span6 modelform_thumb\" value=\"<?=$r?$r[\'thumb\']:\'\'?>\" style=\"\"/><button type=\"button\" class=\"choose_file\" onClick=\"selectfile(\'info_thumb\',\'\',\'img\',\'1000\',\'0\')\">选择图片</button>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"thumb\" id=\"info_thumb\" class=\"span6 modelform_thumb\" value=\"<?=$r?$r[\'thumb\']:\'\'?>\" style=\"\"/>\r\n <input type=\"button\" value=\"上传图片\" onClick=\"$(this).next().click()\" class=\"liulan fr\">\r\n <input type=\"file\" onChange=\"ajaxupload(this,function(url){$(\'#info_thumb\').val(url)})\" style=\"height:26px; display:none\"> \r\n </div>\r\n</div>'), ('55','10','newstime','时间','int','11','date','','','','','1','0','3','0','0','0','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" autocomplete=\"off\" name=\"newstime\" com id=\"info_newstime\" class=\"span2 modelform_newstime\" onFocus=\"WdatePicker({dateFmt:\'yyyy-MM-dd HH:mm:ss\'})\" value=\"<?=$r?date(\"Y-m-d H:i:s\",$r[\'newstime\']):date(\"Y-m-d H:i:s\")?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" autocomplete=\"off\" name=\"newstime\" com id=\"info_newstime\" class=\"span2 modelform_newstime\" onFocus=\"WdatePicker({dateFmt:\'yyyy-MM-dd HH:mm:ss\'})\" value=\"<?=$r?date(\"Y-m-d H:i:s\",$r[\'newstime\']):date(\"Y-m-d H:i:s\")?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('56','10','price','产品价格','int','11','text','','','','','1','0','4','0','0','1000','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"price\" id=\"info_price\" class=\"span6 modelform_price\" value=\"<?=$r?$r[\'price\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"price\" id=\"info_price\" class=\"span6 modelform_price\" value=\"<?=$r?$r[\'price\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('57','10','newstext','产品详情','longtext','','editor','','','','','0','0','8','0','400','1000','0','','<div class=\"control-group newstext_control\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <div class=\"news_editor\" editor_name=\"newstext\" editor_width=\"0%\" editor_height=\"400\"><script id=\"newstext\" name=\"newstext\" type=\"text/plain\"><?=$r?htmlspecialchars_decode($r[\'newstext\']):\'\'?></script></div>\r\n 远程图片保存本地<input type=\"checkbox\" name=\"newstext_saveFile\" value=\"1\" checked> &nbsp;&nbsp;\r\n 提取第一张图做为缩略图(如果缩略图为空的情况下)<input type=\"checkbox\" name=\"newstext_getFirstImg\" value=\"1\"> \r\n </div>\r\n</div> ','<div class=\"control-group newstext_control\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <div class=\"news_editor\" editor_name=\"newstext\" editor_width=\"\" editor_height=\"height:400px;\" imgwidth=\"1000\" imgheight=\"\">\r\n <script id=\"newstext\" name=\"newstext\" type=\"text/plain\"><?=$r?htmlspecialchars_decode($r[\'newstext\']):\'\'?></script>\r\n </div>\r\n </div>\r\n</div> '), ('58','10','morepic','产品多图','text','','morepic','','','','','1','0','7','0','0','1000','0','','\r\n<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <div class=\"morepic_box\">\r\n <div class=\"piclist\">\r\n <ul id=\"morepic_piclist_ul\">\r\n <?php\r\n if($r){\r\n $morepic=$r[\'morepic\'];\r\n $morepic_arr=explode(\"\\r\\n\",$morepic);\r\n foreach($morepic_arr as $v){\r\n if(!$v){break;};\r\n $vs=explode(\"||\",$v);\r\n ?>\r\n <li title=\"拖动我是可以排序的哦\" draggable=\"false\">\r\n <div class=\"piclist_img\">\r\n <img src=\"<?=$vs[0]?>\" draggable=\"false\">\r\n <input type=\"hidden\" name=\"morepic_smallimg[]\" value=\"<?=$vs[0]?>\">\r\n <input type=\"hidden\" name=\"morepic_bigimg[]\" value=\"<?=$vs[1]?>\">\r\n </div>\r\n <div class=\"piclist_title\"><input type=\"text\" name=\"morepic_imgname[]\" value=\"<?=$vs[2]?>\"></div>\r\n <div class=\"file-panel\"><span class=\"cancel\" onclick=\"delete_li(this)\" title=\"删除图片\">删除</span></div>\r\n </li>\r\n <?php\r\n } \r\n }\r\n ?>\r\n <li class=\"add_morepic\" id=\"morepic_add_button\" title=\"增加图片\" onclick=\"selectfiles(\'morepic\',moreimg,\'img\',\'1000\',\'\')\">\r\n <div class=\"piclist_img\">+</div>\r\n </li> \r\n <div class=\"clear\"></div>\r\n </ul>\r\n </div> \r\n </div>\r\n </div>\r\n</div>','\r\n<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <div class=\"morepic_box\">\r\n <div class=\"piclist\">\r\n <ul id=\"morepic_piclist_ul\">\r\n <?php\r\n if($r){\r\n $morepic=$r[\'morepic\'];\r\n $morepic_arr=explode(\"\\r\\n\",$morepic);\r\n foreach($morepic_arr as $v){\r\n if(!$v){break;};\r\n $vs=explode(\"||\",$v);\r\n ?>\r\n <li title=\"拖动我是可以排序的哦\" draggable=\"false\">\r\n <div class=\"piclist_img\">\r\n <img src=\"<?=$vs[0]?>\" draggable=\"false\">\r\n <input type=\"hidden\" name=\"morepic_smallimg[]\" value=\"<?=$vs[0]?>\">\r\n <input type=\"hidden\" name=\"morepic_bigimg[]\" value=\"<?=$vs[1]?>\">\r\n </div>\r\n <div class=\"piclist_title\"><input type=\"text\" name=\"morepic_imgname[]\" value=\"<?=$vs[2]?>\"></div>\r\n <div class=\"file-panel\"><span class=\"cancel\" onclick=\"delete_li(this)\" title=\"删除图片\">删除</span></div>\r\n </li>\r\n <?php\r\n } \r\n }\r\n ?>\r\n <li class=\"add_morepic\" id=\"morepic_add_button\" title=\"增加图片\" onclick=\"selectfiles(\'morepic\',moreimg,\'img\')\">\r\n <div class=\"piclist_img\">+</div>\r\n </li> \r\n <div class=\"clear\"></div>\r\n </ul>\r\n </div> \r\n </div>\r\n </div>\r\n</div>'), ('59','10','type_no','型号','varchar','50','text','','','','','1','0','5','0','0','1000','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"type_no\" id=\"info_type_no\" class=\"span6 modelform_type_no\" value=\"<?=$r?$r[\'type_no\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"type_no\" id=\"info_type_no\" class=\"span6 modelform_type_no\" value=\"<?=$r?$r[\'type_no\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('60','10','pro_group','产品系列','varchar','50','select','','','','','1','0','6','0','0','1000','0','国产\r\n进口\r\n自己研发','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <select name=\"pro_group\" class=\"modelform_pro_group select2 span6\" style=\"\"><option value=\"国产\" <?=$r[\'pro_group\']==\'\'?\"selected\":\"\"?> >国产</option><option value=\"进口\" <?=$r[\'pro_group\']==\'\'?\"selected\":\"\"?> >进口</option><option value=\"自己研发\" <?=$r[\'pro_group\']==\'\'?\"selected\":\"\"?> >自己研发</option></select>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <select name=\"pro_group\" class=\"modelform_pro_group select2 span6\" style=\"\"><option value=\"国产\" <?=$r[\'pro_group\']==\'\'?\"selected\":\"\"?> >国产</option><option value=\"进口\" <?=$r[\'pro_group\']==\'\'?\"selected\":\"\"?> >进口</option><option value=\"自己研发\" <?=$r[\'pro_group\']==\'\'?\"selected\":\"\"?> >自己研发</option></select>\r\n </div>\r\n</div>'), ('61','10','price2','促销价','int','11','text','','','','','1','0','4','0','0','1000','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"price2\" id=\"info_price2\" class=\"span6 modelform_price2\" value=\"<?=$r?$r[\'price2\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"price2\" id=\"info_price2\" class=\"span6 modelform_price2\" value=\"<?=$r?$r[\'price2\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>'), ('62','10','sales','销量','int','11','text','','','','','1','0','0','0','0','1000','0','','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"sales\" id=\"info_sales\" class=\"span6 modelform_sales\" value=\"<?=$r?$r[\'sales\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>','<div class=\"control-group\">\r\n <label class=\"control-label\">{modelFieldTemp_name}<span></span></label>\r\n <div class=\"controls\">\r\n <input type=\"text\" placeholder=\"\" name=\"sales\" id=\"info_sales\" class=\"span6 modelform_sales\" value=\"<?=$r?$r[\'sales\']:\'\'?>\" style=\"\"/>\r\n </div>\r\n</div>');
INSERT INTO `db_template` VALUES ('1','首页模板','','index','','0','1','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n\r\n&lt;/head&gt;\r\n&lt;style&gt;\r\n.pc_top .pc_top_content .top_content_left .content_left_nav .left_nav_left .nav_left_down{ display:block;}\r\n\r\n&lt;/style&gt;\r\n&lt;body&gt;\r\n\r\n\r\n[!--public.header--]\r\n&lt;div class=&quot;banner&quot;&gt;\r\n &lt;div class=&quot;slider&quot;&gt;\r\n \r\n &lt;cmsinfo table=&quot;ad&quot; adid=&quot;7&quot; status=&quot;1&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;div class=&quot;item&quot;&gt;\r\n &lt;a href=&quot;{$v.link}&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;\r\n\r\n &lt;if condition=&quot;$v.name eq \'\'&quot;&gt;\r\n &lt;else /&gt;\r\n &lt;dd&gt;{$v.name}&lt;/dd&gt;\r\n &lt;/if&gt;\r\n &lt;/a&gt;\r\n\r\n &lt;/div&gt; \r\n\r\n &lt;/cmsinfo&gt; \r\n\r\n \r\n &lt;/div&gt;\r\n &lt;div class=&quot;banner_content&quot;&gt;\r\n &lt;div class=&quot;login&quot;&gt;\r\n &lt;div class=&quot;login_top&quot;&gt;\r\n &lt;div class=&quot;login_top_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn3.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;p&gt;Hi!~您好!&lt;/p&gt;\r\n &lt;span&gt;欢迎光临埃迈诺冠&lt;/span&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_top_bottom clear&quot;&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl on&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;else /&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl on&quot;&gt;注册&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news&quot;&gt;\r\n &lt;div class=&quot;login_news_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;快讯&lt;/dd&gt;\r\n &lt;a href=&quot;/11/index.html&quot; class=&quot;fr&quot;&gt;更多&lt;span class=&quot;fa fa-angle-right&quot;&gt;&lt;/span&gt;&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news_content&quot;&gt;\r\n \r\n &lt;cmsinfo catid=&quot;11&quot; checked=&quot;1&quot; limit=&quot;20&quot; order=&quot;newstime desc&quot; &gt;\r\n &lt;div class=&quot;news_content_list on clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;{$v.pagetitle}&lt;/span&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;fl&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n jQuery(&quot;.indexProduct_content_txt&quot;).slide({mainCell:&quot;.content_txt_right&quot;,autoPlay:false,titCell:&quot;.content_txt_left dt a&quot;,trigger:\'click\'});\r\n&lt;/script&gt;\r\n&lt;!--首页banner图--&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n $(\'.slider\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n //首页banner图\r\n $(\'.content_left_img\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:3000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n touchMove: true,\r\n swipe: true,\r\n //fade: true,\r\n //cssEase: \'linear\',\r\n asNavFor: &quot;.content_left_txt dd&quot;,\r\n responsive: [ //响应式\r\n {\r\n breakpoint: 480,\r\n settings: {\r\n arrows: false,\r\n slidesToShow: 1 ,//显示个数\r\n }\r\n }\r\n ]\r\n });\r\n\r\n&lt;/script&gt;\r\n\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('3','产品内容模板','','view','','0','0','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;indexProduct UserCenter shopping productDetails&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;productDetails_top clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_top_left fl&quot;&gt;\r\n &lt;div class=&quot;top_left_Bimg&quot;&gt;&lt;img src=&quot;{$r.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_left_Simg clear fa&quot;&gt;\r\n &lt;?php\r\n $morepic_arr=explode(&quot;\\r\\n&quot;,$r[&quot;morepic&quot;]);\r\n foreach($morepic_arr as $v){\r\n if(!$v){break;};\r\n $vs=explode(&quot;||&quot;,$v);\r\n ?&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;left_Simg_list fl on&quot;&gt;&lt;img src=&quot;&lt;?=$vs[1]?&gt;&quot; alt=&quot;&lt;?=$vs[2]?&gt;&quot;/&gt;&lt;/a&gt;\r\n &lt;?php\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_top_right fr&quot;&gt;\r\n &lt;div class=&quot;top_right_title&quot;&gt;\r\n &lt;div class=&quot;right_title_top&quot;&gt;{$r.title}&lt;/div&gt;\r\n &lt;div class=&quot;right_title_price clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;span&gt;¥{$r[\'price2\']?$r[\'price2\']:$r[\'price\']} / 个&lt;/span&gt;\r\n &lt;if condition=&quot;$r[\'price2\']&quot;&gt;&lt;s&gt;¥{$r.price} / 个&lt;/s&gt;&lt;/if&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;{$r.type_no}&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;服务说明&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;\r\n &lt;p&gt;1发货并提供售后服务。&lt;/p&gt;\r\n &lt;p&gt;2因库存实时变化请购买时确认库存数量。具体发货时间以实际发货为准&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;采购量&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl bottom_content_list&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; class=&quot;quantity fl&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_bottom clear&quot;&gt;\r\n &lt;div class=&quot;right_bottom_left fl clear&quot;&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart_andBuy({$r.id})&quot; class=&quot;fl buy&quot;&gt;立即购买&lt;/a&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart({$r.id})&quot; class=&quot;fl&quot;&gt;加入购物车&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_bottom_right fr&quot;&gt;产品图片仅供参考&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n &lt;div class=&quot;productDetails_bottom clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_bottom_left fl&quot;&gt;\r\n &lt;div class=&quot;bottom_left_title&quot;&gt;销售排行榜&lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_content clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cms_product&quot; field=&quot;id,catid,title,thumb,type_no,price,price2&quot; checked=&quot;1&quot; order=&quot;sales desc&quot; limit=&quot;5&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;left_content_list fl&quot;&gt;\r\n &lt;div class=&quot;content_list_img&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_txt&quot;&gt;\r\n &lt;dd&gt;{$v.title}&lt;/dd&gt;\r\n &lt;dt&gt;商品型号:{$v.type_no}&lt;/dt&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']}&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_bottom_right fr&quot;&gt;\r\n &lt;div class=&quot;bottom_right_title clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl on&quot;&gt;商品详情&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list&quot;&gt;\r\n {:htmlspecialchars_decode($r[newstext])}\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\njQuery(&quot;.productDetails_bottom_right&quot;).slide({mainCell:&quot;.bottom_right_content&quot;,autoPlay:false,titCell:&quot;.bottom_right_title a&quot;,trigger:\'click\'});\r\n$(\'.top_left_Simg\').slick({\r\n autoplay:false,//自动播放\r\n slidesToShow: 4 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: true,\r\n dots: false,\r\n speed: 500,\r\n infinite: false, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n$(document).ready(function(){\r\n var $miaobian=$(\'.left_Simg_list\');\r\n var $huantu=$(\'.top_left_Bimg img\');\r\n $miaobian.mousemove(function(){miaobian(this);});\r\n function miaobian(thisMb){\r\n for(var i=0; i&lt;$miaobian.length; i++){\r\n $miaobian[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n thisMb.style.borderColor = \'#e50012\';\r\n \r\n $huantu[0].src = thisMb.children[0].src;\r\n }\r\n function miaobian1(thisMb1){\r\n for(var i=0; i&lt;$miaobian1.length; i++){\r\n $miaobian1[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n $miaobian.css(\'border-color\',\'#e5e5e5\');\r\n thisMb1.style.borderColor = \'#e50012\';\r\n $huantu[0].src = thisMb1.children[0].src;\r\n }\r\n})\r\n&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('4','单页模板 ','','page','','0','0','单页模板 '), ('5','公共头部','','public','header','0','0','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;#&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/Public/skin/images/chat.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/Public/skin/images/mobile.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-888-8888&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:service@jijinweb.com&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/Public/skin/images/email.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;service@jijinweb.com&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎访问我们的网站!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-888-8888&lt;/span&gt;&lt;/a&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/logout\')}&quot; class=&quot;fl&quot; onClick=&quot;return confirm(\'退\')&quot;&gt;退出&lt;/a&gt; \r\n &lt;else /&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopCart/index\')}&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;{$shopCartNum}&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt; \r\n &lt;form action=&quot;/15/index.html&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords&quot; value=&quot;{$_GET[\'keywords\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;15&quot; status=&quot;1&quot; order=&quot;sort asc,catid asc&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; pid=&quot;$v[catid]&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n\r\n\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('6','产品-列表模板','','list','','0','0','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt; \r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav PSelection_nav&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;indexProduct UserCenter PSelection&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;PSelection_title&quot;&gt;\r\n &lt;?php\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'type_no\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[type_no] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'pro_group\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;产品系列&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n \r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[pro_group] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt; \r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n ?&gt; \r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_search clear&quot;&gt;\r\n &lt;div class=&quot;PSelection_search_right fr&quot;&gt;\r\n &lt;form action=&quot;{:caturl($_GET[catid])}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;精确查询&lt;/dd&gt;\r\n &lt;dt class=&quot;fl clear&quot;&gt;\r\n &lt;input type=&quot;text&quot; name=&quot;keywords&quot; value=&quot;{$_GET[keywords]}&quot; placeholder=&quot;请输入您要搜索的商品名、订货号、型号&quot; class=&quot;PSelection_search_txt fl&quot; /&gt;\r\n &lt;input type=&quot;submit&quot; value=&quot;&quot; class=&quot;PSelection_search_submit fr&quot; /&gt;\r\n &lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n\r\n &lt;?php\r\n if(!$data){\r\n ?&gt;\r\n &lt;div class=&quot;error-search-title&quot;&gt;非常抱歉没有找到&lt;i&gt;“{$keywords}”!&lt;/i&gt;&lt;/div&gt;\r\n &lt;?php\r\n }else{\r\n ?&gt;\r\n &lt;div class=&quot;PSelection_bottom&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_txter&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品图片&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品名称&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;系列&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;型号&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;购买&lt;/dd&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_bottom_content&quot;&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;div class=&quot;bottom_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_img fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.pro_group}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.type_no}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']} / 个&lt;/p&gt;\r\n &lt;if condition=&quot;$v[\'price2\']&quot;&gt;&lt;s&gt;¥{$v.price} / 个&lt;/s&gt;&lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input class=&quot;quantity fl&quot; name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/span&gt;\r\n &lt;a onclick=&quot;add_shop_cart2(\'{$v.id}\',this)&quot; class=&quot;fl&quot;&gt;购买&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;page vertical&quot;&gt;[!--listpage--]&lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;?php \r\n }\r\n ?&gt; \r\n \r\n \r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('7','新闻内容模板','','view','','0','0','&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n{:abc()}\r\n&lt;h1&gt;{$r.title}&lt;/h1&gt;\r\n&lt;h2&gt;{$r.newstime|date=&quot;Y年m月d日&quot;,###}&lt;/h2&gt;\r\n{:htmlspecialchars_decode($r[newstext])}\r\n&lt;/body&gt;\r\n&lt;/html&gt;\r\n'), ('8','新闻列表','','list','','0','0','&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;h1&gt;[!--pagetitle--]&lt;/h1&gt;\r\n&lt;table width=&quot;800&quot; border=&quot;1&quot;&gt;\r\n &lt;tbody&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;tr&gt;\r\n &lt;td&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/td&gt;\r\n &lt;td&gt;{$v.newstime|date=&quot;Y年m月d日&quot;,###}&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/foreach&gt; \r\n &lt;/tbody&gt;\r\n&lt;/table&gt;\r\n&lt;H2&gt;[!--listpage--]&lt;/H2&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;\r\n'), ('9','公共底部',NULL,'public','footer','0','0','&lt;div class=&quot;indexProduct footer&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;footer_top clear&quot;&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg8.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;品牌直销&lt;/dd&gt;\r\n &lt;dt&gt;原厂直销,一站直营&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg9.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;一对一客服&lt;/dd&gt;\r\n &lt;dt&gt;选型询价,快速响应&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg10.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;货期保障&lt;/dd&gt;\r\n &lt;dt&gt;原厂直发 ,货期无忧&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg11.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;售后无忧&lt;/dd&gt;\r\n &lt;dt&gt;超百名技术工程师技术支持&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n&lt;div class=&quot;indexProduct Copyright&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear&quot;&gt;\r\n &lt;div class=&quot;Copyright_left fl&quot;&gt;Copyright©2018-2022 &lt;a style=&quot;font-size: 12px;color: #111; margin-left:15px;&quot; href=&quot;http://www.miitbeian.gov.cn/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;沪ICP备8888888号-1&lt;/a&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;mo_footer_height&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;mo_footer clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-home&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;首页&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;#&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-navicon&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;产品&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/index.php?m=Shop&amp;c=ShopCart&amp;a=index&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-shopping-cart&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;购物车&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/index.php?m=Member&amp;c=Index&amp;a=index&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-user&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;我的&lt;/dt&gt;\r\n &lt;/a&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script&gt;\r\n function auth_change(){\r\n $(&quot;html,body&quot;).animate({scrollTop: 0},&quot;slow&quot;);\r\n }\r\n&lt;/script&gt;');
INSERT INTO `db_template_history` VALUES ('1','8','1566193315','1','admin','2'), ('2','8','1566193876','1','admin','2&lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n&lt;li&gt;&lt;a href=&quot;{$v.titleurl}&quot;&gt;{$v.price}&lt;/a&gt; [{$v.newstime|date=&quot;Y年m月d日&quot;,###}]&lt;/li&gt;\r\n&lt;/foreach&gt; '), ('3','5','1569303477','1','admin','&lt;div class=&quot;footer&quot;&gt;\r\n &lt;div class=&quot;footer_content&quot;&gt;\r\n &lt;div class=&quot;footer_content_title clear&quot;&gt;\r\n &lt;div class=&quot;content_title_left fl clear&quot;&gt;\r\n &lt;a href=&quot;mailto:service@mrrld.com&quot; class=&quot;title_left_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;img src=&quot;/skin/images/bn2.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;电子邮箱service@mrrld.com&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;title_left_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;img src=&quot;/skin/images/bn3.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;服务热线400-8837-937&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;https://j.map.baidu.com/Wvd_G&quot; target=&quot;_blank&quot; class=&quot;title_left_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;img src=&quot;/skin/images/bn4.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;查看我们的地址&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;a href=&quot;#&quot; class=&quot;content_title_right fr&quot;&gt;立即交谈&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_content_txt clear&quot;&gt;\r\n &lt;div class=&quot;content_txt_left fl clear&quot;&gt;\r\n &lt;div class=&quot;txt_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;{:pageurl(1)}&quot;&gt;关于我们&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;a href=&quot;{:pageurl(1)}&quot; class=&quot;fl&quot;&gt;公司简介&lt;/a&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;txt_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;{:caturl(4)}&quot;&gt;参比数据库&lt;/a&gt;&lt;/dd&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;txt_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;{:caturl(1)}&quot;&gt;知识库&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; status=&quot;1&quot; pid=&quot;1&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;txt_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;{:caturl(6)}&quot;&gt;常见问题&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;cmsinfo catid=&quot;6&quot; checked=&quot;1&quot; order=&quot;is_good desc,newstime desc&quot; limit=&quot;4&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;fl&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;txt_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;{:pageurl(2)}&quot;&gt;联系我们&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;a href=&quot;{:pageurl(2)}&quot; class=&quot;fl&quot;&gt;联系地址&lt;/a&gt;\r\n &lt;a href=&quot;{:pageurl(3)}&quot; class=&quot;fl&quot;&gt;在线留言&lt;/a&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_txt_right fr&quot;&gt;\r\n &lt;dd&gt;关注我们&lt;/dd&gt;\r\n &lt;dt&gt;&lt;img src=&quot;/skin/images/bg1.jpg&quot; /&gt;&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n&lt;div class=&quot;Copyright&quot;&gt;\r\n &lt;div class=&quot;Copyright_content clear&quot;&gt;Copyright©2019-2020 上海明仁医药有限公司版权所有 技术支持:&lt;a href=&quot;http://www.shwzzz.cn&quot; target=&quot;_blank&quot;&gt;集锦科技&lt;/a&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n'), ('4','3','1569303516','1','admin','&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;{$r.title}&lt;/title&gt;\r\n&lt;link href=&quot;http://jijincms.mx.jijinweb.com/Public/ueditor/themes/default/dialogbase.css?cache=0.12573760165680103&quot;&gt;\r\n&lt;link href=&quot;http://jijincms.mx.jijinweb.com/Public/ueditor/themes/default/css/ueditor.css&quot;&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;{:htmlspecialchars_decode($r[newstext])}\r\n&lt;/body&gt;\r\n&lt;/html&gt;\r\n'), ('5','5','1569303823','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;http://p.qiao.baidu.com/cps/chat?siteId=13877276&amp;userId=25374722&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec7c8cc0e.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec88e0a85.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-820-9609&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:sales@imi-precision.com.cn&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec92f3b72.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;sales@imi-precision.com.cn&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n&lt;div class=&quot;mo_top&quot;&gt;\r\n &lt;div class=&quot;mot mo&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;molo&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot;&gt;&lt;/a&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;cd-nav-trigger&quot;&gt;Menu \r\n &lt;span class=&quot;cd-nav-icon&quot;&gt;&lt;/span&gt;\r\n &lt;/a&gt; \r\n &lt;/div&gt;\r\n &lt;div class=&quot;mo_down&quot;&gt;\r\n &lt;nav id=&quot;mo_nav&quot;&gt;\r\n &lt;ul&gt;\r\n &lt;li&gt;&lt;a href=&quot;/&quot;&gt;首页&lt;/a&gt;&lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;品牌中心&lt;/dd&gt;\r\n &lt;dt class=&quot;fr&quot;&gt;&lt;i class=&quot;fa fa-angle-right&quot;&gt;&lt;/i&gt;&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;sub-wrapper&quot;&gt;\r\n &lt;ul&gt;\r\n &lt;cmsinfo catid=&quot;397&quot; checked=&quot;1&quot; order=&quot;sort asc&quot; field=&quot;id,catid,title&quot;&gt;\r\n &lt;li&gt;&lt;a href=&quot;{$v.titleurl}&quot;&gt;{$v.title}&lt;/a&gt;&lt;/li&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/ul&gt;\r\n &lt;/div&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;行业解决方案&lt;/dd&gt;\r\n &lt;dt class=&quot;fr&quot;&gt;&lt;i class=&quot;fa fa-angle-right&quot;&gt;&lt;/i&gt;&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;sub-wrapper&quot;&gt;\r\n &lt;ul&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;185&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;li&gt;&lt;a href=&quot;{$v.class_url}&quot;&gt;{$v.name}&lt;/a&gt;&lt;/li&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/ul&gt;\r\n &lt;/div&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=&quot;{:caturl(387)}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;经销商专区&lt;/dd&gt;\r\n &lt;dt class=&quot;fr&quot;&gt;&lt;i class=&quot;fa fa-angle-right&quot;&gt;&lt;/i&gt;&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;sub-wrapper&quot;&gt;\r\n &lt;/div&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;服务支持&lt;/dd&gt;\r\n &lt;dt class=&quot;fr&quot;&gt;&lt;i class=&quot;fa fa-angle-right&quot;&gt;&lt;/i&gt;&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;sub-wrapper&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=&quot;{:pageurl(3)}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;走进IMI精密流体&lt;/dd&gt;\r\n &lt;dt class=&quot;fr&quot;&gt;&lt;i class=&quot;fa fa-angle-right&quot;&gt;&lt;/i&gt;&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;sub-wrapper&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n &lt;/nav&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt; \r\n&lt;div class=&quot;mo_height&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎来到埃迈诺冠官方在线商城!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-820-9609&lt;/span&gt;&lt;/a&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/logout\')}&quot; class=&quot;fl&quot; onClick=&quot;return confirm(\'退\')&quot;&gt;退出&lt;/a&gt; \r\n &lt;else /&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopCart/index\')}&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;{$shopCartNum}&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt;\r\n &lt;a href=&quot;/index.php/Home/Search/filter/&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn2.png&quot; /&gt;选型工具&lt;/a&gt;\r\n &lt;form action=&quot;/index.php/Home/Search/index/&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords_all&quot; value=&quot;{$_GET[\'keywords_all\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;执行元件&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;气缸&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;6&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(30)}&quot; class=&quot;fl&quot;&gt;阀&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(31)}&quot; class=&quot;fl&quot;&gt;阀岛&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;7&quot; pid=&quot;array(\'neq\',0)&quot; level=&quot;array(\'lt\',4)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(88)}&quot; class=&quot;fl&quot;&gt;压力开关&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(89)}&quot; class=&quot;fl&quot;&gt;气动压力开关&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;8&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(98)}&quot; class=&quot;fl&quot;&gt;空气处理设备&lt;span&gt;/&lt;/span&gt;过滤器、调压阀、油雾器&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;9&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(174)}&quot; class=&quot;fl&quot;&gt;接头&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;10&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(403)}&quot; class=&quot;fl&quot;&gt;气管&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;11&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(384)}&quot; class=&quot;fl&quot;&gt;球阀&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;title,id,catid&quot; table=&quot;cms_product&quot; modelid=&quot;12&quot; order=&quot;sort asc&quot; group=&quot;title asc&quot;&gt;\r\n &lt;a href=&quot;/384/index.html?keywords={$v.title}&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;right_list_title&quot;&gt;首页&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/397/1.html&quot; class=&quot;right_list_title&quot;&gt;品牌中心&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n &lt;cmsinfo catid=&quot;397&quot; checked=&quot;1&quot; order=&quot;sort asc&quot; field=&quot;id,catid,title&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;fl&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/186/1.html&quot; class=&quot;right_list_title&quot;&gt;行业解决方案&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;185&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{$v.class_url}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:caturl(387)}&quot; class=&quot;right_list_title&quot;&gt;经销商专区&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;right_list_title&quot;&gt;服务支持&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:pageurl(3)}&quot; class=&quot;right_list_title&quot;&gt;走进IMI精密流体&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('6','3','1569304596','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;indexProduct UserCenter shopping productDetails&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;productDetails_top clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_top_left fl&quot;&gt;\r\n &lt;div class=&quot;top_left_Bimg&quot;&gt;&lt;img src=&quot;{$selfcat.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_left_Simg clear fa&quot;&gt;\r\n &lt;?php\r\n $morepic_arr=explode(&quot;\\r\\n&quot;,$selfcat[&quot;morepic&quot;]);\r\n foreach($morepic_arr as $v){\r\n if(!$v){break;};\r\n $vs=explode(&quot;||&quot;,$v); \r\n ?&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;left_Simg_list fl on&quot;&gt;&lt;img src=&quot;&lt;?=$vs[1]?&gt;&quot; alt=&quot;&lt;?=$vs[2]?&gt;&quot;/&gt;&lt;/a&gt;\r\n &lt;?php\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_top_right fr&quot;&gt;\r\n &lt;div class=&quot;top_right_title&quot;&gt;\r\n &lt;div class=&quot;right_title_top&quot;&gt;{$r.title}&lt;/div&gt;\r\n &lt;div class=&quot;right_title_price clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;span&gt;¥{$r[\'price2\']?$r[\'price2\']:$r[\'price\']} / 个&lt;/span&gt;\r\n &lt;if condition=&quot;$r[\'price2\']&quot;&gt;&lt;s&gt;¥{$r.price} / 个&lt;/s&gt;&lt;/if&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;订货号&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;{$r.type_no}&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;商品型号&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;{$r.type_no}&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;货期&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;{$r.delivery_day}天&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;服务说明&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;\r\n &lt;p&gt;1由埃迈诺冠发货并提供售后服务。&lt;/p&gt;\r\n &lt;p&gt;2因库存实时变化请购买时确认库存数量。具体发货时间以实际发货为准&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;采购量&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl bottom_content_list&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; class=&quot;quantity fl&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_bottom clear&quot;&gt;\r\n &lt;div class=&quot;right_bottom_left fl clear&quot;&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart_andBuy({$r.id})&quot; class=&quot;fl buy&quot;&gt;立即购买&lt;/a&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart({$r.id})&quot; class=&quot;fl&quot;&gt;加入购物车&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_bottom_right fr&quot;&gt;产品图片仅供参考&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n &lt;div class=&quot;productDetails_bottom clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_bottom_left fl&quot;&gt;\r\n &lt;div class=&quot;bottom_left_title&quot;&gt;销售排行榜&lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_content clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cms_product&quot; field=&quot;id,catid,title,type_no,price,price2&quot; checked=&quot;1&quot; order=&quot;sales desc&quot; limit=&quot;5&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;left_content_list fl&quot;&gt;\r\n &lt;div class=&quot;content_list_img&quot;&gt;&lt;img src=&quot;{$cat.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_txt&quot;&gt;\r\n &lt;dd&gt;{$v.title}&lt;/dd&gt;\r\n &lt;dt&gt;商品型号:{$v.type_no}&lt;/dt&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']}&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_bottom_right fr&quot;&gt;\r\n &lt;div class=&quot;bottom_right_title clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl on&quot;&gt;商品详情&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list&quot;&gt;\r\n {:htmlspecialchars_decode($r[newstext])}\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\njQuery(&quot;.productDetails_bottom_right&quot;).slide({mainCell:&quot;.bottom_right_content&quot;,autoPlay:false,titCell:&quot;.bottom_right_title a&quot;,trigger:\'click\'});\r\n$(\'.top_left_Simg\').slick({\r\n autoplay:false,//自动播放\r\n slidesToShow: 4 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: true,\r\n dots: false,\r\n speed: 500,\r\n infinite: false, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n$(document).ready(function(){\r\n var $miaobian=$(\'.left_Simg_list\');\r\n var $huantu=$(\'.top_left_Bimg img\');\r\n $miaobian.mousemove(function(){miaobian(this);});\r\n function miaobian(thisMb){\r\n for(var i=0; i&lt;$miaobian.length; i++){\r\n $miaobian[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n thisMb.style.borderColor = \'#e50012\';\r\n \r\n $huantu[0].src = thisMb.children[0].src;\r\n }\r\n function miaobian1(thisMb1){\r\n for(var i=0; i&lt;$miaobian1.length; i++){\r\n $miaobian1[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n $miaobian.css(\'border-color\',\'#e5e5e5\');\r\n thisMb1.style.borderColor = \'#e50012\';\r\n $huantu[0].src = thisMb1.children[0].src;\r\n }\r\n})\r\n&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('7','3','1569304621','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;indexProduct UserCenter shopping productDetails&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;productDetails_top clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_top_left fl&quot;&gt;\r\n &lt;div class=&quot;top_left_Bimg&quot;&gt;&lt;img src=&quot;{r.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_left_Simg clear fa&quot;&gt;\r\n &lt;?php\r\n $morepic_arr=explode(&quot;\\r\\n&quot;,$r[&quot;morepic&quot;]);\r\n foreach($morepic_arr as $v){\r\n if(!$v){break;};\r\n $vs=explode(&quot;||&quot;,$v);\r\n ?&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;left_Simg_list fl on&quot;&gt;&lt;img src=&quot;&lt;?=$vs[1]?&gt;&quot; alt=&quot;&lt;?=$vs[2]?&gt;&quot;/&gt;&lt;/a&gt;\r\n &lt;?php\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_top_right fr&quot;&gt;\r\n &lt;div class=&quot;top_right_title&quot;&gt;\r\n &lt;div class=&quot;right_title_top&quot;&gt;{$r.title}&lt;/div&gt;\r\n &lt;div class=&quot;right_title_price clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;span&gt;¥{$r[\'price2\']?$r[\'price2\']:$r[\'price\']} / 个&lt;/span&gt;\r\n &lt;if condition=&quot;$r[\'price2\']&quot;&gt;&lt;s&gt;¥{$r.price} / 个&lt;/s&gt;&lt;/if&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;{$r.type_no}&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;服务说明&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;\r\n &lt;p&gt;1发货并提供售后服务。&lt;/p&gt;\r\n &lt;p&gt;2因库存实时变化请购买时确认库存数量。具体发货时间以实际发货为准&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;采购量&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl bottom_content_list&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; class=&quot;quantity fl&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_bottom clear&quot;&gt;\r\n &lt;div class=&quot;right_bottom_left fl clear&quot;&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart_andBuy({$r.id})&quot; class=&quot;fl buy&quot;&gt;立即购买&lt;/a&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart({$r.id})&quot; class=&quot;fl&quot;&gt;加入购物车&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_bottom_right fr&quot;&gt;产品图片仅供参考&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n &lt;div class=&quot;productDetails_bottom clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_bottom_left fl&quot;&gt;\r\n &lt;div class=&quot;bottom_left_title&quot;&gt;销售排行榜&lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_content clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cms_product&quot; field=&quot;id,catid,title,type_no,price,price2&quot; checked=&quot;1&quot; order=&quot;sales desc&quot; limit=&quot;5&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;left_content_list fl&quot;&gt;\r\n &lt;div class=&quot;content_list_img&quot;&gt;&lt;img src=&quot;{$cat.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_txt&quot;&gt;\r\n &lt;dd&gt;{$v.title}&lt;/dd&gt;\r\n &lt;dt&gt;商品型号:{$v.type_no}&lt;/dt&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']}&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_bottom_right fr&quot;&gt;\r\n &lt;div class=&quot;bottom_right_title clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl on&quot;&gt;商品详情&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list&quot;&gt;\r\n {:htmlspecialchars_decode($r[newstext])}\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\njQuery(&quot;.productDetails_bottom_right&quot;).slide({mainCell:&quot;.bottom_right_content&quot;,autoPlay:false,titCell:&quot;.bottom_right_title a&quot;,trigger:\'click\'});\r\n$(\'.top_left_Simg\').slick({\r\n autoplay:false,//自动播放\r\n slidesToShow: 4 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: true,\r\n dots: false,\r\n speed: 500,\r\n infinite: false, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n$(document).ready(function(){\r\n var $miaobian=$(\'.left_Simg_list\');\r\n var $huantu=$(\'.top_left_Bimg img\');\r\n $miaobian.mousemove(function(){miaobian(this);});\r\n function miaobian(thisMb){\r\n for(var i=0; i&lt;$miaobian.length; i++){\r\n $miaobian[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n thisMb.style.borderColor = \'#e50012\';\r\n \r\n $huantu[0].src = thisMb.children[0].src;\r\n }\r\n function miaobian1(thisMb1){\r\n for(var i=0; i&lt;$miaobian1.length; i++){\r\n $miaobian1[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n $miaobian.css(\'border-color\',\'#e5e5e5\');\r\n thisMb1.style.borderColor = \'#e50012\';\r\n $huantu[0].src = thisMb1.children[0].src;\r\n }\r\n})\r\n&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('8','3','1569304653','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;indexProduct UserCenter shopping productDetails&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;productDetails_top clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_top_left fl&quot;&gt;\r\n &lt;div class=&quot;top_left_Bimg&quot;&gt;&lt;img src=&quot;{$r.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_left_Simg clear fa&quot;&gt;\r\n &lt;?php\r\n $morepic_arr=explode(&quot;\\r\\n&quot;,$r[&quot;morepic&quot;]);\r\n foreach($morepic_arr as $v){\r\n if(!$v){break;};\r\n $vs=explode(&quot;||&quot;,$v);\r\n ?&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;left_Simg_list fl on&quot;&gt;&lt;img src=&quot;&lt;?=$vs[1]?&gt;&quot; alt=&quot;&lt;?=$vs[2]?&gt;&quot;/&gt;&lt;/a&gt;\r\n &lt;?php\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_top_right fr&quot;&gt;\r\n &lt;div class=&quot;top_right_title&quot;&gt;\r\n &lt;div class=&quot;right_title_top&quot;&gt;{$r.title}&lt;/div&gt;\r\n &lt;div class=&quot;right_title_price clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;span&gt;¥{$r[\'price2\']?$r[\'price2\']:$r[\'price\']} / 个&lt;/span&gt;\r\n &lt;if condition=&quot;$r[\'price2\']&quot;&gt;&lt;s&gt;¥{$r.price} / 个&lt;/s&gt;&lt;/if&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;{$r.type_no}&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;服务说明&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;\r\n &lt;p&gt;1发货并提供售后服务。&lt;/p&gt;\r\n &lt;p&gt;2因库存实时变化请购买时确认库存数量。具体发货时间以实际发货为准&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;采购量&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl bottom_content_list&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; class=&quot;quantity fl&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_bottom clear&quot;&gt;\r\n &lt;div class=&quot;right_bottom_left fl clear&quot;&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart_andBuy({$r.id})&quot; class=&quot;fl buy&quot;&gt;立即购买&lt;/a&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart({$r.id})&quot; class=&quot;fl&quot;&gt;加入购物车&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_bottom_right fr&quot;&gt;产品图片仅供参考&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n &lt;div class=&quot;productDetails_bottom clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_bottom_left fl&quot;&gt;\r\n &lt;div class=&quot;bottom_left_title&quot;&gt;销售排行榜&lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_content clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cms_product&quot; field=&quot;id,catid,title,type_no,price,price2&quot; checked=&quot;1&quot; order=&quot;sales desc&quot; limit=&quot;5&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;left_content_list fl&quot;&gt;\r\n &lt;div class=&quot;content_list_img&quot;&gt;&lt;img src=&quot;{$cat.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_txt&quot;&gt;\r\n &lt;dd&gt;{$v.title}&lt;/dd&gt;\r\n &lt;dt&gt;商品型号:{$v.type_no}&lt;/dt&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']}&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_bottom_right fr&quot;&gt;\r\n &lt;div class=&quot;bottom_right_title clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl on&quot;&gt;商品详情&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list&quot;&gt;\r\n {:htmlspecialchars_decode($r[newstext])}\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\njQuery(&quot;.productDetails_bottom_right&quot;).slide({mainCell:&quot;.bottom_right_content&quot;,autoPlay:false,titCell:&quot;.bottom_right_title a&quot;,trigger:\'click\'});\r\n$(\'.top_left_Simg\').slick({\r\n autoplay:false,//自动播放\r\n slidesToShow: 4 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: true,\r\n dots: false,\r\n speed: 500,\r\n infinite: false, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n$(document).ready(function(){\r\n var $miaobian=$(\'.left_Simg_list\');\r\n var $huantu=$(\'.top_left_Bimg img\');\r\n $miaobian.mousemove(function(){miaobian(this);});\r\n function miaobian(thisMb){\r\n for(var i=0; i&lt;$miaobian.length; i++){\r\n $miaobian[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n thisMb.style.borderColor = \'#e50012\';\r\n \r\n $huantu[0].src = thisMb.children[0].src;\r\n }\r\n function miaobian1(thisMb1){\r\n for(var i=0; i&lt;$miaobian1.length; i++){\r\n $miaobian1[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n $miaobian.css(\'border-color\',\'#e5e5e5\');\r\n thisMb1.style.borderColor = \'#e50012\';\r\n $huantu[0].src = thisMb1.children[0].src;\r\n }\r\n})\r\n&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('9','3','1569304679','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;indexProduct UserCenter shopping productDetails&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;productDetails_top clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_top_left fl&quot;&gt;\r\n &lt;div class=&quot;top_left_Bimg&quot;&gt;&lt;img src=&quot;{$r.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_left_Simg clear fa&quot;&gt;\r\n &lt;?php\r\n $morepic_arr=explode(&quot;\\r\\n&quot;,$r[&quot;morepic&quot;]);\r\n foreach($morepic_arr as $v){\r\n if(!$v){break;};\r\n $vs=explode(&quot;||&quot;,$v);\r\n ?&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;left_Simg_list fl on&quot;&gt;&lt;img src=&quot;&lt;?=$vs[1]?&gt;&quot; alt=&quot;&lt;?=$vs[2]?&gt;&quot;/&gt;&lt;/a&gt;\r\n &lt;?php\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_top_right fr&quot;&gt;\r\n &lt;div class=&quot;top_right_title&quot;&gt;\r\n &lt;div class=&quot;right_title_top&quot;&gt;{$r.title}&lt;/div&gt;\r\n &lt;div class=&quot;right_title_price clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;span&gt;¥{$r[\'price2\']?$r[\'price2\']:$r[\'price\']} / 个&lt;/span&gt;\r\n &lt;if condition=&quot;$r[\'price2\']&quot;&gt;&lt;s&gt;¥{$r.price} / 个&lt;/s&gt;&lt;/if&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;{$r.type_no}&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;服务说明&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl&quot;&gt;\r\n &lt;p&gt;1发货并提供售后服务。&lt;/p&gt;\r\n &lt;p&gt;2因库存实时变化请购买时确认库存数量。具体发货时间以实际发货为准&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_left fl&quot;&gt;采购量&lt;/div&gt;\r\n &lt;div class=&quot;content_list_right fl bottom_content_list&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; class=&quot;quantity fl&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_right_bottom clear&quot;&gt;\r\n &lt;div class=&quot;right_bottom_left fl clear&quot;&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart_andBuy({$r.id})&quot; class=&quot;fl buy&quot;&gt;立即购买&lt;/a&gt;\r\n &lt;a href=&quot;javascript:add_shop_cart({$r.id})&quot; class=&quot;fl&quot;&gt;加入购物车&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;right_bottom_right fr&quot;&gt;产品图片仅供参考&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n &lt;div class=&quot;productDetails_bottom clear&quot;&gt;\r\n &lt;div class=&quot;productDetails_bottom_left fl&quot;&gt;\r\n &lt;div class=&quot;bottom_left_title&quot;&gt;销售排行榜&lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_content clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cms_product&quot; field=&quot;id,catid,title,type_no,price,price2&quot; checked=&quot;1&quot; order=&quot;sales desc&quot; limit=&quot;5&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;left_content_list fl&quot;&gt;\r\n &lt;div class=&quot;content_list_img&quot;&gt;&lt;img src=&quot;{$r.thumb}&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_txt&quot;&gt;\r\n &lt;dd&gt;{$v.title}&lt;/dd&gt;\r\n &lt;dt&gt;商品型号:{$v.type_no}&lt;/dt&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']}&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;productDetails_bottom_right fr&quot;&gt;\r\n &lt;div class=&quot;bottom_right_title clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl on&quot;&gt;商品详情&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_right_content&quot;&gt;\r\n &lt;div class=&quot;right_content_list&quot;&gt;\r\n {:htmlspecialchars_decode($r[newstext])}\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\njQuery(&quot;.productDetails_bottom_right&quot;).slide({mainCell:&quot;.bottom_right_content&quot;,autoPlay:false,titCell:&quot;.bottom_right_title a&quot;,trigger:\'click\'});\r\n$(\'.top_left_Simg\').slick({\r\n autoplay:false,//自动播放\r\n slidesToShow: 4 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: true,\r\n dots: false,\r\n speed: 500,\r\n infinite: false, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n$(document).ready(function(){\r\n var $miaobian=$(\'.left_Simg_list\');\r\n var $huantu=$(\'.top_left_Bimg img\');\r\n $miaobian.mousemove(function(){miaobian(this);});\r\n function miaobian(thisMb){\r\n for(var i=0; i&lt;$miaobian.length; i++){\r\n $miaobian[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n thisMb.style.borderColor = \'#e50012\';\r\n \r\n $huantu[0].src = thisMb.children[0].src;\r\n }\r\n function miaobian1(thisMb1){\r\n for(var i=0; i&lt;$miaobian1.length; i++){\r\n $miaobian1[i].style.borderColor = \'#e5e5e5\';\r\n }\r\n $miaobian.css(\'border-color\',\'#e5e5e5\');\r\n thisMb1.style.borderColor = \'#e50012\';\r\n $huantu[0].src = thisMb1.children[0].src;\r\n }\r\n})\r\n&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('10','6','1569305147','1','admin','列表模板'), ('11','6','1569305198','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt; \r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav PSelection_nav&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;indexProduct UserCenter PSelection&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;PSelection_title&quot;&gt;\r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;类别&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n {:product_nav()}\r\n &lt;div class=&quot;son_list&quot;&gt;\r\n &lt;cmsinfo pid=&quot;$selfcat[\'catid\']&quot; table=&quot;cat&quot; is_last=&quot;array(\'eq\',0)&quot; status=&quot;1&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[\'catid\'])}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt; \r\n\r\n &lt;?php\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'type_no\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[type_no] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'pro_group\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;产品系列&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n \r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[pro_group] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt; \r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n ?&gt; \r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_search clear&quot;&gt;\r\n &lt;div class=&quot;PSelection_search_right fr&quot;&gt;\r\n &lt;form action=&quot;{:caturl($_GET[catid])}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;精确查询&lt;/dd&gt;\r\n &lt;dt class=&quot;fl clear&quot;&gt;\r\n &lt;input type=&quot;text&quot; name=&quot;keywords&quot; value=&quot;{$_GET[keywords]}&quot; placeholder=&quot;请输入您要搜索的商品名、订货号、型号&quot; class=&quot;PSelection_search_txt fl&quot; /&gt;\r\n &lt;input type=&quot;submit&quot; value=&quot;&quot; class=&quot;PSelection_search_submit fr&quot; /&gt;\r\n &lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n\r\n &lt;?php\r\n if(!$data){\r\n ?&gt;\r\n &lt;div class=&quot;error-search-title&quot;&gt;非常抱歉没有找到&lt;i&gt;“{$keywords}”!&lt;/i&gt;&lt;/div&gt;\r\n &lt;?php\r\n }else{\r\n ?&gt;\r\n &lt;div class=&quot;PSelection_bottom&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_txter&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品图片&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品名称&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;系列&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;型号&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;购买&lt;/dd&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_bottom_content&quot;&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;div class=&quot;bottom_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_img fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;{$v.cat.thumb}&quot; /&gt;&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.cat.name}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.type_no}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']} / 个&lt;/p&gt;\r\n &lt;if condition=&quot;$v[\'price2\']&quot;&gt;&lt;s&gt;¥{$v.price} / 个&lt;/s&gt;&lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input class=&quot;quantity fl&quot; name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/span&gt;\r\n &lt;a onclick=&quot;add_shop_cart2(\'{$v.id}\',this)&quot; class=&quot;fl&quot;&gt;购买&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;page vertical&quot;&gt;[!--listpage--]&lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;?php \r\n }\r\n ?&gt; \r\n \r\n \r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('12','6','1569305363','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt; \r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav PSelection_nav&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;indexProduct UserCenter PSelection&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;PSelection_title&quot;&gt;\r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;类别&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n &lt;div class=&quot;son_list&quot;&gt;\r\n &lt;cmsinfo pid=&quot;$selfcat[\'catid\']&quot; table=&quot;cat&quot; is_last=&quot;array(\'eq\',0)&quot; status=&quot;1&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[\'catid\'])}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt; \r\n\r\n &lt;?php\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'type_no\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[type_no] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'pro_group\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;产品系列&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n \r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[pro_group] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt; \r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n ?&gt; \r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_search clear&quot;&gt;\r\n &lt;div class=&quot;PSelection_search_right fr&quot;&gt;\r\n &lt;form action=&quot;{:caturl($_GET[catid])}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;精确查询&lt;/dd&gt;\r\n &lt;dt class=&quot;fl clear&quot;&gt;\r\n &lt;input type=&quot;text&quot; name=&quot;keywords&quot; value=&quot;{$_GET[keywords]}&quot; placeholder=&quot;请输入您要搜索的商品名、订货号、型号&quot; class=&quot;PSelection_search_txt fl&quot; /&gt;\r\n &lt;input type=&quot;submit&quot; value=&quot;&quot; class=&quot;PSelection_search_submit fr&quot; /&gt;\r\n &lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n\r\n &lt;?php\r\n if(!$data){\r\n ?&gt;\r\n &lt;div class=&quot;error-search-title&quot;&gt;非常抱歉没有找到&lt;i&gt;“{$keywords}”!&lt;/i&gt;&lt;/div&gt;\r\n &lt;?php\r\n }else{\r\n ?&gt;\r\n &lt;div class=&quot;PSelection_bottom&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_txter&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品图片&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品名称&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;系列&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;型号&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;购买&lt;/dd&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_bottom_content&quot;&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;div class=&quot;bottom_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_img fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;{$v.cat.thumb}&quot; /&gt;&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.cat.name}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.type_no}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']} / 个&lt;/p&gt;\r\n &lt;if condition=&quot;$v[\'price2\']&quot;&gt;&lt;s&gt;¥{$v.price} / 个&lt;/s&gt;&lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input class=&quot;quantity fl&quot; name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/span&gt;\r\n &lt;a onclick=&quot;add_shop_cart2(\'{$v.id}\',this)&quot; class=&quot;fl&quot;&gt;购买&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;page vertical&quot;&gt;[!--listpage--]&lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;?php \r\n }\r\n ?&gt; \r\n \r\n \r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('13','6','1569305405','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt; \r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav PSelection_nav&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;indexProduct UserCenter PSelection&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;PSelection_title&quot;&gt;\r\n &lt;?php\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'type_no\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[type_no] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'pro_group\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;产品系列&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n \r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[pro_group] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt; \r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n ?&gt; \r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_search clear&quot;&gt;\r\n &lt;div class=&quot;PSelection_search_right fr&quot;&gt;\r\n &lt;form action=&quot;{:caturl($_GET[catid])}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;精确查询&lt;/dd&gt;\r\n &lt;dt class=&quot;fl clear&quot;&gt;\r\n &lt;input type=&quot;text&quot; name=&quot;keywords&quot; value=&quot;{$_GET[keywords]}&quot; placeholder=&quot;请输入您要搜索的商品名、订货号、型号&quot; class=&quot;PSelection_search_txt fl&quot; /&gt;\r\n &lt;input type=&quot;submit&quot; value=&quot;&quot; class=&quot;PSelection_search_submit fr&quot; /&gt;\r\n &lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n\r\n &lt;?php\r\n if(!$data){\r\n ?&gt;\r\n &lt;div class=&quot;error-search-title&quot;&gt;非常抱歉没有找到&lt;i&gt;“{$keywords}”!&lt;/i&gt;&lt;/div&gt;\r\n &lt;?php\r\n }else{\r\n ?&gt;\r\n &lt;div class=&quot;PSelection_bottom&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_txter&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品图片&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品名称&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;系列&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;型号&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;购买&lt;/dd&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_bottom_content&quot;&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;div class=&quot;bottom_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_img fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;{$v.cat.thumb}&quot; /&gt;&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.cat.name}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.type_no}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']} / 个&lt;/p&gt;\r\n &lt;if condition=&quot;$v[\'price2\']&quot;&gt;&lt;s&gt;¥{$v.price} / 个&lt;/s&gt;&lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input class=&quot;quantity fl&quot; name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/span&gt;\r\n &lt;a onclick=&quot;add_shop_cart2(\'{$v.id}\',this)&quot; class=&quot;fl&quot;&gt;购买&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;page vertical&quot;&gt;[!--listpage--]&lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;?php \r\n }\r\n ?&gt; \r\n \r\n \r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('14','5','1569307110','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;http://p.qiao.baidu.com/cps/chat?siteId=13877276&amp;userId=25374722&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec7c8cc0e.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec88e0a85.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-820-9609&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:sales@imi-precision.com.cn&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec92f3b72.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;sales@imi-precision.com.cn&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt;\r\n &lt;a href=&quot;/index.php/Home/Search/filter/&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn2.png&quot; /&gt;选型工具&lt;/a&gt;\r\n &lt;form action=&quot;/index.php/Home/Search/index/&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords_all&quot; value=&quot;{$_GET[\'keywords_all\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;执行元件&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;气缸&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;6&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(30)}&quot; class=&quot;fl&quot;&gt;阀&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(31)}&quot; class=&quot;fl&quot;&gt;阀岛&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;7&quot; pid=&quot;array(\'neq\',0)&quot; level=&quot;array(\'lt\',4)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(88)}&quot; class=&quot;fl&quot;&gt;压力开关&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(89)}&quot; class=&quot;fl&quot;&gt;气动压力开关&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;8&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(98)}&quot; class=&quot;fl&quot;&gt;空气处理设备&lt;span&gt;/&lt;/span&gt;过滤器、调压阀、油雾器&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;9&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(174)}&quot; class=&quot;fl&quot;&gt;接头&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;10&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(403)}&quot; class=&quot;fl&quot;&gt;气管&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;11&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(384)}&quot; class=&quot;fl&quot;&gt;球阀&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;title,id,catid&quot; table=&quot;cms_product&quot; modelid=&quot;12&quot; order=&quot;sort asc&quot; group=&quot;title asc&quot;&gt;\r\n &lt;a href=&quot;/384/index.html?keywords={$v.title}&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;right_list_title&quot;&gt;首页&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/397/1.html&quot; class=&quot;right_list_title&quot;&gt;品牌中心&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/186/1.html&quot; class=&quot;right_list_title&quot;&gt;行业解决方案&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;185&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{$v.class_url}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:caturl(387)}&quot; class=&quot;right_list_title&quot;&gt;经销商专区&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;right_list_title&quot;&gt;服务支持&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:pageurl(3)}&quot; class=&quot;right_list_title&quot;&gt;走进IMI精密流体&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('15','5','1569307253','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;http://p.qiao.baidu.com/cps/chat?siteId=13877276&amp;userId=25374722&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec7c8cc0e.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec88e0a85.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-820-9609&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:sales@imi-precision.com.cn&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec92f3b72.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;sales@imi-precision.com.cn&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎来到埃迈诺冠在线商城!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-820-9609&lt;/span&gt;&lt;/a&gt;\r\n \r\n &lt;a href=&quot;/index.php?m=Member&amp;c=Public&amp;a=login&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;/index.php?m=Member&amp;c=Public&amp;a=register&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt; &lt;a href=&quot;/index.php?m=Shop&amp;c=ShopCart&amp;a=index&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;0&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt;\r\n &lt;a href=&quot;/index.php/Home/Search/filter/&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn2.png&quot; /&gt;选型工具&lt;/a&gt;\r\n &lt;form action=&quot;/index.php/Home/Search/index/&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords_all&quot; value=&quot;{$_GET[\'keywords_all\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;执行元件&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;气缸&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;6&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(30)}&quot; class=&quot;fl&quot;&gt;阀&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(31)}&quot; class=&quot;fl&quot;&gt;阀岛&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;7&quot; pid=&quot;array(\'neq\',0)&quot; level=&quot;array(\'lt\',4)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(88)}&quot; class=&quot;fl&quot;&gt;压力开关&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(89)}&quot; class=&quot;fl&quot;&gt;气动压力开关&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;8&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(98)}&quot; class=&quot;fl&quot;&gt;空气处理设备&lt;span&gt;/&lt;/span&gt;过滤器、调压阀、油雾器&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;9&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(174)}&quot; class=&quot;fl&quot;&gt;接头&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;10&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(403)}&quot; class=&quot;fl&quot;&gt;气管&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;11&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(384)}&quot; class=&quot;fl&quot;&gt;球阀&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;title,id,catid&quot; table=&quot;cms_product&quot; modelid=&quot;12&quot; order=&quot;sort asc&quot; group=&quot;title asc&quot;&gt;\r\n &lt;a href=&quot;/384/index.html?keywords={$v.title}&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;right_list_title&quot;&gt;首页&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/397/1.html&quot; class=&quot;right_list_title&quot;&gt;品牌中心&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/186/1.html&quot; class=&quot;right_list_title&quot;&gt;行业解决方案&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;185&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{$v.class_url}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:caturl(387)}&quot; class=&quot;right_list_title&quot;&gt;经销商专区&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;right_list_title&quot;&gt;服务支持&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:pageurl(3)}&quot; class=&quot;right_list_title&quot;&gt;走进IMI精密流体&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('16','5','1569308934','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;http://p.qiao.baidu.com/cps/chat?siteId=13877276&amp;userId=25374722&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec7c8cc0e.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec88e0a85.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-820-9609&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:sales@imi-precision.com.cn&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec92f3b72.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;sales@imi-precision.com.cn&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎来到埃迈诺冠在线商城!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-820-9609&lt;/span&gt;&lt;/a&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/logout\')}&quot; class=&quot;fl&quot; onClick=&quot;return confirm(\'退\')&quot;&gt;退出&lt;/a&gt; \r\n &lt;else /&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopCart/index\')}&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;{$shopCartNum}&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt;\r\n &lt;a href=&quot;/index.php/Home/Search/filter/&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn2.png&quot; /&gt;选型工具&lt;/a&gt;\r\n &lt;form action=&quot;/index.php/Home/Search/index/&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords_all&quot; value=&quot;{$_GET[\'keywords_all\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;执行元件&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(11)}&quot; class=&quot;fl&quot;&gt;气缸&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;6&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(30)}&quot; class=&quot;fl&quot;&gt;阀&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(31)}&quot; class=&quot;fl&quot;&gt;阀岛&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;7&quot; pid=&quot;array(\'neq\',0)&quot; level=&quot;array(\'lt\',4)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(88)}&quot; class=&quot;fl&quot;&gt;压力开关&lt;/a&gt;\r\n &lt;span class=&quot;fl&quot;&gt;/&lt;/span&gt;\r\n &lt;a href=&quot;{:caturl(89)}&quot; class=&quot;fl&quot;&gt;气动压力开关&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;8&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(98)}&quot; class=&quot;fl&quot;&gt;空气处理设备&lt;span&gt;/&lt;/span&gt;过滤器、调压阀、油雾器&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;9&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(174)}&quot; class=&quot;fl&quot;&gt;接头&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;10&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(403)}&quot; class=&quot;fl&quot;&gt;气管&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; modelid=&quot;11&quot; pid=&quot;array(\'neq\',0)&quot; order=&quot;sort asc&quot; is_last=&quot;array(\'eq\',0)&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl(384)}&quot; class=&quot;fl&quot;&gt;球阀&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;title,id,catid&quot; table=&quot;cms_product&quot; modelid=&quot;12&quot; order=&quot;sort asc&quot; group=&quot;title asc&quot;&gt;\r\n &lt;a href=&quot;/384/index.html?keywords={$v.title}&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/cmsinfo&gt; \r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;right_list_title&quot;&gt;首页&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/397/1.html&quot; class=&quot;right_list_title&quot;&gt;品牌中心&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/186/1.html&quot; class=&quot;right_list_title&quot;&gt;行业解决方案&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;185&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{$v.class_url}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:caturl(387)}&quot; class=&quot;right_list_title&quot;&gt;经销商专区&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;right_list_title&quot;&gt;服务支持&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:pageurl(3)}&quot; class=&quot;right_list_title&quot;&gt;走进IMI精密流体&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('17','1','1569310465','1','admin','123'), ('18','1','1569310509','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n\r\n&lt;/head&gt;\r\n&lt;style&gt;\r\n.pc_top .pc_top_content .top_content_left .content_left_nav .left_nav_left .nav_left_down{ display:block;}\r\n\r\n&lt;/style&gt;\r\n&lt;body&gt;\r\n\r\n\r\n[!--public.header--]\r\n&lt;div class=&quot;banner&quot;&gt;\r\n &lt;div class=&quot;slider&quot;&gt;\r\n &lt;cmsinfo catid=&quot;405&quot; checked=&quot;1&quot; limit=&quot;20&quot; order=&quot;sort asc&quot; &gt;\r\n &lt;div class=&quot;item&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;\r\n \r\n &lt;if condition=&quot;$v.title eq \'\'&quot;&gt;\r\n &lt;else /&gt;\r\n &lt;dd&gt;{$v.title}&lt;/dd&gt;\r\n &lt;/if&gt;\r\n &lt;/a&gt;\r\n \r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n \r\n &lt;/div&gt;\r\n &lt;div class=&quot;banner_content&quot;&gt;\r\n &lt;div class=&quot;login&quot;&gt;\r\n &lt;div class=&quot;login_top&quot;&gt;\r\n &lt;div class=&quot;login_top_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn3.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;p&gt;Hi!~您好!&lt;/p&gt;\r\n &lt;span&gt;欢迎光临埃迈诺冠&lt;/span&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_top_bottom clear&quot;&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl on&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;else /&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl on&quot;&gt;注册&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news&quot;&gt;\r\n &lt;div class=&quot;login_news_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;快讯&lt;/dd&gt;\r\n &lt;a href=&quot;/399/index.html&quot; class=&quot;fr&quot;&gt;更多&lt;span class=&quot;fa fa-angle-right&quot;&gt;&lt;/span&gt;&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news_content&quot;&gt;\r\n \r\n &lt;cmsinfo catid=&quot;399&quot; checked=&quot;1&quot; limit=&quot;20&quot; order=&quot;newstime desc&quot; &gt;\r\n &lt;div class=&quot;news_content_list on clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;{$v.pagetitle}&lt;/span&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;fl&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_bottom clear&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn4.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;联系我们&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;http://p.qiao.baidu.com/cps/chat?siteId=13877276&amp;userId=25374722&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn5.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/page/2.html#message&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn6.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;客户留言&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n jQuery(&quot;.indexProduct_content_txt&quot;).slide({mainCell:&quot;.content_txt_right&quot;,autoPlay:false,titCell:&quot;.content_txt_left dt a&quot;,trigger:\'click\'});\r\n&lt;/script&gt;\r\n&lt;!--首页banner图--&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n $(\'.slider\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n //首页banner图\r\n $(\'.content_left_img\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:3000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n touchMove: true,\r\n swipe: true,\r\n //fade: true,\r\n //cssEase: \'linear\',\r\n asNavFor: &quot;.content_left_txt dd&quot;,\r\n responsive: [ //响应式\r\n {\r\n breakpoint: 480,\r\n settings: {\r\n arrows: false,\r\n slidesToShow: 1 ,//显示个数\r\n }\r\n }\r\n ]\r\n });\r\n\r\n&lt;/script&gt;\r\n\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('19','1','1569310669','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n\r\n&lt;/head&gt;\r\n&lt;style&gt;\r\n.pc_top .pc_top_content .top_content_left .content_left_nav .left_nav_left .nav_left_down{ display:block;}\r\n\r\n&lt;/style&gt;\r\n&lt;body&gt;\r\n\r\n\r\n[!--public.header--]\r\n&lt;div class=&quot;banner&quot;&gt;\r\n &lt;div class=&quot;slider&quot;&gt;\r\n &lt;cmsinfo catid=&quot;405&quot; checked=&quot;1&quot; limit=&quot;20&quot; order=&quot;sort asc&quot; &gt;\r\n &lt;div class=&quot;item&quot;&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;\r\n \r\n &lt;if condition=&quot;$v.title eq \'\'&quot;&gt;\r\n &lt;else /&gt;\r\n &lt;dd&gt;{$v.title}&lt;/dd&gt;\r\n &lt;/if&gt;\r\n &lt;/a&gt;\r\n \r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n \r\n &lt;/div&gt;\r\n &lt;div class=&quot;banner_content&quot;&gt;\r\n &lt;div class=&quot;login&quot;&gt;\r\n &lt;div class=&quot;login_top&quot;&gt;\r\n &lt;div class=&quot;login_top_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn3.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;p&gt;Hi!~您好!&lt;/p&gt;\r\n &lt;span&gt;欢迎光临埃迈诺冠&lt;/span&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_top_bottom clear&quot;&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl on&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;else /&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl on&quot;&gt;注册&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news&quot;&gt;\r\n &lt;div class=&quot;login_news_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;快讯&lt;/dd&gt;\r\n &lt;a href=&quot;/11/index.html&quot; class=&quot;fr&quot;&gt;更多&lt;span class=&quot;fa fa-angle-right&quot;&gt;&lt;/span&gt;&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news_content&quot;&gt;\r\n \r\n &lt;cmsinfo catid=&quot;11&quot; checked=&quot;1&quot; limit=&quot;20&quot; order=&quot;newstime desc&quot; &gt;\r\n &lt;div class=&quot;news_content_list on clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;{$v.pagetitle}&lt;/span&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;fl&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_bottom clear&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn4.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;联系我们&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;http://p.qiao.baidu.com/cps/chat?siteId=13877276&amp;userId=25374722&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn5.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/page/2.html#message&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn6.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;客户留言&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n jQuery(&quot;.indexProduct_content_txt&quot;).slide({mainCell:&quot;.content_txt_right&quot;,autoPlay:false,titCell:&quot;.content_txt_left dt a&quot;,trigger:\'click\'});\r\n&lt;/script&gt;\r\n&lt;!--首页banner图--&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n $(\'.slider\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n //首页banner图\r\n $(\'.content_left_img\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:3000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n touchMove: true,\r\n swipe: true,\r\n //fade: true,\r\n //cssEase: \'linear\',\r\n asNavFor: &quot;.content_left_txt dd&quot;,\r\n responsive: [ //响应式\r\n {\r\n breakpoint: 480,\r\n settings: {\r\n arrows: false,\r\n slidesToShow: 1 ,//显示个数\r\n }\r\n }\r\n ]\r\n });\r\n\r\n&lt;/script&gt;\r\n\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('20','1','1569310708','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n\r\n&lt;/head&gt;\r\n&lt;style&gt;\r\n.pc_top .pc_top_content .top_content_left .content_left_nav .left_nav_left .nav_left_down{ display:block;}\r\n\r\n&lt;/style&gt;\r\n&lt;body&gt;\r\n\r\n\r\n[!--public.header--]\r\n&lt;div class=&quot;banner&quot;&gt;\r\n &lt;div class=&quot;slider&quot;&gt;\r\n \r\n &lt;cmsinfo table=&quot;ad&quot; adid=&quot;7&quot; status=&quot;1&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;div class=&quot;item&quot;&gt;\r\n &lt;a href=&quot;{$v.link}&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;\r\n\r\n &lt;if condition=&quot;$v.name eq \'\'&quot;&gt;\r\n &lt;else /&gt;\r\n &lt;dd&gt;{$v.name}&lt;/dd&gt;\r\n &lt;/if&gt;\r\n &lt;/a&gt;\r\n\r\n &lt;/div&gt; \r\n\r\n &lt;/cmsinfo&gt; \r\n\r\n \r\n &lt;/div&gt;\r\n &lt;div class=&quot;banner_content&quot;&gt;\r\n &lt;div class=&quot;login&quot;&gt;\r\n &lt;div class=&quot;login_top&quot;&gt;\r\n &lt;div class=&quot;login_top_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn3.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;p&gt;Hi!~您好!&lt;/p&gt;\r\n &lt;span&gt;欢迎光临埃迈诺冠&lt;/span&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_top_bottom clear&quot;&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl on&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;else /&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl on&quot;&gt;注册&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news&quot;&gt;\r\n &lt;div class=&quot;login_news_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;快讯&lt;/dd&gt;\r\n &lt;a href=&quot;/11/index.html&quot; class=&quot;fr&quot;&gt;更多&lt;span class=&quot;fa fa-angle-right&quot;&gt;&lt;/span&gt;&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_news_content&quot;&gt;\r\n \r\n &lt;cmsinfo catid=&quot;11&quot; checked=&quot;1&quot; limit=&quot;20&quot; order=&quot;newstime desc&quot; &gt;\r\n &lt;div class=&quot;news_content_list on clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;{$v.pagetitle}&lt;/span&gt;\r\n &lt;a href=&quot;{$v.titleurl}&quot; class=&quot;fl&quot;&gt;{$v.title}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;login_bottom clear&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn4.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;联系我们&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;http://p.qiao.baidu.com/cps/chat?siteId=13877276&amp;userId=25374722&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn5.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/page/2.html#message&quot; class=&quot;login_bottom_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/public/skin/images/bn6.png&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt&gt;客户留言&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/slick.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/plugin.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n jQuery(&quot;.indexProduct_content_txt&quot;).slide({mainCell:&quot;.content_txt_right&quot;,autoPlay:false,titCell:&quot;.content_txt_left dt a&quot;,trigger:\'click\'});\r\n&lt;/script&gt;\r\n&lt;!--首页banner图--&gt;\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\n $(\'.slider\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:5000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n })\r\n //首页banner图\r\n $(\'.content_left_img\').slick({\r\n autoplay:true,//自动播放\r\n slidesToShow: 1 ,//显示个数\r\n slidesToScroll: 1,//滚动个数\r\n accessibility:true,//启用Tab键和箭头键导航\r\n autoplaySpeed:3000,//自动播放间隔\r\n arrows: false,\r\n dots: true,\r\n speed: 500,\r\n infinite: true, //循环播放\r\n touchThreshold: 100,\r\n pauseOnHover: true, //速比移动上去禁止滚动\r\n touchMove: true,\r\n swipe: true,\r\n //fade: true,\r\n //cssEase: \'linear\',\r\n asNavFor: &quot;.content_left_txt dd&quot;,\r\n responsive: [ //响应式\r\n {\r\n breakpoint: 480,\r\n settings: {\r\n arrows: false,\r\n slidesToShow: 1 ,//显示个数\r\n }\r\n }\r\n ]\r\n });\r\n\r\n&lt;/script&gt;\r\n\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('21','5','1569310744','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;#&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec7c8cc0e.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec88e0a85.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-888-8888&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:service@jijinweb.com&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec92f3b72.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;service@jijinweb.com&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎访问我们的网站!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-888-8888&lt;/span&gt;&lt;/a&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/logout\')}&quot; class=&quot;fl&quot; onClick=&quot;return confirm(\'退\')&quot;&gt;退出&lt;/a&gt; \r\n &lt;else /&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopCart/index\')}&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;{$shopCartNum}&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt; \r\n &lt;form action=&quot;/index.php/Home/Search/index/&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords_all&quot; value=&quot;{$_GET[\'keywords_all\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;15&quot; status=&quot;1&quot; order=&quot;sort asc,catid asc&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; pid=&quot;$v[catid]&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n\r\n\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;right_list_title&quot;&gt;首页&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/397/1.html&quot; class=&quot;right_list_title&quot;&gt;品牌中心&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/186/1.html&quot; class=&quot;right_list_title&quot;&gt;行业解决方案&lt;/a&gt;\r\n &lt;div class=&quot;right_list_down clear&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;185&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{$v.class_url}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:caturl(387)}&quot; class=&quot;right_list_title&quot;&gt;经销商专区&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;right_list_title&quot;&gt;服务支持&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;nav_right_list fl&quot;&gt;\r\n &lt;a href=&quot;{:pageurl(3)}&quot; class=&quot;right_list_title&quot;&gt;走进IMI精密流体&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('22','5','1569310818','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;#&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec7c8cc0e.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec88e0a85.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-888-8888&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:service@jijinweb.com&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec92f3b72.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;service@jijinweb.com&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎访问我们的网站!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-888-8888&lt;/span&gt;&lt;/a&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/logout\')}&quot; class=&quot;fl&quot; onClick=&quot;return confirm(\'退\')&quot;&gt;退出&lt;/a&gt; \r\n &lt;else /&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopCart/index\')}&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;{$shopCartNum}&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt; \r\n &lt;form action=&quot;/index.php/Home/Search/index/&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords_all&quot; value=&quot;{$_GET[\'keywords_all\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;15&quot; status=&quot;1&quot; order=&quot;sort asc,catid asc&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; pid=&quot;$v[catid]&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n\r\n\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('23','9','1569311770','1','admin','&lt;div class=&quot;indexProduct footer&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;footer_top clear&quot;&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg8.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;品牌直销&lt;/dd&gt;\r\n &lt;dt&gt;原厂直销,一站直营&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg9.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;一对一客服&lt;/dd&gt;\r\n &lt;dt&gt;选型询价,快速响应&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg10.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;货期保障&lt;/dd&gt;\r\n &lt;dt&gt;原厂直发 ,货期无忧&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_top_list fl clear&quot;&gt;\r\n &lt;div class=&quot;top_list_icon fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bg11.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;div class=&quot;top_list_txt fl&quot;&gt;\r\n &lt;dd&gt;售后无忧&lt;/dd&gt;\r\n &lt;dt&gt;超百名技术工程师技术支持&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_bottom clear&quot;&gt;\r\n &lt;div class=&quot;footer_bottom_left fl clear&quot;&gt;\r\n &lt;div class=&quot;bottom_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;/index.php?m=Member&amp;c=Public&amp;a=login&quot;&gt;注册登录&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;a href=&quot;/index.php?m=Member&amp;c=Public&amp;a=register&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;a href=&quot;/index.php?m=Member&amp;c=Public&amp;a=login&quot; class=&quot;fl&quot;&gt;登录&lt;/a&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;/page/2.html&quot;&gt;服务支持&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;a href=&quot;/page/2.html&quot; class=&quot;fl&quot;&gt;联系我们&lt;/a&gt;\r\n &lt;a href=&quot;/388/index.html&quot; class=&quot;fl&quot;&gt;下载中心&lt;/a&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;/index.php/Home/Search/filter/&quot;&gt;快速链接&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;a href=&quot;/index.php/Home/Search/filter/&quot; class=&quot;fl&quot;&gt;我要采购&lt;/a&gt;\r\n &lt;a href=&quot;/387/index.html&quot; class=&quot;fl&quot;&gt;经销商查询&lt;/a&gt;\r\n &lt;a href=&quot;/186/1.html&quot; class=&quot;fl&quot;&gt;行业应用&lt;/a&gt;\r\n &lt;a href=&quot;/404/index.html&quot; class=&quot;fl&quot;&gt;精彩案例&lt;/a&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;/page/3.html&quot;&gt;关于我们&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;a href=&quot;/page/3.html&quot; class=&quot;fl&quot;&gt;公司介绍&lt;/a&gt;\r\n &lt;a href=&quot;/399/index.html&quot; class=&quot;fl&quot;&gt;新闻资讯&lt;/a&gt;\r\n &lt;a href=&quot;/page/4.html&quot; class=&quot;fl&quot;&gt;企业文化&lt;/a&gt;\r\n &lt;a href=&quot;/400/index.html&quot; class=&quot;fl&quot;&gt;销售网络&lt;/a&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;bottom_left_list fl&quot;&gt;\r\n &lt;dd&gt;&lt;a href=&quot;/page/2.html&quot;&gt;联系我们&lt;/a&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;\r\n &lt;p&gt;直线咨询热线021-24161800&lt;/p&gt;\r\n &lt;p&gt;官方热线4008209609&lt;/p&gt;\r\n &lt;p&gt;工作时间:周一至周五 830-1700&lt;/p&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;footer_bottom_right fl clear&quot;&gt;\r\n &lt;dt class=&quot;clear&quot;&gt;&lt;img src=&quot;/public/skin/images/bg7.jpg&quot; /&gt;&lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n&lt;div class=&quot;indexProduct Copyright&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear&quot;&gt;\r\n &lt;div class=&quot;Copyright_left fl&quot;&gt;Copyright©2018-2022 埃迈诺冠商贸(上海)有限公司版权所有 &lt;a style=&quot;font-size: 12px;color: #111; margin-left:15px;&quot; href=&quot;http://www.miitbeian.gov.cn/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;沪ICP备19026278号-1&lt;/a&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;mo_footer_height&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;mo_footer clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-home&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;首页&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/index.php/Home/Search/filter/&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-navicon&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;选型&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/index.php?m=Shop&amp;c=ShopCart&amp;a=index&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-shopping-cart&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;购物车&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;a href=&quot;/index.php?m=Member&amp;c=Index&amp;a=index&quot; class=&quot;mo_footer_list fl clear&quot;&gt;\r\n &lt;dd class=&quot;&quot;&gt;&lt;i class=&quot;fa fa-user&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;&quot;&gt;我的&lt;/dt&gt;\r\n &lt;/a&gt;\r\n&lt;/div&gt;\r\n\r\n\r\n\r\n\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script&gt;\r\n function auth_change(){\r\n $(&quot;html,body&quot;).animate({scrollTop: 0},&quot;slow&quot;);\r\n }\r\n&lt;/script&gt;'), ('24','5','1569311925','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;#&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec7c8cc0e.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec88e0a85.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-888-8888&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:service@jijinweb.com&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/d/image/20190830/5d68ec92f3b72.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;service@jijinweb.com&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎访问我们的网站!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-888-8888&lt;/span&gt;&lt;/a&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/logout\')}&quot; class=&quot;fl&quot; onClick=&quot;return confirm(\'退\')&quot;&gt;退出&lt;/a&gt; \r\n &lt;else /&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopCart/index\')}&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;{$shopCartNum}&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt; \r\n &lt;form action=&quot;/15/index.html&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords&quot; value=&quot;{$_GET[\'keywords\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;15&quot; status=&quot;1&quot; order=&quot;sort asc,catid asc&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; pid=&quot;$v[catid]&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n\r\n\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('25','5','1569311956','1','admin','&lt;div class=&quot;xf&quot;&gt;\r\n &lt;div class=&quot;xf_nei&quot;&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;#&quot; target=&quot;_blank&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/Public/skin/image/chat.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;在线咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/Public/skin/image/mobile.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电话咨询&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;400-888-8888&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot;&gt;\r\n &lt;a href=&quot;mailto:service@jijinweb.com&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;img src=&quot;/Public/skin/image/email.png&quot;&gt;&lt;/dd&gt;\r\n &lt;dt&gt;电子邮箱&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;div class=&quot;xf_xun_xiala animated fadeInLeft&quot;&gt;service@jijinweb.com&lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;xf_xun&quot; onclick=&quot;auth_change()&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;xf_xun_title&quot;&gt;\r\n &lt;dd&gt;&lt;i class=&quot;fa fa-caret-up&quot;&gt;&lt;/i&gt;&lt;/dd&gt;\r\n &lt;dt&gt;TOP&lt;/dt&gt;\r\n &lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top pc_deader&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;pc_deader_left fl&quot;&gt;您好,欢迎访问我们的网站!&lt;/div&gt;\r\n &lt;div class=&quot;pc_deader_right fr clear&quot;&gt;\r\n &lt;a href=&quot;javascript:;&quot; class=&quot;fl&quot;&gt;全国热线:&lt;span&gt;400-888-8888&lt;/span&gt;&lt;/a&gt;\r\n &lt;if condition=&quot;$Think.session.member.member_id gt 0&quot;&gt;\r\n &lt;a href=&quot;{:U(\'Member/Index/index\')}&quot; class=&quot;fl&quot;&gt;个人中心&lt;/a&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopOrder/index\')}&quot; class=&quot;fl&quot;&gt;我的订单&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/logout\')}&quot; class=&quot;fl&quot; onClick=&quot;return confirm(\'退\')&quot;&gt;退出&lt;/a&gt; \r\n &lt;else /&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/login\')}&quot; class=&quot;fl&quot;&gt;请登录&lt;/a&gt; \r\n &lt;a href=&quot;{:U(\'Member/Public/register\')}&quot; class=&quot;fl&quot;&gt;注册&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;a href=&quot;{:U(\'Shop/ShopCart/index\')}&quot; class=&quot;fl&quot;&gt;&lt;img src=&quot;/public/skin/images/bn89.png&quot;&gt;购物车(&lt;span&gt;{$shopCartNum}&lt;/span&gt;)&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=&quot;pc_top&quot;&gt;\r\n &lt;div class=&quot;pc_top_content clear&quot;&gt;\r\n &lt;div class=&quot;top_content_left fl&quot;&gt;\r\n &lt;div class=&quot;content_left_top clear&quot;&gt;\r\n &lt;a href=&quot;/&quot; class=&quot;left_top_logo fl&quot;&gt;&lt;img src=&quot;/public/skin/images/logo.png&quot; /&gt;&lt;/a&gt;\r\n &lt;div class=&quot;left_top_search fr&quot;&gt;\r\n &lt;div class=&quot;top_search_title clear&quot;&gt; \r\n &lt;form action=&quot;/15/index.html&quot; method=&quot;get&quot; onsubmit=&quot;return check_search()&quot; class=&quot;search_title_form fl clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;keywords&quot; value=&quot;{$_GET[\'keywords\']}&quot; id=&quot;global_search&quot; placeholder=&quot;请输入您要搜索的产品名称、品牌或型号&quot; /&gt;&lt;/dd&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;搜索&quot; /&gt;&lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_search_content clear&quot;&gt;\r\n &lt;?php\r\n $hotKeywords=C(&quot;setting.hotKeywords&quot;);\r\n $hotKeywords_arr=explode(&quot;\\r\\n&quot;,$hotKeywords);\r\n foreach($hotKeywords_arr as $v){\r\n echo \'&lt;a href=&quot;/index.php/Home/Search/index/?keywords_all=\'.$v.\'&quot; class=&quot;search_content_list fl&quot;&gt;\'.$v.\'&lt;/a&gt;\';\r\n }\r\n ?&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_left_nav clear&quot;&gt;\r\n &lt;div class=&quot;left_nav_left fl&quot;&gt;\r\n &lt;div class=&quot;nav_left_title&quot;&gt;全部商品分类&lt;/div&gt;\r\n &lt;div class=&quot;nav_left_down&quot;&gt;\r\n &lt;cmsinfo table=&quot;cat&quot; pid=&quot;15&quot; status=&quot;1&quot; order=&quot;sort asc,catid asc&quot;&gt;\r\n &lt;div class=&quot;left_down_list&quot;&gt;\r\n &lt;div class=&quot;down_list_title clear&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}&quot; class=&quot;fl&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;down_list_down&quot;&gt;\r\n &lt;div class=&quot;list_down_list clear&quot;&gt;\r\n &lt;dt class=&quot;fl&quot;&gt;\r\n &lt;cmsinfo field=&quot;name,catid&quot; table=&quot;cat&quot; pid=&quot;$v[catid]&quot; order=&quot;sort asc&quot;&gt;\r\n &lt;a href=&quot;{:caturl($v[catid])}}&quot;&gt;{$v.name}&lt;/a&gt;\r\n &lt;/cmsinfo&gt;\r\n &lt;/dt&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/cmsinfo&gt;\r\n\r\n\r\n \r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;left_nav_right fl clear&quot;&gt;\r\n\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;top_content_right fr&quot;&gt;&lt;img src=&quot;/public/skin/images/bg1.jpg&quot; /&gt;&lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=&quot;hight&quot;&gt;&lt;/div&gt;&lt;!-- #EndLibraryItem --&gt;'), ('26','8','1571376635','1','admin','&lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n&lt;li&gt;&lt;a href=&quot;{$v.titleurl}&quot;&gt;{$v.price}&lt;/a&gt; [{$v.newstime|date=&quot;Y年m月d日&quot;,###}]&lt;/li&gt;\r\n&lt;/foreach&gt; '), ('27','8','1571377051','1','admin','&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;h1&gt;[!--pagetitle--]&lt;/h1&gt;\r\n&lt;table width=&quot;400&quot; border=&quot;1&quot;&gt;\r\n &lt;tbody&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;tr&gt;\r\n &lt;td&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/td&gt;\r\n &lt;td&gt;{$v.newstime|date=&quot;Y年m月d日&quot;,###}&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/foreach&gt; \r\n &lt;/tbody&gt;\r\n&lt;/table&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;\r\n'), ('28','8','1571377169','1','admin','&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;h1&gt;[!--pagetitle--]&lt;/h1&gt;\r\n&lt;table width=&quot;400&quot; border=&quot;1&quot;&gt;\r\n &lt;tbody&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;tr&gt;\r\n &lt;td&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/td&gt;\r\n &lt;td&gt;{$v.newstime|date=&quot;Y年m月d日&quot;,###}&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/foreach&gt; \r\n &lt;/tbody&gt;\r\n&lt;/table&gt;\r\n&lt;H2&gt;[!--listpage--]&lt;/H2&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;\r\n'), ('29','7','1571626169','1','admin','&lt;?php\r\nprint_r($selfcat);\r\n?&gt;'), ('30','7','1571711720','1','admin','&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;{:htmlspecialchars_decode($r[newstext])}\r\n&lt;/body&gt;\r\n&lt;/html&gt;\r\n'), ('31','6','1571970592','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt; \r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav PSelection_nav&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;indexProduct UserCenter PSelection&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;PSelection_title&quot;&gt;\r\n &lt;?php\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'type_no\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[type_no] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'type_no\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'pro_group\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;产品系列&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n \r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[pro_group] eq $v&quot;&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\')}&quot; class=&quot;on&quot;&gt;{$v} &lt;div class=&quot;p_close&quot;&gt;&lt;/div&gt;&lt;/a&gt;\r\n &lt;else/&gt;\r\n &lt;a href=&quot;{:reurl(\'pro_group\',$v)}&quot;&gt;{$v}&lt;/a&gt;\r\n &lt;/if&gt; \r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n ?&gt; \r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_search clear&quot;&gt;\r\n &lt;div class=&quot;PSelection_search_right fr&quot;&gt;\r\n &lt;form action=&quot;{:caturl($_GET[catid])}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;精确查询&lt;/dd&gt;\r\n &lt;dt class=&quot;fl clear&quot;&gt;\r\n &lt;input type=&quot;text&quot; name=&quot;keywords&quot; value=&quot;{$_GET[keywords]}&quot; placeholder=&quot;请输入您要搜索的商品名、订货号、型号&quot; class=&quot;PSelection_search_txt fl&quot; /&gt;\r\n &lt;input type=&quot;submit&quot; value=&quot;&quot; class=&quot;PSelection_search_submit fr&quot; /&gt;\r\n &lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n\r\n &lt;?php\r\n if(!$data){\r\n ?&gt;\r\n &lt;div class=&quot;error-search-title&quot;&gt;非常抱歉没有找到&lt;i&gt;“{$keywords}”!&lt;/i&gt;&lt;/div&gt;\r\n &lt;?php\r\n }else{\r\n ?&gt;\r\n &lt;div class=&quot;PSelection_bottom&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_txter&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品图片&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品名称&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;系列&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;型号&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;购买&lt;/dd&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_bottom_content&quot;&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;div class=&quot;bottom_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_img fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.pro_group}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.type_no}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']} / 个&lt;/p&gt;\r\n &lt;if condition=&quot;$v[\'price2\']&quot;&gt;&lt;s&gt;¥{$v.price} / 个&lt;/s&gt;&lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input class=&quot;quantity fl&quot; name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/span&gt;\r\n &lt;a onclick=&quot;add_shop_cart2(\'{$v.id}\',this)&quot; class=&quot;fl&quot;&gt;购买&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;page vertical&quot;&gt;[!--listpage--]&lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;?php \r\n }\r\n ?&gt; \r\n \r\n \r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('32','6','1571970678','1','admin','&lt;!DOCTYPE html&gt;\r\n&lt;html class=&quot;&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html&quot; /&gt;\r\n&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\r\n&lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot; /&gt;\r\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]-[!--sitename--]&lt;/title&gt;\r\n&lt;meta name=&quot;keywords&quot; content=&quot;[!--pagekey--]&quot;&gt;\r\n&lt;meta name=&quot;description&quot; content=&quot;[!--pagedes--]&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/animate.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/nav2.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;/public/skin/css/slick-min.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;\r\n&lt;link href=&quot;/public/skin/css/global.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;/head&gt;\r\n&lt;body&gt;\r\n[!--public.header--]\r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav productDetails_nav&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;{:nav()}&lt;/div&gt;\r\n&lt;/div&gt; \r\n \r\n&lt;div class=&quot;indexProduct UserCenter_nav PSelection_nav&quot;&gt;&lt;/div&gt;\r\n&lt;div class=&quot;indexProduct UserCenter PSelection&quot;&gt;\r\n &lt;div class=&quot;indexProduct_content clear all&quot;&gt;\r\n &lt;div class=&quot;PSelection_title&quot;&gt;\r\n &lt;?php\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'type_no\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;型号&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[type_no] eq $v&quot;&gt;\r\n \r\n &lt;else/&gt;\r\n \r\n &lt;/if&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n $filter_arr=\\Home\\Controller\\ListController::filterData($table,$where,\'pro_group\');\r\n if($filter_arr){\r\n ?&gt; \r\n &lt;div class=&quot;PSelection_title_list clear&quot;&gt;\r\n &lt;div class=&quot;title_list_left fl&quot;&gt;产品系列&lt;/div&gt;\r\n &lt;div class=&quot;title_list_right fl&quot;&gt;\r\n \r\n &lt;foreach name=&quot;filter_arr&quot; item=&quot;v&quot;&gt;\r\n &lt;if condition=&quot;$_GET[pro_group] eq $v&quot;&gt;\r\n \r\n &lt;else/&gt;\r\n \r\n &lt;/if&gt; \r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;?php\r\n }\r\n ?&gt; \r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_search clear&quot;&gt;\r\n &lt;div class=&quot;PSelection_search_right fr&quot;&gt;\r\n &lt;form action=&quot;{:caturl($_GET[catid])}&quot; class=&quot;clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;精确查询&lt;/dd&gt;\r\n &lt;dt class=&quot;fl clear&quot;&gt;\r\n &lt;input type=&quot;text&quot; name=&quot;keywords&quot; value=&quot;{$_GET[keywords]}&quot; placeholder=&quot;请输入您要搜索的商品名、订货号、型号&quot; class=&quot;PSelection_search_txt fl&quot; /&gt;\r\n &lt;input type=&quot;submit&quot; value=&quot;&quot; class=&quot;PSelection_search_submit fr&quot; /&gt;\r\n &lt;/dt&gt;\r\n &lt;/form&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n\r\n \r\n\r\n &lt;?php\r\n if(!$data){\r\n ?&gt;\r\n &lt;div class=&quot;error-search-title&quot;&gt;非常抱歉没有找到&lt;i&gt;“{$keywords}”!&lt;/i&gt;&lt;/div&gt;\r\n &lt;?php\r\n }else{\r\n ?&gt;\r\n &lt;div class=&quot;PSelection_bottom&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_txter&quot;&gt;\r\n &lt;div class=&quot;PSelection_bottom_title clear&quot;&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品图片&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;商品名称&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;系列&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;型号&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;价格&lt;/dd&gt;\r\n &lt;dd class=&quot;fl&quot;&gt;购买&lt;/dd&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;PSelection_bottom_content&quot;&gt;\r\n &lt;foreach name=&quot;data&quot; item=&quot;v&quot;&gt;\r\n &lt;div class=&quot;bottom_content_list clear&quot;&gt;\r\n &lt;div class=&quot;content_list_img fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;{$v.thumb}&quot; /&gt;&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;&lt;a href=&quot;{$v.titleurl}&quot; target=&quot;_blank&quot;&gt;{$v.title}&lt;/a&gt;&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.pro_group}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;{$v.type_no}&lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl&quot;&gt;\r\n &lt;p&gt;¥{$v[\'price2\']?$v[\'price2\']:$v[\'price\']} / 个&lt;/p&gt;\r\n &lt;if condition=&quot;$v[\'price2\']&quot;&gt;&lt;s&gt;¥{$v.price} / 个&lt;/s&gt;&lt;/if&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;content_list_title fl clear&quot;&gt;\r\n &lt;span class=&quot;fl&quot;&gt;\r\n &lt;i class=&quot;min fl&quot; /&gt;-&lt;/i&gt;\r\n &lt;input class=&quot;quantity fl&quot; name=&quot;&quot; type=&quot;number&quot; value=&quot;1&quot; /&gt;\r\n &lt;i class=&quot;add fl&quot; /&gt;+&lt;/i&gt;\r\n &lt;/span&gt;\r\n &lt;a onclick=&quot;add_shop_cart2(\'{$v.id}\',this)&quot; class=&quot;fl&quot;&gt;购买&lt;/a&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/foreach&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;div class=&quot;page vertical&quot;&gt;[!--listpage--]&lt;/div&gt;\r\n &lt;/div&gt;\r\n \r\n &lt;?php \r\n }\r\n ?&gt; \r\n \r\n \r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n[!--public.footer--]\r\n&lt;script type=&quot;text/javascript&quot; src=&quot;/public/skin/js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/global.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/Home/js/shop.js&quot;&gt;&lt;/script&gt;\r\n&lt;script src=&quot;/public/skin/js/nav.js&quot;&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Home/js/globals.js\'&gt;&lt;/script&gt;\r\n&lt;script type=\'text/javascript\' src=\'/Public/Admin/layer/layer.js\'&gt;&lt;/script&gt;\r\n&lt;/body&gt;\r\n&lt;/html&gt;'), ('33','7','1577764639','1','admin','&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;[!--pagetitle--]&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;h1&gt;{$r.title}&lt;/h1&gt;\r\n&lt;h2&gt;{$r.newstime|date=&quot;Y年m月d日&quot;,###}&lt;/h2&gt;\r\n{:htmlspecialchars_decode($r[newstext])}\r\n&lt;/body&gt;\r\n&lt;/html&gt;\r\n');
INSERT INTO `db_user` VALUES ('1','0','admin','149fc5eec119e01e59c0de43cb96132d','1','','','1','36','192.168.1.3','1579051266',''), ('2','0','jijin','bc990d9fd4a97782f4a1bee51390b7b7','1','','','1','11','192.168.1.3','1567078042','');
INSERT INTO `db_user_log` VALUES ('163','1','admin','1569234796','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=LinkCat&a=add&','192.168.1.3','db_link_cat','17',''), ('164','1','admin','1569234831','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=LinkCat&a=editor&catid=17','192.168.1.3','db_link_cat','17',''), ('165','1','admin','1569234852','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=LinkCat&a=delete&catid=17','192.168.1.3','db_link_cat','17',''), ('166','1','admin','1569234856','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=LinkCat&a=delete&catid=16','192.168.1.3','db_link_cat','16',''), ('167','1','admin','1569234857','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=LinkCat&a=delete&catid=15','192.168.1.3','db_link_cat','15',''), ('168','1','admin','1569234859','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=LinkCat&a=delete&catid=14','192.168.1.3','db_link_cat','14',''), ('169','1','admin','1569234901','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Link&a=add\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=Link&a=index\' class=\'\'>友情链接</a><a class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Link&a=add','192.168.1.3','db_link','6',''), ('170','1','admin','1569234904','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Link&a=editor\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=Link&a=index\' class=\'\'>友情链接</a><a class=\'\'>编辑信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Link&a=editor&id=6','192.168.1.3','db_link','6',''), ('171','1','admin','1569234908','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Link&a=delete\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=Link&a=index\' class=\'\'>友情链接</a><a class=\'\'>删除信息</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Link&a=delete&ids=6','192.168.1.3','db_link','6',''), ('172','1','admin','1569235046','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=291','192.168.1.3','db_node','338',''), ('173','1','admin','1569235082','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=338','192.168.1.3','db_node','338',''), ('174','1','admin','1569235102','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=del\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>删除菜单</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=del&id=338','192.168.1.3','db_node','338',''), ('175','1','admin','1569235111','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=del\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>删除菜单</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=del&id=337','192.168.1.3','db_node','337',''), ('176','1','admin','1569235129','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=123','192.168.1.3','db_node','339',''), ('177','1','admin','1569235264','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Model&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=Model&a=index\' class=\'\'>数据模型管理</a><a class=\'\'>添加模型</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Model&a=add','192.168.1.3','db_model','7',''), ('178','1','admin','1569235275','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Model&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=Model&a=index\' class=\'\'>数据模型管理</a><a class=\'\'>添加模型</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Model&a=add','192.168.1.3','db_model','8',''), ('179','1','admin','1569235278','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Model&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=Model&a=index\' class=\'\'>数据模型管理</a><a class=\'\'>添加模型</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Model&a=add','192.168.1.3','db_model','5',''), ('180','1','admin','1569235296','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Model&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=Model&a=index\' class=\'\'>数据模型管理</a><a class=\'\'>添加模型</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Model&a=add','192.168.1.3','db_model','5',''), ('181','1','admin','1569235333','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Model&a=delete\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=Model&a=index\' class=\'\'>数据模型管理</a><a class=\'\'>删除模型</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Model&a=delete&modelid=8','192.168.1.3','db_model','8',''), ('182','1','admin','1569235393','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page_add\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','3',''), ('183','1','admin','1569235400','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page_editor\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','3',''), ('184','1','admin','1569235404','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page_delete\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>删除单页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_delete&page_id=3','192.168.1.3','db_page','3',''), ('185','1','admin','1569235475','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Pages&a=add\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>增加列表</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=add','192.168.1.3','db_pages','1',''), ('186','1','admin','1569235479','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Pages&a=editor\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('187','1','admin','1569235483','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Pages&a=delete\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>删除列表</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=delete&pages_id=1','192.168.1.3','db_pages','1',''), ('188','1','admin','1569235655','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>添加角色</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=add','192.168.1.3','db_role','2',''), ('189','1','admin','1569235661','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>修改角色</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=editor&id=2','192.168.1.3','db_role','2',''), ('190','1','admin','1569235673','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>权限配置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=access&role_id=2','192.168.1.3','db_role','2',''), ('191','1','admin','1569235696','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>栏目授权</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=access_cat&role_id=2','192.168.1.3','db_role','2',''), ('192','1','admin','1569235723','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Table&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a class=\'\'>增加数据表</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Table&a=add','192.168.1.3','db_table','11',''), ('193','1','admin','1569235774','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Table&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a class=\'\'>编辑数据表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Table&a=editor&table_id=11','192.168.1.3','db_table','11',''), ('194','1','admin','1569235791','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Table&a=delete\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a class=\'\'>删除数据表</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Table&a=delete&table_id=11','192.168.1.3','db_table','11',''), ('195','1','admin','1569235913','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=10','192.168.1.3','db_table_field','61',''), ('196','1','admin','1569235919','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=61','192.168.1.3','db_table_field','61',''), ('197','1','admin','1569235924','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=delete\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>删除字段</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=delete&field_id=61','192.168.1.3','db_table_field','61',''), ('198','1','admin','1569235980','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>增加模板</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=add','192.168.1.3','db_template','9',''), ('199','1','admin','1569235992','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','9',''), ('200','1','admin','1569235996','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>删除模板</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=delete&template_id=9','192.168.1.3','db_template','9',''), ('201','1','admin','1569236001','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=setDefault&template_id=1','192.168.1.3','db_template','1',''), ('202','1','admin','1569236036','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=265','192.168.1.3','db_node','340',''), ('203','1','admin','1569236040','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>设置为默认模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=setDefault&template_id=1','192.168.1.3','db_template','1',''), ('204','1','admin','1569236132','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户列表</a><a class=\'\'>增加用户</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=User&a=add','192.168.1.3','db_user','3',''), ('205','1','admin','1569236138','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户列表</a><a class=\'\'>修改用户</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=User&a=editor&user_id=3','192.168.1.3','db_user','3',''), ('206','1','admin','1569236172','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户列表</a><a class=\'\'>增加用户</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=User&a=add','192.168.1.3','db_user','4',''), ('207','1','admin','1569236174','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户列表</a><a class=\'\'>删除用户</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=User&a=del&user_id=4','192.168.1.3','db_user','4',''), ('208','1','admin','1569296838','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=56','192.168.1.3','db_table_field','56',''), ('209','1','admin','1569296859','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=10','192.168.1.3','db_table_field','57',''), ('210','1','admin','1569296927','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=10','192.168.1.3','db_table_field','58',''), ('211','1','admin','1569296947','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Model&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=Model&a=index\' class=\'\'>数据模型管理</a><a class=\'\'>添加模型</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Model&a=add','192.168.1.3','db_model','6',''), ('212','1','admin','1569297077','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=10','192.168.1.3','db_table_field','59',''), ('213','1','admin','1569297152','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=10','192.168.1.3','db_table_field','60',''), ('214','1','admin','1569297178','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Model&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=Model&a=index\' class=\'\'>数据模型管理</a><a class=\'\'>添加模型</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Model&a=add','192.168.1.3','db_model','6',''), ('215','1','admin','1569302983','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('216','1','admin','1569303000','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('217','1','admin','1569303047','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('218','1','admin','1569303176','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('219','1','admin','1569303203','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('220','1','admin','1569303212','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('221','1','admin','1569303231','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('222','1','admin','1569303325','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=15&modelid=6\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=6&catid=15','192.168.1.3','db_cms_product','8','小马'), ('223','1','admin','1569303477','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('224','1','admin','1569303495','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>增加模板</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=add','192.168.1.3','db_template','9',''), ('225','1','admin','1569303516','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','3',''), ('226','1','admin','1569303530','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=15&modelid=6','192.168.1.3','db_cat','15',''), ('227','1','admin','1569303823','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('228','1','admin','1569304336','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=10','192.168.1.3','db_table_field','61',''), ('229','1','admin','1569304379','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=10','192.168.1.3','db_table_field','62',''), ('230','1','admin','1569304596','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','3',''), ('231','1','admin','1569304621','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','3',''), ('232','1','admin','1569304653','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','3',''), ('233','1','admin','1569304679','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','3',''), ('234','1','admin','1569305147','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','6',''), ('235','1','admin','1569305162','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=15&modelid=6','192.168.1.3','db_cat','15',''), ('236','1','admin','1569305199','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','6',''), ('237','1','admin','1569305363','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','6',''), ('238','1','admin','1569305406','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','6',''), ('239','1','admin','1569307110','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('240','1','admin','1569307253','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('241','1','admin','1569308603','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>增加栏目</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=add&pid=15&modelid=6','192.168.1.3','db_cat','20',''), ('242','1','admin','1569308611','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>增加栏目</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=add&pid=15&modelid=6','192.168.1.3','db_cat','21',''), ('243','1','admin','1569308624','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>增加栏目</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=add&pid=21&modelid=6','192.168.1.3','db_cat','22',''), ('244','1','admin','1569308632','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=8&catid=15&modelid=6\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=8&catid=15&modelid=6','192.168.1.3','db_cms_product','8','汗血宝马'), ('245','1','admin','1569308657','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=7&catid=15&modelid=6','192.168.1.3','db_cms_product','7',''), ('246','1','admin','1569308712','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=8&catid=15&modelid=6\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=8&catid=15&modelid=6','192.168.1.3','db_cms_product','8','汗血宝马'), ('247','1','admin','1569308809','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=20&modelid=6\' class=\'\'>电子产品</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=20&modelid=6\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=6&catid=20','192.168.1.3','db_cms_product','9','苹果手机'), ('248','1','admin','1569308835','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=20&modelid=6\' class=\'\'>电子产品</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9&catid=20&modelid=6\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9&catid=20&modelid=6','192.168.1.3','db_cms_product','9','苹果手机'), ('249','1','admin','1569308934','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('250','1','admin','1569309073','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=163','192.168.1.3','db_node','163',''), ('251','1','admin','1569309086','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=163','192.168.1.3','db_node','341',''), ('252','1','admin','1569309103','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=323','192.168.1.3','db_node','342',''), ('253','1','admin','1569309109','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=323','192.168.1.3','db_node','343',''), ('254','1','admin','1569309116','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=323','192.168.1.3','db_node','344',''), ('255','1','admin','1569309125','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=323','192.168.1.3','db_node','345',''), ('256','1','admin','1569309139','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=343','192.168.1.3','db_node','346',''), ('257','1','admin','1569309156','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=162','192.168.1.3','db_node','162',''), ('258','1','admin','1569309169','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=323','192.168.1.3','db_node','323',''), ('259','1','admin','1569309192','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=323','192.168.1.3','db_node','323',''), ('260','1','admin','1569309695','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('261','1','admin','1569309707','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('262','1','admin','1569310465','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','1','');
INSERT INTO `db_user_log` VALUES ('263','1','admin','1569310509','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','1',''), ('264','1','admin','1569310573','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=AdCat&a=delete\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=AdCat&a=index\' class=\'\'>广告管理</a><a class=\'\'>删除广告位</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=AdCat&a=delete&ids=13','192.168.1.3','db_ad_cat','13',''), ('265','1','admin','1569310575','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=AdCat&a=delete\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=AdCat&a=index\' class=\'\'>广告管理</a><a class=\'\'>删除广告位</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=AdCat&a=delete&ids=12','192.168.1.3','db_ad_cat','12',''), ('266','1','admin','1569310576','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=AdCat&a=delete\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=AdCat&a=index\' class=\'\'>广告管理</a><a class=\'\'>删除广告位</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=AdCat&a=delete&ids=11','192.168.1.3','db_ad_cat','11',''), ('267','1','admin','1569310578','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=AdCat&a=delete\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=AdCat&a=index\' class=\'\'>广告管理</a><a class=\'\'>删除广告位</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=AdCat&a=delete&ids=9','192.168.1.3','db_ad_cat','9',''), ('268','1','admin','1569310580','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=AdCat&a=delete\' class=\'\'>插件管理</a><a href=\'/index.php?m=Admin&c=AdCat&a=index\' class=\'\'>广告管理</a><a class=\'\'>删除广告位</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=AdCat&a=delete&ids=8','192.168.1.3','db_ad_cat','8',''), ('269','1','admin','1569310669','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','1',''), ('270','1','admin','1569310708','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','1',''), ('271','1','admin','1569310745','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('272','1','admin','1569310819','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('273','1','admin','1569311770','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','9',''), ('274','1','admin','1569311925','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('275','1','admin','1569311956','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','5',''), ('276','1','admin','1569313060','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=delete\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>删除栏目</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=delete&catid=19&modelid=5','192.168.1.3','db_cat','19',''), ('277','1','admin','1569313064','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=delete\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>删除栏目</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=delete&catid=17&modelid=5','192.168.1.3','db_cat','17',''), ('278','1','admin','1569313076','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('279','1','admin','1569313088','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=12&modelid=5','192.168.1.3','db_cat','12',''), ('280','1','admin','1569313093','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=13&modelid=5','192.168.1.3','db_cat','13',''), ('281','1','admin','1569313097','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=14&modelid=5','192.168.1.3','db_cat','14',''), ('282','1','admin','1569390969','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=CatField&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=CatField&a=index\' class=\'\'>管理栏目字段</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=CatField&a=add&','192.168.1.3','db_cat_field','56',''), ('283','1','admin','1569391006','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=CatField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=CatField&a=index\' class=\'\'>管理栏目字段</a><a class=\'\'>修改字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=CatField&a=editor&field_id=56','192.168.1.3','db_cat_field','56',''), ('284','1','admin','1569478450','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=add\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>增加栏目</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=add&pid=11&modelid=5','192.168.1.3','db_cat','23',''), ('285','1','admin','1569479209','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=23&modelid=5','192.168.1.3','db_cat','23',''), ('286','1','admin','1569479306','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=23&modelid=5','192.168.1.3','db_cat','23',''), ('287','1','admin','1569479364','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=23&modelid=5','192.168.1.3','db_cat','23',''), ('288','1','admin','1569480048','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>栏目授权</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=access_cat&role_id=2','192.168.1.3','db_role','2',''), ('289','1','admin','1569480304','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>栏目授权</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=access_cat&role_id=2','192.168.1.3','db_role','2',''), ('290','1','admin','1569480309','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>栏目授权</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=access_cat&role_id=2','192.168.1.3','db_role','2',''), ('291','1','admin','1569480581','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=User&a=index\' class=\'\'>用户管理</a><a href=\'/index.php?m=Admin&c=Role&a=index\' class=\'\'>角色列表</a><a class=\'\'>栏目授权</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Role&a=access_cat&role_id=2','192.168.1.3','db_role','2',''), ('292','1','admin','1569481862','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=23&modelid=5','192.168.1.3','db_cat','23',''), ('293','1','admin','1569481870','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Cat&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=23&modelid=5','192.168.1.3','db_cat','23',''), ('294','1','admin','1570879549','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('295','1','admin','1570879788','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('296','1','admin','1570879793','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=TableField&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=57','192.168.1.3','db_table_field','57',''), ('297','1','admin','1571133135','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=233','192.168.1.3','db_node','233',''), ('298','1','admin','1571133142','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Menu&a=editor\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=279','192.168.1.3','db_node','279',''), ('299','1','admin','1571133148','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=103','192.168.1.3','db_node','103',''), ('300','1','admin','1571191561','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','12',''), ('301','1','admin','1571192637','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=219','192.168.1.3','db_node','347',''), ('302','1','admin','1571192648','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=219','192.168.1.3','db_node','348',''), ('303','1','admin','1571194482','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=6','192.168.1.3','db_cat','11',''), ('304','1','admin','1571194492','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('305','1','admin','1571194507','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=12&modelid=6','192.168.1.3','db_cat','12',''), ('306','1','admin','1571195501','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=15&catid=11&modelid=5','192.168.1.3','db_cms_news','15',''), ('307','1','admin','1571195852','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','18,16,11',''), ('308','1','admin','1571195855','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=14&catid=11&modelid=5','192.168.1.3','db_cms_news','14',''), ('309','1','admin','1571195861','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=17&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=17&catid=11&modelid=5','192.168.1.3','db_cms_news','17','财富人生 健康人生 康码亮相诺亚钻石年会'), ('310','1','admin','1571196907','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=219','192.168.1.3','db_node','349',''), ('311','1','admin','1571196924','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>增加菜单</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=add&pid=219','192.168.1.3','db_node','350',''), ('312','1','admin','1571196933','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=349','192.168.1.3','db_node','349',''), ('313','1','admin','1571196938','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=350','192.168.1.3','db_node','350',''), ('314','1','admin','1571197156','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=set_good&is_good=1','192.168.1.3','db_cms_news','20',''), ('315','1','admin','1571197291','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=set_good&is_good=2','192.168.1.3','db_cms_news','20',''), ('316','1','admin','1571197427','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=1','192.168.1.3','db_cms_news','20,19,17',''), ('317','1','admin','1571197437','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'#\'>信息推荐</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=set_good&is_good=1','192.168.1.3','db_cms_news','20,19,17',''), ('318','1','admin','1571280958','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=32','192.168.1.3','db_table_field','32',''), ('319','1','admin','1571281252','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=32','192.168.1.3','db_table_field','32',''), ('320','1','admin','1571281407','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=File&a=delPicture&ids=62%2C60%2C61','192.168.1.3','db_file','62,60,61',''), ('321','1','admin','1571376635','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','8',''), ('322','1','admin','1571376880','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=20,19,17','192.168.1.3','db_cms_news','20,19,17',''), ('323','1','admin','1571376886','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=23,22,21,20,19,17','192.168.1.3','db_cms_news','23,22,21,20,19,17',''), ('324','1','admin','1571376891','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=29,28,27,26,25,24,23,22,21,20,19,17','192.168.1.3','db_cms_news','29,28,27,26,25,24,23,22,21,20,19,17',''), ('325','1','admin','1571377051','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','8',''), ('326','1','admin','1571377081','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'#\'>信息推荐</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=set_good&is_good=0','192.168.1.3','db_cms_news','41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22',''), ('327','1','admin','1571377101','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'#\'>信息推荐</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=set_good&is_good=0','192.168.1.3','db_cms_news','21,20,19,17,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26',''), ('328','1','admin','1571377169','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','8',''), ('329','1','admin','1571388592','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191018163636','192.168.1.3','DatabaseBake',NULL,''), ('330','1','admin','1571388598','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>备份数据</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=Ebak_BakExe&bake_end=0&progress=100.00&start=0&p=0&table_index=1','192.168.1.3','DatabaseBake',NULL,''), ('331','1','admin','1571388606','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20190923181409','192.168.1.3','DatabaseBake',NULL,''), ('332','1','admin','1571388618','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>恢复数据</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=import&name=jijincms_20191018164958&table_index=0&p=1','192.168.1.3','DatabaseBake',NULL,''), ('333','1','admin','1571389222','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>恢复数据</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=import&name=jijincms_20191018164958&table_index=0&p=1','192.168.1.3','DatabaseBake',NULL,''), ('334','1','admin','1571626169','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','7',''), ('335','1','admin','1571626200','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('336','1','admin','1571627289','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('337','1','admin','1571627319','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('338','1','admin','1571627465','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>删除字段</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=delete&field_id=52','192.168.1.3','db_table_field','52',''), ('339','1','admin','1571627471','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=32','192.168.1.3','db_table_field','32',''), ('340','1','admin','1571627481','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>编辑字段</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=editor&field_id=32','192.168.1.3','db_table_field','32',''), ('341','1','admin','1571627501','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>增加字段</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=add&table_id=9','192.168.1.3','db_table_field','63',''), ('342','1','admin','1571627521','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Table&a=index\' class=\'\'>数据表管理</a><a href=\'/index.php?m=Admin&c=TableField&a=index\' class=\'\'>字段管理</a><a class=\'\'>删除字段</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=TableField&a=delete&field_id=63','192.168.1.3','db_table_field','63',''), ('343','1','admin','1571627556','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('344','1','admin','1571628072','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('345','1','admin','1571628084','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('346','1','admin','1571628161','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('347','1','admin','1571629454','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('348','1','admin','1571629782','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('349','1','admin','1571629808','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('350','1','admin','1571629827','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('351','1','admin','1571630393','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('352','1','admin','1571630416','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('353','1','admin','1571630427','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('354','1','admin','1571630432','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('355','1','admin','1571630569','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('356','1','admin','1571631180','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('357','1','admin','1571632872','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=41&catid=11&modelid=5','192.168.1.3','db_cms_news','41','财富人生 健康人生 康码亮相诺亚钻石年会'), ('358','1','admin','1571633574','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=11&modelid=5\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=5&catid=11','192.168.1.3','db_cms_news','42','121'), ('359','1','admin','1571633709','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5','192.168.1.3','db_cms_news','42','121'), ('360','1','admin','1571633926','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5','192.168.1.3','db_cms_news','42','121'), ('361','1','admin','1571634021','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5','192.168.1.3','db_cms_news','42','121'), ('362','1','admin','1571634028','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=42&catid=11&modelid=5','192.168.1.3','db_cms_news','42','121');
INSERT INTO `db_user_log` VALUES ('363','1','admin','1571710987','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23','192.168.1.3','db_cms_news','42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23',''), ('364','1','admin','1571711117','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('365','1','admin','1571711440','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=62,42,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44','192.168.1.3','db_cms_news','62,42,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44',''), ('366','1','admin','1571711604','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=82&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=82&catid=11&modelid=5','192.168.1.3','db_cms_news','82','2019现代圣达菲终极评论:主流人物,旗舰内容'), ('367','1','admin','1571711720','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','7',''), ('368','1','admin','1571711786','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=82','192.168.1.3','db_cms_news','82',''), ('369','1','admin','1571711802','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=83','192.168.1.3','db_cms_news','83',''), ('370','1','admin','1571711906','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=83','192.168.1.3','db_cms_news','83',''), ('371','1','admin','1571712153','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=86&catid=11&modelid=5','192.168.1.3','db_cms_news','86',''), ('372','1','admin','1571712665','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9&catid=15&modelid=6\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9&catid=15&modelid=6','192.168.1.3','db_cms_product','9','苹果手机苹果手机苹果手机苹果手机苹果手机'), ('373','1','admin','1571714777','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191018170218','192.168.1.3','DatabaseBake',NULL,''), ('374','1','admin','1571715987','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191018164958','192.168.1.3','DatabaseBake',NULL,''), ('375','1','admin','1571715992','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191018170305','192.168.1.3','DatabaseBake',NULL,''), ('376','1','admin','1571715994','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191018170517','192.168.1.3','DatabaseBake',NULL,''), ('377','1','admin','1571715996','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191022112425','192.168.1.3','DatabaseBake',NULL,''), ('378','1','admin','1571715998','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191022112452','192.168.1.3','DatabaseBake',NULL,''), ('379','1','admin','1571716000','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Database&a=index\' class=\'\'>数据备份</a><a class=\'\'>删除备份</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Database&a=delete&name=jijincms_20191022112547','192.168.1.3','DatabaseBake',NULL,''), ('380','1','admin','1571716045','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('381','1','admin','1571798394','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=9087&catid=11&modelid=5','192.168.1.3','db_cms_news','9087',''), ('382','1','admin','1571798549','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9086','192.168.1.3','db_cms_news','9086',''), ('383','1','admin','1571798581','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=move&modelid=5&catid=13&ids=9088,17','192.168.1.3','db_cms_news','9088,17',''), ('384','1','admin','1571798592','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9088','192.168.1.3','db_cms_news','9088',''), ('385','1','admin','1571798607','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=move&modelid=5&catid=11&ids=9089','192.168.1.3','db_cms_news','9089',''), ('386','1','admin','1571798625','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=move&modelid=5&catid=11&ids=9088','192.168.1.3','db_cms_news','9088',''), ('387','1','admin','1571799048','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>增加列表</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=add','192.168.1.3','db_pages','1',''), ('388','1','admin','1571799174','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('389','1','admin','1571799192','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('390','1','admin','1571812310','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('391','1','admin','1571812313','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('392','1','admin','1571812317','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('393','1','admin','1571812377','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('394','1','admin','1571812379','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('395','1','admin','1571812949','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('396','1','admin','1571815558','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('397','1','admin','1571815629','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=12&modelid=6','192.168.1.3','db_cat','12',''), ('398','1','admin','1571816605','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','2',''), ('399','1','admin','1571816611','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','1',''), ('400','1','admin','1571816864','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','2',''), ('401','1','admin','1571816877','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','1',''), ('402','1','admin','1571881602','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','3',''), ('403','1','admin','1571881611','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','4',''), ('404','1','admin','1571881616','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','5',''), ('405','1','admin','1571881622','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','6',''), ('406','1','admin','1571882531','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('407','1','admin','1571882534','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=12&modelid=6','192.168.1.3','db_cat','12',''), ('408','1','admin','1571882550','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=13&modelid=5','192.168.1.3','db_cat','13',''), ('409','1','admin','1571909127','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=15&modelid=6','192.168.1.3','db_cat','15',''), ('410','1','admin','1571909137','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=20&modelid=6','192.168.1.3','db_cat','20',''), ('411','1','admin','1571909143','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=21&modelid=6','192.168.1.3','db_cat','21',''), ('412','1','admin','1571909150','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=1&modelid=6','192.168.1.3','db_cat','1',''), ('413','1','admin','1571913292','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=300,299,298,297,296,295,294,293,292,291,290,289,288,287,286,285,284,283,282,281','192.168.1.3','db_cms_news','300,299,298,297,296,295,294,293,292,291,290,289,288,287,286,285,284,283,282,281',''), ('414','1','admin','1571970593','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','6',''), ('415','1','admin','1571970678','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','6',''), ('416','1','admin','1575621558','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('417','1','admin','1577265295','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=12&modelid=6\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=6&catid=12','192.168.1.3','db_cms_product','301','fadsfads'), ('418','1','admin','1577265629','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=301&catid=12&modelid=6','192.168.1.3','db_cms_product','301',''), ('419','1','admin','1577266044','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=14&modelid=5\' class=\'\'>新闻中心-1-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=14&modelid=5\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=5&catid=14','192.168.1.3','db_cms_news','9110','test'), ('420','1','admin','1577266667','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=14&modelid=5','192.168.1.3','db_cat','14',''), ('421','1','admin','1577268273','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=14&modelid=5\' class=\'\'>新闻中心-1-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=14&modelid=5\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=5&catid=14','192.168.1.3','db_cms_news','9111','fasdfdsa'), ('422','1','admin','1577268354','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=14&modelid=5\' class=\'\'>新闻中心-1-1-1</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=sort','192.168.1.3','db_cms_news',NULL,''), ('423','1','admin','1577269397','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>信息推荐</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=set_good&is_good=1','192.168.1.3','db_cms_product','281',''), ('424','1','admin','1577269793','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=1','192.168.1.3','db_cms_product','281',''), ('425','1','admin','1577269843','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=1','192.168.1.3','db_cms_product','282',''), ('426','1','admin','1577270089','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=0','192.168.1.3','db_cms_product','282',''), ('427','1','admin','1577270100','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=0','192.168.1.3','db_cms_product','282',''), ('428','1','admin','1577270144','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=0','192.168.1.3','db_cms_product','282',''), ('429','1','admin','1577270148','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=0','192.168.1.3','db_cms_product','282',''), ('430','1','admin','1577270182','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=0','192.168.1.3','db_cms_product','282',''), ('431','1','admin','1577270189','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=1','192.168.1.3','db_cms_product','282',''), ('432','1','admin','1577270200','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=282&catid=15&modelid=6\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=282&catid=15&modelid=6','192.168.1.3','db_cms_product','282','苹果手机苹果手机苹果手机苹果手机苹果手机'), ('433','1','admin','1577270210','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=282&catid=15&modelid=6','192.168.1.3','db_cms_product','282',''), ('434','1','admin','1577270229','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=280&catid=15&modelid=6','192.168.1.3','db_cms_product','280',''), ('435','1','admin','1577270262','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=279&catid=15&modelid=6','192.168.1.3','db_cms_product','279',''), ('436','1','admin','1577270266','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=278&catid=15&modelid=6','192.168.1.3','db_cms_product','278',''), ('437','1','admin','1577270277','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=277&catid=15&modelid=6','192.168.1.3','db_cms_product','277',''), ('438','1','admin','1577270319','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=276&catid=15&modelid=6','192.168.1.3','db_cms_product','276',''), ('439','1','admin','1577270326','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=281&catid=15&modelid=6','192.168.1.3','db_cms_product','281',''), ('440','1','admin','1577270353','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=300&catid=15&modelid=6','192.168.1.3','db_cms_product','300',''), ('441','1','admin','1577270360','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=300&catid=15&modelid=6','192.168.1.3','db_cms_product','300',''), ('442','1','admin','1577270363','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=299&catid=15&modelid=6','192.168.1.3','db_cms_product','299',''), ('443','1','admin','1577270378','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=298&catid=15&modelid=6','192.168.1.3','db_cms_product','298',''), ('444','1','admin','1577270450','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=297&catid=15&modelid=6','192.168.1.3','db_cms_product','297',''), ('445','1','admin','1577270473','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=296&catid=15&modelid=6','192.168.1.3','db_cms_product','296',''), ('446','1','admin','1577270587','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=275&catid=15&modelid=6','192.168.1.3','db_cms_product','275',''), ('447','1','admin','1577270599','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=295&catid=15&modelid=6','192.168.1.3','db_cms_product','295',''), ('448','1','admin','1577270678','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','267',''), ('449','1','admin','1577270696','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=294&catid=15&modelid=6\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=294&catid=15&modelid=6','192.168.1.3','db_cms_product','294','苹果手机苹果手机苹果手机苹果手机苹果手机'), ('450','1','admin','1577270702','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=0','192.168.1.3','db_cms_product','294',''), ('451','1','admin','1577270705','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=294&catid=15&modelid=6\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=294&catid=15&modelid=6','192.168.1.3','db_cms_product','294','苹果手机苹果手机苹果手机苹果手机苹果手机'), ('452','1','admin','1577270711','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'#\'>审核信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=checked&checked=1','192.168.1.3','db_cms_product','294',''), ('453','1','admin','1577270719','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=15&modelid=6\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=6&catid=15','192.168.1.3','db_cms_product','302','sdfsdffsdasaf'), ('454','1','admin','1577270723','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=302&catid=15&modelid=6','192.168.1.3','db_cms_product','302',''), ('455','1','admin','1577270943','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','294,293,292,291,290,289,288,287,286,285,284,283,274,273,272,271,270,269,268,266',''), ('456','1','admin','1577270958','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','247',''), ('457','1','admin','1577271073','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=sort','192.168.1.3','db_cms_product',NULL,''), ('458','1','admin','1577271080','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=sort','192.168.1.3','db_cms_product',NULL,''), ('459','1','admin','1577271139','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=sort','192.168.1.3','db_cms_product',NULL,''), ('460','1','admin','1577271187','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=sort','192.168.1.3','db_cms_product',NULL,''), ('461','1','admin','1577271205','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','265,264,263,262,261,260,259,258,257,256,255,254,253,252,251,250,249,248,246,245',''), ('462','1','admin','1577329110','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11','');
INSERT INTO `db_user_log` VALUES ('463','1','admin','1577329122','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('464','1','admin','1577329297','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('465','1','admin','1577329311','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=258&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=258&catid=11&modelid=5','192.168.1.3','db_cms_news','258','news'), ('466','1','admin','1577329403','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=11&modelid=5','192.168.1.3','db_cat','11',''), ('467','1','admin','1577329554','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','30,41,22,40,43,44,45,46,47,38,39,61,29,19,21,23,24,25,26,27',''), ('468','1','admin','1577329564','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','28,42,49,31,32,33,34,35,36,37,48,17,50,51,52,53,54,55,56,57',''), ('469','1','admin','1577329572','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','58,59,60,81,64,65,66,67,82,118,109,110,111,112,113,114,115,116,117,62',''), ('470','1','admin','1577329658','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','63,69,83,84,85,87,88,68,89,90,91,92,93,94,95,96,97,98,99,100',''), ('471','1','admin','1577329665','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','101,102,103,104,105,106,107,108,70,71,72,73,74,75,76,77,78,79,80,119',''), ('472','1','admin','1577329673','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','139',''), ('473','1','admin','1577329686','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140',''), ('474','1','admin','1577329742','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160',''), ('475','1','admin','1577329747','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','161,162,163,164,165,166,167,168,300,258,169,170,171,172,173,174,175,176,177,178',''), ('476','1','admin','1577329754','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207',''), ('477','1','admin','1577329768','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','208,209,210,211,212,213,214,215,216,217,218,256,257,259,260,261,262,263,264,265',''), ('478','1','admin','1577329777','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','266,267,268,186,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234',''), ('479','1','admin','1577329785','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254',''), ('480','1','admin','1577329794','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','255,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287',''), ('481','1','admin','1577329802','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','288,289,290,291,292,293,294,295,296,297,298,299,9090,9091,9092,9093,9094,9095,9096,9097',''), ('482','1','admin','1577329810','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_news','9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,179,180,181,182,183,184,185,187,9109,9108',''), ('483','1','admin','1577329819','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28',''), ('484','1','admin','1577330032','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48',''), ('485','1','admin','1577330039','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68',''), ('486','1','admin','1577330048','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88',''), ('487','1','admin','1577330055','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108',''), ('488','1','admin','1577330065','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128',''), ('489','1','admin','1577330072','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148',''), ('490','1','admin','1577330081','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168',''), ('491','1','admin','1577330089','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188',''), ('492','1','admin','1577330102','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208',''), ('493','1','admin','1577330112','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228',''), ('494','1','admin','1577675056','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9110&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9110&catid=11&modelid=5','192.168.1.3','db_cms_news','9110','test'), ('495','1','admin','1577675301','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9110&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9110&catid=11&modelid=5','192.168.1.3','db_cms_news','9110','test'), ('496','1','admin','1577675308','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=11&modelid=5\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=5&catid=11','192.168.1.3','db_cms_news','9112','fadsfads'), ('497','1','admin','1577675361','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9110&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9110&catid=11&modelid=5','192.168.1.3','db_cms_news','9110','test'), ('498','1','admin','1577675367','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=add&catid=11&modelid=5\' class=\'\'>增加信息</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=add&modelid=5&catid=11','192.168.1.3','db_cms_news','9113','dsa'), ('499','1','admin','1577675485','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=14&modelid=5\' class=\'\'>新闻中心-1-1-1</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete&ids=9110&catid=14&modelid=5','192.168.1.3','db_cms_news','9110',''), ('500','1','admin','1577675687','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=14&modelid=5\' class=\'\'>新闻中心-1-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9111&catid=14&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9111&catid=14&modelid=5','192.168.1.3','db_cms_news','9111','fasdfdsa'), ('501','1','admin','1577675692','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=14&modelid=5\' class=\'\'>新闻中心-1-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9111&catid=14&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9111&catid=14&modelid=5','192.168.1.3','db_cms_news','9111','fasdfdsa2'), ('502','1','admin','1577675699','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=12&modelid=6\' class=\'\'>新闻中心-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=13&modelid=5\' class=\'\'>新闻中心-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=14&modelid=5\' class=\'\'>新闻中心-1-1-1</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9111&catid=14&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9111&catid=14&modelid=5','192.168.1.3','db_cms_news','9111','fasdfdsa233'), ('503','1','admin','1577676336','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Cat&a=showcat\' class=\'\'>栏目管理</a><a class=\'\'>修改栏目</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Cat&a=editor&catid=1&modelid=6','192.168.1.3','db_cat','1',''), ('504','1','admin','1577683930','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9111,9112,9113,20','192.168.1.3','db_cms_news','9111,9112,9113,20',''), ('505','1','admin','1577683965','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=6&catid=15&ids=229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244','192.168.1.3','db_cms_product','229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244',''), ('506','1','admin','1577683979','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=6&catid=15&ids=256,257,258,259,260,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243','192.168.1.3','db_cms_product','256,257,258,259,260,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243',''), ('507','1','admin','1577684203','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=6&catid=15&ids=275','192.168.1.3','db_cms_product','275',''), ('508','1','admin','1577684972','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('509','1','admin','1577685064','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=6&catid=15&ids=256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255','192.168.1.3','db_cms_product','256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255',''), ('510','1','admin','1577685085','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=6&catid=15&ids=256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355','192.168.1.3','db_cms_product','256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355',''), ('511','1','admin','1577685102','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=6&catid=15&ids=256,512,257,513,258,514,259,515,260,516,261,517,262,518,263,519,264,520,265,521,266,522,267,523,268,524,269,525,270,526,271,527,272,528,273,529,274,530,275,531,276,532,277,533,278,534,279,535,280,536,281,537,282,538,283,539,284,540,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326','192.168.1.3','db_cms_product','256,512,257,513,258,514,259,515,260,516,261,517,262,518,263,519,264,520,265,521,266,522,267,523,268,524,269,525,270,526,271,527,272,528,273,529,274,530,275,531,276,532,277,533,278,534,279,535,280,536,281,537,282,538,283,539,284,540,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326',''), ('512','1','admin','1577685103','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('513','1','admin','1577688131','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9111,9115,9112,9113,9116,9117,9114,20','192.168.1.3','db_cms_news','9111,9115,9112,9113,9116,9117,9114,20',''), ('514','1','admin','1577688137','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9111,9115,9119,9123,9112,9113,9116,9117,9120,9121,9124,9125,9114,9122,20,9118','192.168.1.3','db_cms_news','9111,9115,9119,9123,9112,9113,9116,9117,9120,9121,9124,9125,9114,9122,20,9118',''), ('515','1','admin','1577688143','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9111,9115,9119,9123,9127,9131,9135,9139,9112,9113,9116,9117,9120,9121,9124,9125,9128,9129,9132,9133','192.168.1.3','db_cms_news','9111,9115,9119,9123,9127,9131,9135,9139,9112,9113,9116,9117,9120,9121,9124,9125,9128,9129,9132,9133',''), ('516','1','admin','1577688151','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9112,9113,9116,9117','192.168.1.3','db_cms_news','9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9112,9113,9116,9117',''), ('517','1','admin','1577688159','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9162,9165,9168,9169','192.168.1.3','db_cms_news','9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9162,9165,9168,9169',''), ('518','1','admin','1577688951','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('519','1','admin','1577689189','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9162,9165,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9112,9113,9116,9117,9120,9121,9124,9125,9128,9129,9132,9133,9136,9137,9140,9141,9143,9144,9146,9147,9149,9150,9152,9153,9155,9156,9158,9159,9163,9164,9166,9167,9114,9122,9130,9138,20,9118,9126,9134','192.168.1.3','db_cms_news','9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9162,9165,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9112,9113,9116,9117,9120,9121,9124,9125,9128,9129,9132,9133,9136,9137,9140,9141,9143,9144,9146,9147,9149,9150,9152,9153,9155,9156,9158,9159,9163,9164,9166,9167,9114,9122,9130,9138,20,9118,9126,9134',''), ('520','1','admin','1577689604','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=copy&modelid=5&catid=11&ids=9219,9223,9227,9231,9234,9237,9240,9243,9246,9249,9252,9253,9254,9257,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9162,9165,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201','192.168.1.3','db_cms_news','9219,9223,9227,9231,9234,9237,9240,9243,9246,9249,9252,9253,9254,9257,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9111,9115,9119,9123,9127,9131,9135,9139,9142,9145,9148,9151,9154,9157,9160,9161,9162,9165,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201',''), ('521','1','admin','1577689604','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('522','1','admin','1577694554','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=162','192.168.1.3','db_node','162',''), ('523','1','admin','1577694558','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Config&a=index\' class=\'\'>系统设置</a><a href=\'/index.php?m=Admin&c=Menu&a=index\' class=\'\'>菜单管理</a><a class=\'\'>编辑菜单</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Menu&a=editor&id=323','192.168.1.3','db_node','323',''), ('524','1','admin','1577694740','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>删除列表</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=delete&pages_id=1','192.168.1.3','db_pages','1',''), ('525','1','admin','1577695904','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('526','1','admin','1577695936','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('527','1','admin','1577695952','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('528','1','admin','1577696168','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('529','1','admin','1577696218','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('530','1','admin','1577696958','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a class=\'\'>系统设置</a><a class=\'\'>网站设置</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Config&a=index','192.168.1.3','网站设置','-',''), ('531','1','admin','1577763002','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','7',''), ('532','1','admin','1577763010','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','7',''), ('533','1','admin','1577763475','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','8',''), ('534','1','admin','1577763481','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','8',''), ('535','1','admin','1577763580','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','8',''), ('536','1','admin','1577763877','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','8',''), ('537','1','admin','1577763883','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','8',''), ('538','1','admin','1577763939','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','8',''), ('539','1','admin','1577764639','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>模版管理</a><a href=\'/index.php?m=Admin&c=Template&a=index\' class=\'\'>首页模板</a><a class=\'\'>修改模板</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Template&a=editor','192.168.1.3','db_template','7',''), ('540','1','admin','1577764650','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('541','1','admin','1577764654','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('542','1','admin','1577765834','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('543','1','admin','1577765858','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('544','1','admin','1577765866','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('545','1','admin','1577765887','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('546','1','admin','1577765941','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('547','1','admin','1577765950','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('548','1','admin','1577766265','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('549','1','admin','1577766294','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('550','1','admin','1577766300','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('551','1','admin','1577766311','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('552','1','admin','1577766327','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('553','1','admin','1577766337','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('554','1','admin','1577766390','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('555','1','admin','1577766399','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=11&modelid=5\' class=\'\'>新闻中心</a><a href=\'/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5\' class=\'\'>修改信息</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=editor&id=9219&catid=11&modelid=5','192.168.1.3','db_cms_news','9219','fasdfdsa233'), ('556','1','admin','1577766618','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>修改单页</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_editor','192.168.1.3','db_page','8',''), ('557','1','admin','1577766629','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义单页</a><a class=\'\'>增加单页</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Page&a=page_add','192.168.1.3','db_page','9',''), ('558','1','admin','1577767105','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>增加列表</a>','add','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=add','192.168.1.3','db_pages','1',''), ('559','1','admin','1577767117','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('560','1','admin','1577767128','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('561','1','admin','1577767256','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('562','1','admin','1577767335','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1','');
INSERT INTO `db_user_log` VALUES ('563','1','admin','1577767488','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\'/index.php?m=Admin&c=Page&a=page\' class=\'\'>自定义页管理</a><a href=\'/index.php?m=Admin&c=Pages&a=index\' class=\'\'>自定义列表</a><a class=\'\'>修改列表</a>','update','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Pages&a=editor','192.168.1.3','db_pages','1',''), ('564','1','admin','1579051296','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=File&a=delPicture&ids=62%2C62','192.168.1.3','db_file','62,62',''), ('565','1','admin','1579051753','<a href=\"/index.php?m=Admin&c=Index&a=index\" class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=File&a=delPicture&ids=63','192.168.1.3','db_file','63',''), ('566','1','admin','1579052126','<a href=/index.php?m=Admin&c=Index&a=index class=\"tip-bottom\"><i class=\"icon-home\"></i>首页</a><a href=\"#\">信息管理</a><a href=\'/index.php?m=Admin&c=Info&a=index&catid=15&modelid=6\' class=\'\'>产品中心</a>','delete','http://jijincms.mx.jijinweb.com:/index.php?m=Admin&c=Info&a=delete','192.168.1.3','db_cms_product','256,512,257,513,258,514,259,515,260,516,261,517,262,518,263,519,264,520,265,521','');
INSERT INTO `db_user_login_log` VALUES ('209','0','admin1','1569289523','0','192.168.1.3'), ('210','1','admin','1569289536','1','192.168.1.3'), ('211','1','admin','1569317398','1','192.168.1.3'), ('212','1','admin','1569379838','1','192.168.1.3'), ('213','0','admin','1569460876','0','192.168.1.3'), ('214','0','admin','1569460880','0','192.168.1.3'), ('215','1','admin','1569460889','1','192.168.1.3'), ('216','1','admin','1570516929','1','192.168.1.3'), ('217','1','admin','1570588943','1','192.168.1.3'), ('218','1','admin','1570879534','1','192.168.1.3'), ('219','0','admin','1571133088','0','192.168.1.3'), ('220','0','admin','1571133092','0','192.168.1.3'), ('221','0','admin','1571133108','0','192.168.1.3'), ('222','1','admin','1571133116','1','192.168.1.3'), ('223','1','admin','1571190234','1','192.168.1.3'), ('224','1','admin','1571280519','1','192.168.1.3'), ('225','1','admin','1571375595','1','192.168.1.3'), ('226','1','admin','1571626122','1','192.168.1.3'), ('227','1','admin','1571708327','1','192.168.1.3'), ('228','1','admin','1571721128','1','192.168.1.104'), ('229','0','admin','1571735316','0','192.168.1.3'), ('230','1','admin','1571735327','1','192.168.1.3'), ('231','1','admin','1571794087','1','192.168.1.3'), ('232','1','admin','1571880750','1','192.168.1.3'), ('233','1','admin','1571889969','1','192.168.1.104'), ('234','1','admin','1571967120','1','192.168.1.3'), ('235','1','admin','1572313932','1','192.168.1.3'), ('236','0','admin','1575621500','0','192.168.1.3'), ('237','0','admin','1575621506','0','192.168.1.3'), ('238','0','admin','1575621512','0','192.168.1.3'), ('239','0','admin','1575621528','0','192.168.1.3'), ('240','0','admin','1575621539','0','192.168.1.3'), ('241','1','admin','1575621547','1','192.168.1.3'), ('242','0','admin','1577258814','0','192.168.1.3'), ('243','0','admin','1577258822','0','192.168.1.3'), ('244','1','admin','1577258828','1','192.168.1.3'), ('245','1','admin','1577322562','1','192.168.1.3'), ('246','1','admin','1577428434','1','192.168.1.3'), ('247','1','admin','1577675049','1','192.168.1.3'), ('248','1','admin','1577762465','1','192.168.1.3'), ('249','1','admin','1578892002','1','192.168.1.3'), ('250','1','admin','1578982771','1','192.168.1.3'), ('251','1','admin','1579051265','1','192.168.1.3');
INSERT INTO `db_vars` VALUES ('weixin_access_token','6_kgRDgRjNyuDaWbOhk1rLuY7LWPFo7-MIIp0LR4goT9-phEOIvnomd42f2rx1rF5kCAS5LsZNJULX8o3-MgqWWteq6EM_M1ITY7be8AHksgHCz3VngxQv3Gw5X_cRGIfkU4ITAVDhXBuwpCW9IBUbAIAEXQ'), ('weixin_access_token_expires_in','1517035425');
INSERT INTO `db_visit` VALUES ('5','1557676800','1','1','0','0','1','0','0','0','0'), ('6','1558627200','1','1','0','0','1','0','0','0','0'), ('7','1558972800','1','1','0','0','1','0','0','0','0'), ('8','1562860800','1','2','0','0','2','0','0','0','0'), ('9','1562860800','1','2','0','0','2','0','0','0','0'), ('10','1565020800','1','1','0','0','1','0','0','0','0'), ('11','1565884800','1','1','0','0','1','0','0','0','0'), ('12','1571328000','1','137','0','3','134','0','0','0','0'), ('13','1571587200','1','2','0','2','0','0','0','0','0'), ('14','1571673600','1','1191','0','2','1189','0','0','0','0'), ('15','1571760000','1','84','0','0','84','0','0','0','0'), ('16','1571846400','2','2304','0','2','2302','0','0','0','0'), ('17','1571932800','1','4169','0','0','4169','0','0','0','0'), ('18','1572278400','1','154','0','0','154','0','0','0','0'), ('19','1577203200','1','653','0','1','652','0','0','0','0'), ('20','1577289600','1','2','0','1','1','0','0','0','0'), ('21','1577376000','1','1','0','1','0','0','0','0','0'), ('22','1577635200','1','1','0','1','0','0','0','0','0'), ('23','1577721600','1','13','0','1','12','0','0','0','0'), ('24','1579017600','1','1','0','1','0','0','0','0','0');
INSERT INTO `db_visit_48` VALUES ('1','link','1579052175',NULL,'192.168.1.3');