From 74dae375f3d0d756b7b889d2f846d7b8824cb941 Mon Sep 17 00:00:00 2001 From: devil_gong Date: Mon, 23 Sep 2019 13:56:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E5=93=81=E8=A7=84=E6=A0=BC=E5=BF=AB?= =?UTF-8?q?=E6=8D=B7=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/view/default/goods/save_info.html | 32 +++++++++++- application/service/GoodsService.php | 44 +++++++++++++++- config/app.php | 2 +- config/shopxo.sql | 51 ++++++++++++------- public/static/admin/default/js/goods.js | 12 +++-- 5 files changed, 113 insertions(+), 28 deletions(-) diff --git a/application/admin/view/default/goods/save_info.html b/application/admin/view/default/goods/save_info.html index b1b6550c0..6a4d5fa81 100755 --- a/application/admin/view/default/goods/save_info.html +++ b/application/admin/view/default/goods/save_info.html @@ -168,10 +168,14 @@
+
+
+ 快捷操作可以快速创建商品SKU,大量节省SKU编辑时间,快捷操作数据不影响SKU数据,仅生成的时候重新覆盖SKU。 +
+快捷操作 生成规格 - + +添加规格
diff --git a/application/service/GoodsService.php b/application/service/GoodsService.php index 7764a5c2e..6abb5cb66 100755 --- a/application/service/GoodsService.php +++ b/application/service/GoodsService.php @@ -396,6 +396,12 @@ class GoodsService } } + // 规格基础 + if(isset($v['spec_base'])) + { + $v['spec_base'] = empty($v['spec_base']) ? '' : json_decode($v['spec_base'], true); + } + // 获取规格 if($is_spec && !empty($v['id'])) { @@ -1064,7 +1070,14 @@ class GoodsService return DataReturn($ret, -1); } - // 规格 + // 规格基础 + $specifications_base = self::GetFormGoodsSpecificationsBaseParams($params); + if($specifications_base['code'] != 0) + { + return $specifications_base; + } + + // 规格值 $specifications = self::GetFormGoodsSpecificationsParams($params); if($specifications['code'] != 0) { @@ -1120,6 +1133,7 @@ class GoodsService 'seo_keywords' => empty($params['seo_keywords']) ? '' : $params['seo_keywords'], 'seo_desc' => empty($params['seo_desc']) ? '' : $params['seo_desc'], 'is_exist_many_spec' => empty($specifications['data']['title']) ? 0 : 1, + 'spec_base' => empty($specifications_base['data']) ? '' : json_encode($specifications_base['data']), ]; // 商品保存处理钩子 @@ -1245,7 +1259,7 @@ class GoodsService } /** - * 获取规格参数 + * 获取规格值参数 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 @@ -1416,6 +1430,32 @@ class GoodsService return DataReturn('success', 0, ['data'=>$data, 'title'=>$title, 'images'=>$images]); } + /** + * 获取规格基础参数 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2019-09-23 + * @desc description + * @param [array] $params [输入参数] + */ + private static function GetFormGoodsSpecificationsBaseParams($params = []) + { + $result = []; + foreach($params as $k=>$v) + { + if(substr($k, 0, 16) == 'spec_base_title_') + { + $key = substr($k, 16); + $result[] = [ + 'title' => $v, + 'value' => isset($params['spec_base_value_'.$key]) ? $params['spec_base_value_'.$key] : [], + ]; + } + } + return DataReturn('success', 0, $result); + } + /** * 获取商品相册 * @author Devil diff --git a/config/app.php b/config/app.php index 3d956197d..85cbfacdc 100755 --- a/config/app.php +++ b/config/app.php @@ -19,7 +19,7 @@ return [ // 应用地址 'app_host' => '', // 应用调试模式 - 'app_debug' => false, + 'app_debug' => true, // 应用Trace 'app_trace' => false, // 是否支持多模块 diff --git a/config/shopxo.sql b/config/shopxo.sql index 66fdfc236..3261ec720 100644 --- a/config/shopxo.sql +++ b/config/shopxo.sql @@ -11,7 +11,7 @@ Target Server Version : 50722 File Encoding : utf-8 - Date: 09/09/2019 11:50:51 AM + Date: 09/23/2019 13:54:48 PM */ SET NAMES utf8mb4; @@ -40,7 +40,7 @@ CREATE TABLE `s_admin` ( -- Records of `s_admin` -- ---------------------------- BEGIN; -INSERT INTO `s_admin` VALUES ('1', 'admin', 'fae2bb28c6278891c0b5586e11b0b867', '037968', '17688888888', '0', '435', '1565606327', '1', '1481350313', '1551341520'), ('3', 'testtest', 'a3a3368a4a310b29cd6662e386a46b19', '580271', '13222333333', '2', '51', '1551341548', '13', '1483947758', '1561014039'); +INSERT INTO `s_admin` VALUES ('1', 'admin', 'ec953ce1a0f2e074027a22935ff3bc82', '357886', '17688888888', '0', '437', '1569205247', '1', '1481350313', '1551341520'), ('3', 'testtest', 'a3a3368a4a310b29cd6662e386a46b19', '580271', '13222333333', '2', '51', '1551341548', '13', '1483947758', '1561014039'); COMMIT; -- ---------------------------- @@ -401,6 +401,7 @@ CREATE TABLE `s_goods` ( `video` char(255) NOT NULL DEFAULT '' COMMENT '短视频', `home_recommended_images` char(255) NOT NULL DEFAULT '' COMMENT '首页推荐图片', `is_exist_many_spec` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否存在多个规格(0否, 1是)', + `spec_base` text COMMENT '规格基础内容', `seo_title` char(100) NOT NULL DEFAULT '' COMMENT 'SEO标题', `seo_keywords` char(130) NOT NULL DEFAULT '' COMMENT 'SEO关键字', `seo_desc` char(230) NOT NULL DEFAULT '' COMMENT 'SEO描述', @@ -418,7 +419,7 @@ CREATE TABLE `s_goods` ( -- Records of `s_goods` -- ---------------------------- BEGIN; -INSERT INTO `s_goods` VALUES ('1', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '', '0', '119', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '


', '2', '5', '81', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '0', '', '', '', '0', '1547450921', '1554556830'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', '', 'iPhone 6 Plus', '0', '1683', '步', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6000.00-7600.00', '6000.00', '7600.00', '4500.00-6800.00', '4500.00', '6800.00', '30', '1', '0', '1', '1', '1', '


', '2', '14', '1128', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', '', '', '', '0', '1547451624', '1564735109'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '', '0', '232', '步', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '6866.00', '6866.00', '3888.00', '3888.00', '3888.00', '20', '1', '0', '1', '1', '1', '


', '2', '0', '85', '', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '0', '', '', '', '0', '1547452007', '1547452007'), ('4', '1', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', '', '', '0', '528', '步', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '2300.00', '2300.00', '2300.00', '1999.00', '1999.00', '1999.00', '19', '1', '0', '1', '1', '1', '


', '2', '3', '217', '', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '0', '', '', '', '0', '1547452553', '1547452553'), ('5', '2', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', '', '', '0', '425', '步', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '3200.00', '3200.00', '2499.00', '2499.00', '2499.00', '56', '1', '0', '1', '1', '1', '


', '2', '7', '387', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '0', '', '', '', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '', '0', '316', '步', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '3200.00', '3200.00', '2998.90', '2998.90', '2998.90', '65', '1', '0', '1', '1', '1', '

 X5L/SL/V/M (5.0寸)  X5max钢化膜(5.5寸)  X5pro钢化膜(5.2寸) 



', '2', '1', '305', '', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '0', '', '', '', '0', '1547453135', '1564057484'), ('7', '1', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '', '0', '312', '件', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '760.00', '760.00', '760.00', '168.00', '168.00', '168.00', '11', '1', '0', '1', '1', '1', '


', '2', '3', '227', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', '0', '', '', '', '0', '1547453967', '1554485498'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '', '0', '32', '件', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0.00', '0.00', '0.00', '356.00', '356.00', '356.00', '8', '1', '0', '1', '1', '1', '


', '2', '0', '100', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0', '', '', '', '0', '1547454269', '1565230383'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '', '0', '592', '件', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00-216.00', '160.00', '216.00', '120.00-158.00', '120.00', '158.00', '2', '1', '0', '1', '1', '1', '


', '3', '2', '231', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', '0', '', '', '', '0', '1547454786', '1554555420'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '', '0', '27', '件', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '568.00', '568.00', '228.00', '228.00', '228.00', '28', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】涤棉拼接蕾丝  后中拉链 有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦


XS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~

蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~


', '2', '0', '364', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', '0', '', '', '', '0', '1547455375', '1566387763'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '', '0', '36665983', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '268.00-422.00', '268.00', '422.00', '160.00-258.00', '160.00', '258.00', '1', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】网纱绣花钉珠拼接蕾丝 拉链有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦


XS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~

大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~

肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~



', '4', '1', '218', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', '0', '', '', '', '0', '1547455700', '1564049598'), ('12', '2', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '轻奢醋酸面料,高标准的生产要求,品质保证', 'xxxxhhhhhh商品型号', '0', '282', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '150.00-188.00', '150.00', '188.00', '0.01-128.00', '0.01', '128.00', '3', '1', '0', '1', '1', '1', '
112233445566
qwerty
asdfgh
zxcvbn



\"d-1.jpg\"/

\"d-2.jpg\"/

', '3', '2', '770', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', 'ZK爆款连衣裙', '连衣裙,裙子', '夏季连衣裙,瘦身裙子', '0', '1547456230', '1566387775'); +INSERT INTO `s_goods` VALUES ('1', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '', '0', '119', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '


', '2', '5', '81', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '0', null, '', '', '', '0', '1547450921', '1554556830'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', '', 'iPhone 6 Plus', '0', '1683', '步', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6000.00-7600.00', '6000.00', '7600.00', '4500.00-6800.00', '4500.00', '6800.00', '30', '1', '0', '1', '1', '1', '


', '2', '14', '1128', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', null, '', '', '', '0', '1547451624', '1564735109'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '', '0', '232', '步', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '6866.00', '6866.00', '3888.00', '3888.00', '3888.00', '20', '1', '0', '1', '1', '1', '


', '2', '0', '85', '', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '0', null, '', '', '', '0', '1547452007', '1547452007'), ('4', '1', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', '', '', '0', '528', '步', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '2300.00', '2300.00', '2300.00', '1999.00', '1999.00', '1999.00', '19', '1', '0', '1', '1', '1', '


', '2', '3', '217', '', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '0', null, '', '', '', '0', '1547452553', '1547452553'), ('5', '2', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', '', '', '0', '425', '步', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '3200.00', '3200.00', '2499.00', '2499.00', '2499.00', '56', '1', '0', '1', '1', '1', '


', '2', '7', '387', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '0', null, '', '', '', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '', '0', '316', '步', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '3200.00', '3200.00', '2998.90', '2998.90', '2998.90', '65', '1', '0', '1', '1', '1', '

 X5L/SL/V/M (5.0寸)  X5max钢化膜(5.5寸)  X5pro钢化膜(5.2寸) 



', '2', '1', '305', '', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '0', null, '', '', '', '0', '1547453135', '1564057484'), ('7', '1', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '', '0', '312', '件', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '760.00', '760.00', '760.00', '168.00', '168.00', '168.00', '11', '1', '0', '1', '1', '1', '


', '2', '3', '227', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', '0', null, '', '', '', '0', '1547453967', '1554485498'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '', '0', '32', '件', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0.00', '0.00', '0.00', '356.00', '356.00', '356.00', '8', '1', '0', '1', '1', '1', '


', '2', '0', '100', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0', null, '', '', '', '0', '1547454269', '1565230383'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '', '0', '592', '件', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00-216.00', '160.00', '216.00', '120.00-158.00', '120.00', '158.00', '2', '1', '0', '1', '1', '1', '


', '3', '2', '231', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', '0', null, '', '', '', '0', '1547454786', '1554555420'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '', '0', '27', '件', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '568.00', '568.00', '228.00', '228.00', '228.00', '28', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】涤棉拼接蕾丝  后中拉链 有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦


XS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~

蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~


', '2', '0', '364', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', '0', null, '', '', '', '0', '1547455375', '1566387763'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '', '0', '36665983', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '268.00-422.00', '268.00', '422.00', '160.00-258.00', '160.00', '258.00', '1', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】网纱绣花钉珠拼接蕾丝 拉链有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦


XS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~

大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~

肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~



', '4', '1', '219', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', '1', '', '', '', '', '0', '1547455700', '1569207976'), ('12', '2', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '轻奢醋酸面料,高标准的生产要求,品质保证', 'xxxxhhhhhh商品型号', '0', '600', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '188.00', '188.00', '0.01', '0.01', '0.01', '3', '1', '0', '1', '1', '1', '
112233445566
qwerty
asdfgh
zxcvbn



\"d-1.jpg\"/

\"d-2.jpg\"/

', '3', '2', '776', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '[{\"title\":\"\\u989c\\u8272\",\"value\":[\"\\u7c89\\u8272\",\"\\u767d\\u8272\"]},{\"title\":\"\\u5c3a\\u7801\",\"value\":[\"S\",\"M\",\"L\"]}]', 'ZK爆款连衣裙', '连衣裙,裙子', '夏季连衣裙,瘦身裙子', '0', '1547456230', '1569210925'); COMMIT; -- ---------------------------- @@ -481,13 +482,13 @@ CREATE TABLE `s_goods_category_join` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `category_id` (`category_id`) -) ENGINE=InnoDB AUTO_INCREMENT=256 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联'; +) ENGINE=InnoDB AUTO_INCREMENT=286 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联'; -- ---------------------------- -- Records of `s_goods_category_join` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_category_join` VALUES ('6', '3', '68', '1547452007'), ('7', '3', '69', '1547452007'), ('8', '4', '68', '1547452553'), ('9', '4', '69', '1547452553'), ('10', '5', '68', '1547452798'), ('11', '5', '69', '1547452798'), ('79', '7', '58', '1554485498'), ('80', '7', '194', '1554485498'), ('81', '7', '196', '1554485498'), ('89', '9', '363', '1554555420'), ('93', '1', '68', '1554556830'), ('94', '1', '304', '1554556830'), ('177', '11', '304', '1564049598'), ('178', '11', '318', '1564049598'), ('179', '6', '1', '1564057484'), ('190', '2', '68', '1564735109'), ('191', '2', '69', '1564735109'), ('192', '2', '304', '1564735109'), ('209', '8', '58', '1565230383'), ('210', '8', '195', '1565230383'), ('211', '8', '198', '1565230383'), ('251', '10', '304', '1566387763'), ('252', '10', '318', '1566387763'), ('253', '10', '446', '1566387763'), ('254', '12', '304', '1566387775'), ('255', '12', '318', '1566387775'); +INSERT INTO `s_goods_category_join` VALUES ('6', '3', '68', '1547452007'), ('7', '3', '69', '1547452007'), ('8', '4', '68', '1547452553'), ('9', '4', '69', '1547452553'), ('10', '5', '68', '1547452798'), ('11', '5', '69', '1547452798'), ('79', '7', '58', '1554485498'), ('80', '7', '194', '1554485498'), ('81', '7', '196', '1554485498'), ('89', '9', '363', '1554555420'), ('93', '1', '68', '1554556830'), ('94', '1', '304', '1554556830'), ('179', '6', '1', '1564057484'), ('190', '2', '68', '1564735109'), ('191', '2', '69', '1564735109'), ('192', '2', '304', '1564735109'), ('209', '8', '58', '1565230383'), ('210', '8', '195', '1565230383'), ('211', '8', '198', '1565230383'), ('251', '10', '304', '1566387763'), ('252', '10', '318', '1566387763'), ('253', '10', '446', '1566387763'), ('268', '11', '304', '1569207976'), ('269', '11', '318', '1569207976'), ('284', '12', '304', '1569210925'), ('285', '12', '318', '1569210925'); COMMIT; -- ---------------------------- @@ -530,13 +531,13 @@ CREATE TABLE `s_goods_content_app` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=424 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情'; +) ENGINE=InnoDB AUTO_INCREMENT=484 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情'; -- ---------------------------- -- Records of `s_goods_content_app` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_content_app` VALUES ('10', '3', '/static/upload/images/goods/2019/01/14/1547451947383902.jpg', '', '0', '1547452007'), ('11', '3', '/static/upload/images/goods/2019/01/14/1547451947686990.jpg', '', '1', '1547452007'), ('12', '3', '/static/upload/images/goods/2019/01/14/1547451947676180.jpg', '', '2', '1547452007'), ('13', '3', '/static/upload/images/goods/2019/01/14/1547451947791154.jpg', '', '3', '1547452007'), ('14', '4', '/static/upload/images/goods/2019/01/14/1547452505568604.jpg', '', '0', '1547452553'), ('15', '4', '/static/upload/images/goods/2019/01/14/1547452505349986.jpg', '', '1', '1547452553'), ('16', '4', '/static/upload/images/goods/2019/01/14/1547452505184884.jpg', '', '2', '1547452553'), ('17', '5', '/static/upload/images/goods/2019/01/14/1547452760417982.jpg', '', '0', '1547452798'), ('18', '5', '/static/upload/images/goods/2019/01/14/1547452760984656.jpg', '', '1', '1547452798'), ('19', '5', '/static/upload/images/goods/2019/01/14/1547452760659259.jpg', '', '2', '1547452798'), ('135', '7', '/static/upload/images/goods/2019/01/14/1547453910353340.jpg', '', '0', '1554485498'), ('136', '7', '/static/upload/images/goods/2019/01/14/1547453910505349.jpg', '', '1', '1554485498'), ('137', '7', '/static/upload/images/goods/2019/01/14/1547453910394886.jpg', '', '2', '1554485498'), ('148', '9', '/static/upload/images/goods/2019/01/14/1547454712270511.jpg', '', '0', '1554555420'), ('149', '9', '/static/upload/images/goods/2019/01/14/1547454713556301.jpg', '', '1', '1554555420'), ('150', '9', '/static/upload/images/goods/2019/01/14/1547454713800333.jpg', '', '2', '1554555420'), ('151', '9', '/static/upload/images/goods/2019/01/14/1547454713456602.jpg', '', '3', '1554555420'), ('155', '1', '/static/upload/images/goods/2019/01/14/1547450880620837.png', '', '0', '1554556830'), ('156', '1', '/static/upload/images/goods/2019/01/14/1547450880750687.png', '', '1', '1554556830'), ('157', '1', '/static/upload/images/goods/2019/01/14/1547450880917418.png', '', '2', '1554556830'), ('295', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】网纱绣花钉珠拼接蕾丝 有拉链有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦\n\n\nXS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~\n\n大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~\n\n肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~', '0', '1564049598'), ('296', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '', '1', '1564049598'), ('297', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '', '2', '1564049598'), ('298', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '', '3', '1564049598'), ('299', '6', '/static/upload/images/goods/2019/01/14/1547453042405182.jpg', 'X5L/SL/V/M (5.0寸) X5max钢化膜(5.5寸) X5pro钢化膜(5.2寸)', '0', '1564057484'), ('300', '6', '/static/upload/images/goods/2019/01/14/1547453042614480.jpg', '', '1', '1564057484'), ('301', '6', '/static/upload/images/goods/2019/01/14/1547453042816509.jpg', '', '2', '1564057484'), ('314', '2', '/static/upload/images/goods/2019/01/14/1547451595700972.jpg', '', '0', '1564735109'), ('315', '2', '/static/upload/images/goods/2019/01/14/1547451595528800.jpg', '', '1', '1564735109'), ('316', '2', '/static/upload/images/goods/2019/01/14/1547451595616298.jpg', '', '2', '1564735109'), ('349', '8', '/static/upload/images/goods/2019/01/14/1547454192301566.jpg', '', '0', '1565230383'), ('350', '8', '/static/upload/images/goods/2019/01/14/1547454192448116.jpg', '', '1', '1565230383'), ('351', '8', '/static/upload/images/goods/2019/01/14/1547454192474638.jpg', '', '2', '1565230383'), ('418', '10', '/static/upload/images/goods/2019/01/14/1547455266527628.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】涤棉拼接蕾丝 后中拉链 有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦\n\n\nXS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~\n\n蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~', '0', '1566387763'), ('419', '10', '/static/upload/images/goods/2019/01/14/1547455266234658.jpg', '', '1', '1566387763'), ('420', '12', '/static/upload/images/goods/2019/01/14/1547456214155362.jpg', '', '0', '1566387775'), ('421', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '', '1', '1566387775'), ('422', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '', '2', '1566387775'), ('423', '12', '/static/upload/images/goods/2019/01/14/1547456228913731.jpg', '', '3', '1566387775'); +INSERT INTO `s_goods_content_app` VALUES ('10', '3', '/static/upload/images/goods/2019/01/14/1547451947383902.jpg', '', '0', '1547452007'), ('11', '3', '/static/upload/images/goods/2019/01/14/1547451947686990.jpg', '', '1', '1547452007'), ('12', '3', '/static/upload/images/goods/2019/01/14/1547451947676180.jpg', '', '2', '1547452007'), ('13', '3', '/static/upload/images/goods/2019/01/14/1547451947791154.jpg', '', '3', '1547452007'), ('14', '4', '/static/upload/images/goods/2019/01/14/1547452505568604.jpg', '', '0', '1547452553'), ('15', '4', '/static/upload/images/goods/2019/01/14/1547452505349986.jpg', '', '1', '1547452553'), ('16', '4', '/static/upload/images/goods/2019/01/14/1547452505184884.jpg', '', '2', '1547452553'), ('17', '5', '/static/upload/images/goods/2019/01/14/1547452760417982.jpg', '', '0', '1547452798'), ('18', '5', '/static/upload/images/goods/2019/01/14/1547452760984656.jpg', '', '1', '1547452798'), ('19', '5', '/static/upload/images/goods/2019/01/14/1547452760659259.jpg', '', '2', '1547452798'), ('135', '7', '/static/upload/images/goods/2019/01/14/1547453910353340.jpg', '', '0', '1554485498'), ('136', '7', '/static/upload/images/goods/2019/01/14/1547453910505349.jpg', '', '1', '1554485498'), ('137', '7', '/static/upload/images/goods/2019/01/14/1547453910394886.jpg', '', '2', '1554485498'), ('148', '9', '/static/upload/images/goods/2019/01/14/1547454712270511.jpg', '', '0', '1554555420'), ('149', '9', '/static/upload/images/goods/2019/01/14/1547454713556301.jpg', '', '1', '1554555420'), ('150', '9', '/static/upload/images/goods/2019/01/14/1547454713800333.jpg', '', '2', '1554555420'), ('151', '9', '/static/upload/images/goods/2019/01/14/1547454713456602.jpg', '', '3', '1554555420'), ('155', '1', '/static/upload/images/goods/2019/01/14/1547450880620837.png', '', '0', '1554556830'), ('156', '1', '/static/upload/images/goods/2019/01/14/1547450880750687.png', '', '1', '1554556830'), ('157', '1', '/static/upload/images/goods/2019/01/14/1547450880917418.png', '', '2', '1554556830'), ('299', '6', '/static/upload/images/goods/2019/01/14/1547453042405182.jpg', 'X5L/SL/V/M (5.0寸) X5max钢化膜(5.5寸) X5pro钢化膜(5.2寸)', '0', '1564057484'), ('300', '6', '/static/upload/images/goods/2019/01/14/1547453042614480.jpg', '', '1', '1564057484'), ('301', '6', '/static/upload/images/goods/2019/01/14/1547453042816509.jpg', '', '2', '1564057484'), ('314', '2', '/static/upload/images/goods/2019/01/14/1547451595700972.jpg', '', '0', '1564735109'), ('315', '2', '/static/upload/images/goods/2019/01/14/1547451595528800.jpg', '', '1', '1564735109'), ('316', '2', '/static/upload/images/goods/2019/01/14/1547451595616298.jpg', '', '2', '1564735109'), ('349', '8', '/static/upload/images/goods/2019/01/14/1547454192301566.jpg', '', '0', '1565230383'), ('350', '8', '/static/upload/images/goods/2019/01/14/1547454192448116.jpg', '', '1', '1565230383'), ('351', '8', '/static/upload/images/goods/2019/01/14/1547454192474638.jpg', '', '2', '1565230383'), ('418', '10', '/static/upload/images/goods/2019/01/14/1547455266527628.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】涤棉拼接蕾丝 后中拉链 有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦\n\n\nXS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~\n\n蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~', '0', '1566387763'), ('419', '10', '/static/upload/images/goods/2019/01/14/1547455266234658.jpg', '', '1', '1566387763'), ('448', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】网纱绣花钉珠拼接蕾丝 有拉链有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦\n\n\nXS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~\n\n大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~\n\n肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~', '0', '1569207976'), ('449', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '', '1', '1569207976'), ('450', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '', '2', '1569207976'), ('451', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '', '3', '1569207976'), ('480', '12', '/static/upload/images/goods/2019/01/14/1547456214155362.jpg', '', '0', '1569210925'), ('481', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '', '1', '1569210925'), ('482', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '', '2', '1569210925'), ('483', '12', '/static/upload/images/goods/2019/01/14/1547456228913731.jpg', '', '3', '1569210925'); COMMIT; -- ---------------------------- @@ -566,13 +567,13 @@ CREATE TABLE `s_goods_photo` ( KEY `goods_id` (`goods_id`), KEY `is_show` (`is_show`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=333 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片'; +) ENGINE=InnoDB AUTO_INCREMENT=381 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片'; -- ---------------------------- -- Records of `s_goods_photo` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_photo` VALUES ('7', '3', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '1', '0', '1547452007'), ('8', '3', '/static/upload/images/goods/2019/01/14/1547451936230948.jpg', '1', '1', '1547452007'), ('9', '4', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '1', '0', '1547452553'), ('10', '4', '/static/upload/images/goods/2019/01/14/1547452496713777.jpg', '1', '1', '1547452553'), ('11', '5', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '1', '0', '1547452798'), ('12', '5', '/static/upload/images/goods/2019/01/14/1547452752648264.jpg', '1', '1', '1547452798'), ('105', '7', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '1', '0', '1554485498'), ('106', '7', '/static/upload/images/goods/2019/01/14/1547453895864876.jpg', '1', '1', '1554485498'), ('116', '9', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '1', '0', '1554555420'), ('117', '9', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '1', '1', '1554555420'), ('118', '9', '/static/upload/images/goods/2019/01/14/1547454702814719.jpg', '1', '2', '1554555420'), ('121', '1', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '1', '0', '1554556830'), ('122', '1', '/static/upload/images/goods/2019/01/14/1547450818141662.jpg', '1', '1', '1554556830'), ('233', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '1', '0', '1564049598'), ('234', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '1', '1', '1564049598'), ('235', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '1', '2', '1564049598'), ('236', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '1', '3', '1564049598'), ('237', '6', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '1', '0', '1564057484'), ('238', '6', '/static/upload/images/goods/2019/01/14/1547453032949003.jpg', '1', '1', '1564057484'), ('249', '2', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', '0', '1564735109'), ('250', '2', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '1', '1', '1564735109'), ('275', '8', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '1', '0', '1565230383'), ('276', '8', '/static/upload/images/goods/2019/01/14/1547454172213779.jpg', '1', '1', '1565230383'), ('328', '10', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '1', '0', '1566387763'), ('329', '10', '/static/upload/images/goods/2019/01/14/1547455240700820.jpg', '1', '1', '1566387763'), ('330', '12', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '0', '1566387775'), ('331', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '1', '1', '1566387775'), ('332', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '1', '2', '1566387775'); +INSERT INTO `s_goods_photo` VALUES ('7', '3', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '1', '0', '1547452007'), ('8', '3', '/static/upload/images/goods/2019/01/14/1547451936230948.jpg', '1', '1', '1547452007'), ('9', '4', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '1', '0', '1547452553'), ('10', '4', '/static/upload/images/goods/2019/01/14/1547452496713777.jpg', '1', '1', '1547452553'), ('11', '5', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '1', '0', '1547452798'), ('12', '5', '/static/upload/images/goods/2019/01/14/1547452752648264.jpg', '1', '1', '1547452798'), ('105', '7', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '1', '0', '1554485498'), ('106', '7', '/static/upload/images/goods/2019/01/14/1547453895864876.jpg', '1', '1', '1554485498'), ('116', '9', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '1', '0', '1554555420'), ('117', '9', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '1', '1', '1554555420'), ('118', '9', '/static/upload/images/goods/2019/01/14/1547454702814719.jpg', '1', '2', '1554555420'), ('121', '1', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '1', '0', '1554556830'), ('122', '1', '/static/upload/images/goods/2019/01/14/1547450818141662.jpg', '1', '1', '1554556830'), ('237', '6', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '1', '0', '1564057484'), ('238', '6', '/static/upload/images/goods/2019/01/14/1547453032949003.jpg', '1', '1', '1564057484'), ('249', '2', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', '0', '1564735109'), ('250', '2', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '1', '1', '1564735109'), ('275', '8', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '1', '0', '1565230383'), ('276', '8', '/static/upload/images/goods/2019/01/14/1547454172213779.jpg', '1', '1', '1565230383'), ('328', '10', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '1', '0', '1566387763'), ('329', '10', '/static/upload/images/goods/2019/01/14/1547455240700820.jpg', '1', '1', '1566387763'), ('353', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '1', '0', '1569207976'), ('354', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '1', '1', '1569207976'), ('355', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '1', '2', '1569207976'), ('356', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '1', '3', '1569207976'), ('378', '12', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '0', '1569210925'), ('379', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '1', '1', '1569210925'), ('380', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '1', '2', '1569210925'); COMMIT; -- ---------------------------- @@ -592,13 +593,13 @@ CREATE TABLE `s_goods_spec_base` ( `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`), KEY `attribute_type_id` (`price`) -) ENGINE=InnoDB AUTO_INCREMENT=503 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础'; +) ENGINE=InnoDB AUTO_INCREMENT=590 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础'; -- ---------------------------- -- Records of `s_goods_spec_base` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '232', '0.00', '', '', '6866.00', null, '1547452007'), ('22', '4', '1999.00', '528', '0.00', '', '', '2300.00', null, '1547452553'), ('23', '5', '2499.00', '425', '0.00', '', '', '3200.00', null, '1547452798'), ('155', '7', '168.00', '312', '0.00', '', '', '760.00', null, '1554485498'), ('163', '9', '120.00', '12', '0.30', '', '', '160.00', null, '1554555420'), ('164', '9', '120.00', '86', '0.30', '', '', '160.00', null, '1554555420'), ('165', '9', '120.00', '13', '0.30', '', '', '160.00', null, '1554555420'), ('166', '9', '120.00', '76', '0.30', '', '', '160.00', null, '1554555420'), ('167', '9', '136.00', '43', '0.30', '', '', '188.00', null, '1554555420'), ('168', '9', '136.00', '53', '0.30', '', '', '188.00', null, '1554555420'), ('169', '9', '136.00', '21', '0.30', '', '', '188.00', null, '1554555420'), ('170', '9', '158.00', '243', '0.30', '', '', '216.00', null, '1554555420'), ('171', '9', '158.00', '45', '0.30', '', '', '216.00', null, '1554555420'), ('181', '1', '2100.00', '119', '0.00', '', '', '3200.00', null, '1554556830'), ('353', '11', '258.00', '36665655', '0.00', '', '', '268.00', '', '1564049598'), ('354', '11', '238.00', '322', '0.00', '', '', '343.00', '', '1564049598'), ('355', '11', '160.00', '6', '0.00', '', '', '422.00', '', '1564049598'), ('356', '6', '2998.90', '316', '0.00', '', '', '3200.00', null, '1564057484'), ('369', '2', '6050.00', '99', '0.00', '', '', '6800.00', null, '1564735109'), ('370', '2', '6600.00', '198', '0.00', '', '', '7200.00', '', '1564735109'), ('371', '2', '6800.00', '298', '0.00', '', '', '7600.00', '', '1564735109'), ('372', '2', '6050.00', '300', '0.00', '', '', '6800.00', '', '1564735109'), ('373', '2', '6600.00', '299', '0.00', '', '', '7200.00', '', '1564735109'), ('374', '2', '6800.00', '299', '0.00', '', '', '7600.00', '', '1564735109'), ('375', '2', '4500.00', '93', '0.00', '', '', '6800.00', '', '1564735109'), ('376', '2', '4800.00', '49', '0.00', '', '', '6600.00', '', '1564735109'), ('377', '2', '5500.00', '48', '0.00', '', '', '6000.00', '', '1564735109'), ('418', '8', '356.00', '32', '0.00', '', '', '0.00', null, '1565230383'), ('497', '10', '228.00', '27', '0.00', '', '', '568.00', '', '1566387763'), ('498', '12', '0.01', '4', '0.50', 'gg11', 'txm11', '188.00', null, '1566387775'), ('499', '12', '128.00', '61', '0.10', 'gg22', 'txm22', '188.00', null, '1566387775'), ('500', '12', '128.00', '41', '1.90', 'gg33', 'txm33', '188.00', '', '1566387775'), ('501', '12', '118.00', '78', '457.60', 'gg44', 'txm44', '150.00', null, '1566387775'), ('502', '12', '118.00', '98', '37.00', 'gg55', 'txm55', '150.00', null, '1566387775'); +INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '232', '0.00', '', '', '6866.00', null, '1547452007'), ('22', '4', '1999.00', '528', '0.00', '', '', '2300.00', null, '1547452553'), ('23', '5', '2499.00', '425', '0.00', '', '', '3200.00', null, '1547452798'), ('155', '7', '168.00', '312', '0.00', '', '', '760.00', null, '1554485498'), ('163', '9', '120.00', '12', '0.30', '', '', '160.00', null, '1554555420'), ('164', '9', '120.00', '86', '0.30', '', '', '160.00', null, '1554555420'), ('165', '9', '120.00', '13', '0.30', '', '', '160.00', null, '1554555420'), ('166', '9', '120.00', '76', '0.30', '', '', '160.00', null, '1554555420'), ('167', '9', '136.00', '43', '0.30', '', '', '188.00', null, '1554555420'), ('168', '9', '136.00', '53', '0.30', '', '', '188.00', null, '1554555420'), ('169', '9', '136.00', '21', '0.30', '', '', '188.00', null, '1554555420'), ('170', '9', '158.00', '243', '0.30', '', '', '216.00', null, '1554555420'), ('171', '9', '158.00', '45', '0.30', '', '', '216.00', null, '1554555420'), ('181', '1', '2100.00', '119', '0.00', '', '', '3200.00', null, '1554556830'), ('356', '6', '2998.90', '316', '0.00', '', '', '3200.00', null, '1564057484'), ('369', '2', '6050.00', '99', '0.00', '', '', '6800.00', null, '1564735109'), ('370', '2', '6600.00', '198', '0.00', '', '', '7200.00', '', '1564735109'), ('371', '2', '6800.00', '298', '0.00', '', '', '7600.00', '', '1564735109'), ('372', '2', '6050.00', '300', '0.00', '', '', '6800.00', '', '1564735109'), ('373', '2', '6600.00', '299', '0.00', '', '', '7200.00', '', '1564735109'), ('374', '2', '6800.00', '299', '0.00', '', '', '7600.00', '', '1564735109'), ('375', '2', '4500.00', '93', '0.00', '', '', '6800.00', '', '1564735109'), ('376', '2', '4800.00', '49', '0.00', '', '', '6600.00', '', '1564735109'), ('377', '2', '5500.00', '48', '0.00', '', '', '6000.00', '', '1564735109'), ('418', '8', '356.00', '32', '0.00', '', '', '0.00', null, '1565230383'), ('497', '10', '228.00', '27', '0.00', '', '', '568.00', '', '1566387763'), ('529', '11', '258.00', '36665655', '0.00', '', '', '268.00', null, '1569207976'), ('530', '11', '238.00', '322', '0.00', '', '', '343.00', null, '1569207976'), ('531', '11', '160.00', '6', '0.00', '', '', '422.00', null, '1569207976'), ('584', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1569210925'), ('585', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1569210925'), ('586', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1569210925'), ('587', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1569210925'), ('588', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1569210925'), ('589', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1569210925'); COMMIT; -- ---------------------------- @@ -613,13 +614,13 @@ CREATE TABLE `s_goods_spec_type` ( `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`) -) ENGINE=InnoDB AUTO_INCREMENT=170 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型'; +) ENGINE=InnoDB AUTO_INCREMENT=197 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型'; -- ---------------------------- -- Records of `s_goods_spec_type` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_type` VALUES ('46', '9', '[{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702543219.jpg\"},{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702272215.jpg\"},{\"name\":\"\\u9ed1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702814719.jpg\"}]', '颜色', '1554555420'), ('47', '9', '[{\"name\":\"S\",\"images\":\"\"},{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1554555420'), ('114', '11', '[{\"name\":\"M\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"},{\"name\":\"L\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"XL\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455601528614.jpg\"}]', '尺码', '1564049598'), ('119', '2', '[{\"name\":\"\\u5957\\u9910\\u4e00\",\"images\":\"\"},{\"name\":\"\\u5957\\u9910\\u4e8c\",\"images\":\"\"}]', '套餐', '1564735109'), ('120', '2', '[{\"name\":\"\\u91d1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451274847894.jpg\"},{\"name\":\"\\u94f6\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451576558478.jpg\"}]', '颜色', '1564735109'), ('121', '2', '[{\"name\":\"32G\",\"images\":\"\"},{\"name\":\"64G\",\"images\":\"\"},{\"name\":\"128G\",\"images\":\"\"}]', '容量', '1564735109'), ('168', '12', '[{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"}]', '颜色', '1566387775'), ('169', '12', '[{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1566387775'); +INSERT INTO `s_goods_spec_type` VALUES ('46', '9', '[{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702543219.jpg\"},{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702272215.jpg\"},{\"name\":\"\\u9ed1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702814719.jpg\"}]', '颜色', '1554555420'), ('47', '9', '[{\"name\":\"S\",\"images\":\"\"},{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1554555420'), ('119', '2', '[{\"name\":\"\\u5957\\u9910\\u4e00\",\"images\":\"\"},{\"name\":\"\\u5957\\u9910\\u4e8c\",\"images\":\"\"}]', '套餐', '1564735109'), ('120', '2', '[{\"name\":\"\\u91d1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451274847894.jpg\"},{\"name\":\"\\u94f6\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451576558478.jpg\"}]', '颜色', '1564735109'), ('121', '2', '[{\"name\":\"32G\",\"images\":\"\"},{\"name\":\"64G\",\"images\":\"\"},{\"name\":\"128G\",\"images\":\"\"}]', '容量', '1564735109'), ('180', '11', '[{\"name\":\"M\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"},{\"name\":\"L\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"XL\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455601528614.jpg\"}]', '尺码', '1569207976'), ('195', '12', '[{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"}]', '颜色', '1569210925'), ('196', '12', '[{\"name\":\"S\",\"images\":\"\"},{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"}]', '尺码', '1569210925'); COMMIT; -- ---------------------------- @@ -635,13 +636,13 @@ CREATE TABLE `s_goods_spec_value` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `goods_spec_base_id` (`goods_spec_base_id`) -) ENGINE=InnoDB AUTO_INCREMENT=989 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值'; +) ENGINE=InnoDB AUTO_INCREMENT=1154 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值'; -- ---------------------------- -- Records of `s_goods_spec_value` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_value` VALUES ('305', '9', '163', '白色', '1554555420'), ('306', '9', '163', 'S', '1554555420'), ('307', '9', '164', '白色', '1554555420'), ('308', '9', '164', 'M', '1554555420'), ('309', '9', '165', '白色', '1554555420'), ('310', '9', '165', 'L', '1554555420'), ('311', '9', '166', '白色', '1554555420'), ('312', '9', '166', 'XL', '1554555420'), ('313', '9', '167', '粉色', '1554555420'), ('314', '9', '167', 'S', '1554555420'), ('315', '9', '168', '粉色', '1554555420'), ('316', '9', '168', 'M', '1554555420'), ('317', '9', '169', '粉色', '1554555420'), ('318', '9', '169', 'L', '1554555420'), ('319', '9', '170', '黑色', '1554555420'), ('320', '9', '170', 'S', '1554555420'), ('321', '9', '171', '黑色', '1554555420'), ('322', '9', '171', 'XL', '1554555420'), ('699', '11', '353', 'M', '1564049598'), ('700', '11', '354', 'L', '1564049598'), ('701', '11', '355', 'XL', '1564049598'), ('722', '2', '369', '套餐一', '1564735109'), ('723', '2', '369', '金色', '1564735109'), ('724', '2', '369', '32G', '1564735109'), ('725', '2', '370', '套餐一', '1564735109'), ('726', '2', '370', '金色', '1564735109'), ('727', '2', '370', '64G', '1564735109'), ('728', '2', '371', '套餐一', '1564735109'), ('729', '2', '371', '金色', '1564735109'), ('730', '2', '371', '128G', '1564735109'), ('731', '2', '372', '套餐一', '1564735109'), ('732', '2', '372', '银色', '1564735109'), ('733', '2', '372', '32G', '1564735109'), ('734', '2', '373', '套餐一', '1564735109'), ('735', '2', '373', '银色', '1564735109'), ('736', '2', '373', '64G', '1564735109'), ('737', '2', '374', '套餐一', '1564735109'), ('738', '2', '374', '银色', '1564735109'), ('739', '2', '374', '128G', '1564735109'), ('740', '2', '375', '套餐二', '1564735109'), ('741', '2', '375', '金色', '1564735109'), ('742', '2', '375', '32G', '1564735109'), ('743', '2', '376', '套餐二', '1564735109'), ('744', '2', '376', '金色', '1564735109'), ('745', '2', '376', '128G', '1564735109'), ('746', '2', '377', '套餐二', '1564735109'), ('747', '2', '377', '银色', '1564735109'), ('748', '2', '377', '64G', '1564735109'), ('979', '12', '498', '粉色', '1566387775'), ('980', '12', '498', 'M', '1566387775'), ('981', '12', '499', '粉色', '1566387775'), ('982', '12', '499', 'L', '1566387775'), ('983', '12', '500', '粉色', '1566387775'), ('984', '12', '500', 'XL', '1566387775'), ('985', '12', '501', '白色', '1566387775'), ('986', '12', '501', 'M', '1566387775'), ('987', '12', '502', '白色', '1566387775'), ('988', '12', '502', 'L', '1566387775'); +INSERT INTO `s_goods_spec_value` VALUES ('305', '9', '163', '白色', '1554555420'), ('306', '9', '163', 'S', '1554555420'), ('307', '9', '164', '白色', '1554555420'), ('308', '9', '164', 'M', '1554555420'), ('309', '9', '165', '白色', '1554555420'), ('310', '9', '165', 'L', '1554555420'), ('311', '9', '166', '白色', '1554555420'), ('312', '9', '166', 'XL', '1554555420'), ('313', '9', '167', '粉色', '1554555420'), ('314', '9', '167', 'S', '1554555420'), ('315', '9', '168', '粉色', '1554555420'), ('316', '9', '168', 'M', '1554555420'), ('317', '9', '169', '粉色', '1554555420'), ('318', '9', '169', 'L', '1554555420'), ('319', '9', '170', '黑色', '1554555420'), ('320', '9', '170', 'S', '1554555420'), ('321', '9', '171', '黑色', '1554555420'), ('322', '9', '171', 'XL', '1554555420'), ('722', '2', '369', '套餐一', '1564735109'), ('723', '2', '369', '金色', '1564735109'), ('724', '2', '369', '32G', '1564735109'), ('725', '2', '370', '套餐一', '1564735109'), ('726', '2', '370', '金色', '1564735109'), ('727', '2', '370', '64G', '1564735109'), ('728', '2', '371', '套餐一', '1564735109'), ('729', '2', '371', '金色', '1564735109'), ('730', '2', '371', '128G', '1564735109'), ('731', '2', '372', '套餐一', '1564735109'), ('732', '2', '372', '银色', '1564735109'), ('733', '2', '372', '32G', '1564735109'), ('734', '2', '373', '套餐一', '1564735109'), ('735', '2', '373', '银色', '1564735109'), ('736', '2', '373', '64G', '1564735109'), ('737', '2', '374', '套餐一', '1564735109'), ('738', '2', '374', '银色', '1564735109'), ('739', '2', '374', '128G', '1564735109'), ('740', '2', '375', '套餐二', '1564735109'), ('741', '2', '375', '金色', '1564735109'), ('742', '2', '375', '32G', '1564735109'), ('743', '2', '376', '套餐二', '1564735109'), ('744', '2', '376', '金色', '1564735109'), ('745', '2', '376', '128G', '1564735109'), ('746', '2', '377', '套餐二', '1564735109'), ('747', '2', '377', '银色', '1564735109'), ('748', '2', '377', '64G', '1564735109'), ('1035', '11', '529', 'M', '1569207976'), ('1036', '11', '530', 'L', '1569207976'), ('1037', '11', '531', 'XL', '1569207976'), ('1142', '12', '584', '粉色', '1569210925'), ('1143', '12', '584', 'S', '1569210925'), ('1144', '12', '585', '粉色', '1569210925'), ('1145', '12', '585', 'M', '1569210925'), ('1146', '12', '586', '粉色', '1569210925'), ('1147', '12', '586', 'L', '1569210925'), ('1148', '12', '587', '白色', '1569210925'), ('1149', '12', '587', 'S', '1569210925'), ('1150', '12', '588', '白色', '1569210925'), ('1151', '12', '588', 'M', '1569210925'), ('1152', '12', '589', '白色', '1569210925'), ('1153', '12', '589', 'L', '1569210925'); COMMIT; -- ---------------------------- @@ -944,7 +945,7 @@ CREATE TABLE `s_plugins` ( PRIMARY KEY (`id`), UNIQUE KEY `plugins` (`plugins`), KEY `is_enable` (`is_enable`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; -- ---------------------------- -- Table structure for `s_power` @@ -1141,7 +1142,14 @@ CREATE TABLE `s_search_history` ( `ymd` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '日期 ymd', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; +) ENGINE=InnoDB AUTO_INCREMENT=357 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; + +-- ---------------------------- +-- Records of `s_search_history` +-- ---------------------------- +BEGIN; +INSERT INTO `s_search_history` VALUES ('1', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021395'), ('2', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021399'), ('3', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021401'), ('4', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021408'), ('5', '0', '0', '52', '', '0-0', 'default', 'asc', '20190909', '1568021415'), ('6', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021416'), ('7', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021418'), ('8', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021419'), ('9', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021687'), ('10', '0', '0', '57', '', '0-0', 'default', 'asc', '20190909', '1568021710'), ('11', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021712'), ('12', '0', '0', '0', '', '8000-12000', 'default', 'asc', '20190909', '1568021727'), ('13', '0', '0', '0', '', '8000-12000', 'sales_count', 'desc', '20190909', '1568021727'), ('14', '0', '0', '0', '', '0-0', 'sales_count', 'desc', '20190909', '1568021729'), ('15', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021746'), ('16', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021812'), ('17', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021817'), ('18', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021817'), ('19', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021831'), ('20', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021838'), ('21', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021841'), ('22', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021843'), ('23', '0', '0', '0', '', '3000-5000', 'default', 'asc', '20190909', '1568021859'), ('24', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021861'), ('25', '0', '0', '56', '', '0-0', 'default', 'asc', '20190909', '1568021865'), ('26', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021869'), ('27', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021872'), ('28', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021874'), ('29', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021877'), ('30', '0', '0', '52', '', '0-0', 'default', 'asc', '20190909', '1568021879'), ('31', '0', '0', '52', '', '600-1000', 'default', 'asc', '20190909', '1568021882'), ('32', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021884'), ('33', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021887'), ('34', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021891'), ('35', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021893'), ('36', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021895'), ('37', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021896'), ('38', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021898'), ('39', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021900'), ('40', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021901'), ('41', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021931'), ('42', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021934'), ('43', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021936'), ('44', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021939'), ('45', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021941'), ('46', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021943'), ('47', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021944'), ('48', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021945'), ('49', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021947'), ('50', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021947'), ('51', '0', '0', '54', '', '0-0', 'default', 'asc', '20190909', '1568021950'), ('52', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021951'), ('53', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021953'), ('54', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021954'), ('55', '0', '0', '54', '', '0-0', 'default', 'asc', '20190909', '1568021955'), ('56', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021956'), ('57', '0', '0', '52', '', '0-0', 'default', 'asc', '20190909', '1568021964'), ('58', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021967'), ('59', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021976'), ('60', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021978'), ('61', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021980'), ('62', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021982'), ('63', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021984'), ('64', '0', '0', '1', '', '600-1000', 'default', 'asc', '20190909', '1568021985'), ('65', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021987'), ('66', '0', '1', '7', '', '600-1000', 'default', 'asc', '20190909', '1568021988'), ('67', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568021989'), ('68', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568021991'), ('69', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022024'), ('70', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022027'), ('71', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022029'), ('72', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022035'), ('73', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022035'), ('74', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022039'), ('75', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568022044'), ('76', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190909', '1568022045'), ('77', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022047'), ('78', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022047'), ('79', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022048'), ('80', '0', '0', '57', '', '0-0', 'default', 'asc', '20190909', '1568022051'), ('81', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022059'), ('82', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568022062'), ('83', '0', '0', '1', '', '0-0', 'default', 'asc', '20190909', '1568022064'), ('84', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568022065'), ('85', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568022066'), ('86', '0', '1', '7', '', '0-0', 'default', 'asc', '20190909', '1568022069'), ('87', '0', '1', '1', '', '0-0', 'default', 'asc', '20190909', '1568022070'), ('88', '0', '1', '1', '', '2000-3000', 'default', 'asc', '20190909', '1568022073'), ('89', '0', '1', '54', '', '2000-3000', 'default', 'asc', '20190909', '1568022074'), ('90', '0', '1', '54', '', '100-300', 'default', 'asc', '20190909', '1568022076'), ('91', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022104'), ('92', '0', '0', '7', '', '0-0', 'default', 'asc', '20190909', '1568022110'), ('93', '0', '0', '1', '', '0-0', 'default', 'asc', '20190909', '1568022111'), ('94', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568022138'), ('95', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568023633'), ('96', '0', '0', '0', '', '0-0', 'default', 'asc', '20190909', '1568023666'), ('97', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116632'), ('98', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116642'), ('99', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116652'), ('100', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116680'), ('101', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116685'), ('102', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116687'), ('103', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116690'), ('104', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568116692'), ('105', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568116695'), ('106', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568116696'), ('107', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568116698'), ('108', '0', '0', '1', '', '100-300', 'default', 'asc', '20190910', '1568116700'), ('109', '0', '0', '1', '', '1000-1500', 'default', 'asc', '20190910', '1568116701'), ('110', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116714'), ('111', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116729'), ('112', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116753'), ('113', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116771'), ('114', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568116783'), ('115', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117334'), ('116', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117339'), ('117', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117348'), ('118', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117348'), ('119', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117348'), ('120', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117353'), ('121', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117356'), ('122', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117362'), ('123', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117370'), ('124', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117374'), ('125', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117379'), ('126', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117404'), ('127', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117409'), ('128', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117506'), ('129', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117517'), ('130', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117517'), ('131', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117533'), ('132', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117546'), ('133', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117588'), ('134', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117611'), ('135', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117659'), ('136', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117688'), ('137', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117713'), ('138', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117793'), ('139', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117839'), ('140', '0', '1', '0', '', '0-0', 'default', 'asc', '20190910', '1568117848'), ('141', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117925'), ('142', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117947'), ('143', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117949'), ('144', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568117989'), ('145', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118236'), ('146', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118255'), ('147', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118282'), ('148', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118292'), ('149', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118332'), ('150', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118356'), ('151', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118400'), ('152', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118401'), ('153', '0', '1', '0', '', '0-0', 'default', 'asc', '20190910', '1568118404'), ('154', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118413'), ('155', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118433'), ('156', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118440'), ('157', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118445'), ('158', '0', '0', '0', '', '600-1000', 'default', 'asc', '20190910', '1568118449'), ('159', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118455'), ('160', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118507'), ('161', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568118537'), ('162', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118544'), ('163', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118593'), ('164', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118599'), ('165', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118609'), ('166', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118613'), ('167', '0', '0', '0', '', '0-100', 'default', 'asc', '20190910', '1568118616'), ('168', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118617'), ('169', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118626'), ('170', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118634'), ('171', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118636'), ('172', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118660'), ('173', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568118663'), ('174', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118666'), ('175', '0', '1', '0', '', '0-0', 'default', 'asc', '20190910', '1568118669'), ('176', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118678'), ('177', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118682'), ('178', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118688'), ('179', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568118691'), ('180', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118693'), ('181', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568118696'), ('182', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118700'), ('183', '0', '0', '0', '', '1000-1500', 'default', 'asc', '20190910', '1568118702'), ('184', '0', '0', '1', '', '1000-1500', 'default', 'asc', '20190910', '1568118704'), ('185', '0', '0', '1', '', '1000-1500', 'default', 'asc', '20190910', '1568118706'), ('186', '0', '0', '1', '', '1000-1500', 'default', 'asc', '20190910', '1568118707'), ('187', '0', '0', '1', '', '100-300', 'default', 'asc', '20190910', '1568118709'), ('188', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118812'), ('189', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118819'), ('190', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118824'), ('191', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568118827'), ('192', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190910', '1568118830'), ('193', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118862'), ('194', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568118863'), ('195', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118934'), ('196', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118937'), ('197', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118940'), ('198', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118947'), ('199', '0', '0', '0', '', '0-0', 'sales_count', 'desc', '20190910', '1568118960'), ('200', '0', '0', '0', '', '0-0', 'default', 'desc', '20190910', '1568118961'), ('201', '0', '0', '0', '', '0-0', 'sales_count', 'desc', '20190910', '1568118962'), ('202', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118967'), ('203', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118974'), ('204', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568118978'), ('205', '0', '0', '57', '', '0-0', 'default', 'asc', '20190910', '1568118984'), ('206', '0', '0', '3', '', '0-0', 'default', 'asc', '20190910', '1568118991'), ('207', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568118997'), ('208', '0', '0', '54', '', '0-0', 'default', 'asc', '20190910', '1568118999'), ('209', '0', '0', '55', '', '0-0', 'default', 'asc', '20190910', '1568119001'), ('210', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119004'), ('211', '0', '0', '2', '', '0-0', 'default', 'asc', '20190910', '1568119006'), ('212', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119007'), ('213', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119009'), ('214', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119010'), ('215', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119012'), ('216', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119014'), ('217', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119015'), ('218', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119043'), ('219', '0', '0', '0', '', '0-0', 'sales_count', 'desc', '20190910', '1568119049'), ('220', '0', '0', '52', '', '0-0', 'sales_count', 'desc', '20190910', '1568119052'), ('221', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119066'), ('222', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119069'), ('223', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119082'), ('224', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119098'), ('225', '0', '0', '1', '', '0-0', 'default', 'asc', '20190910', '1568119100'), ('226', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119103'), ('227', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119104'), ('228', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119114'), ('229', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119117'), ('230', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119120'), ('231', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119125'), ('232', '0', '1', '7', '', '0-0', 'default', 'asc', '20190910', '1568119127'), ('233', '0', '1', '7', '', '600-1000', 'default', 'asc', '20190910', '1568119131'), ('234', '0', '1', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119133'), ('235', '0', '0', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119135'), ('236', '0', '0', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119138'), ('237', '0', '0', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119140'), ('238', '0', '0', '1', '', '600-1000', 'default', 'asc', '20190910', '1568119141'), ('239', '0', '0', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119143'), ('240', '0', '0', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119144'), ('241', '0', '0', '53', '', '600-1000', 'default', 'asc', '20190910', '1568119146'), ('242', '0', '1', '53', '', '600-1000', 'default', 'asc', '20190910', '1568119149'), ('243', '0', '1', '7', '', '600-1000', 'default', 'asc', '20190910', '1568119150'), ('244', '0', '1', '55', '', '600-1000', 'default', 'asc', '20190910', '1568119152'), ('245', '0', '1', '1', '', '600-1000', 'default', 'asc', '20190910', '1568119153'), ('246', '0', '1', '7', '', '600-1000', 'default', 'asc', '20190910', '1568119155'), ('247', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119159'), ('248', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119164'), ('249', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119166'), ('250', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119170'), ('251', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119192'), ('252', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119200'), ('253', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119218'), ('254', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119222'), ('255', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119245'), ('256', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119248'), ('257', '0', '0', '52', '', '0-0', 'default', 'asc', '20190910', '1568119251'), ('258', '0', '0', '52', '', '3000-5000', 'default', 'asc', '20190910', '1568119254'), ('259', '0', '0', '54', '', '3000-5000', 'default', 'asc', '20190910', '1568119255'), ('260', '0', '1', '54', '', '3000-5000', 'default', 'asc', '20190910', '1568119257'), ('261', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119259'), ('262', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119267'), ('263', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119269'), ('264', '0', '0', '0', '', '3000-5000', 'default', 'asc', '20190910', '1568119271'), ('265', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119273'), ('266', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119441'), ('267', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119442'), ('268', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119449'), ('269', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119451'), ('270', '0', '0', '7', '', '600-1000', 'default', 'asc', '20190910', '1568119453'), ('271', '0', '1', '7', '', '600-1000', 'default', 'asc', '20190910', '1568119455'), ('272', '0', '1', '7', '', '2000-3000', 'default', 'asc', '20190910', '1568119456'), ('273', '0', '0', '7', '', '2000-3000', 'default', 'asc', '20190910', '1568119458'), ('274', '0', '0', '57', '', '2000-3000', 'default', 'asc', '20190910', '1568119460'), ('275', '0', '0', '57', '', '2000-3000', 'default', 'asc', '20190910', '1568119463'), ('276', '0', '0', '57', '', '1500-2000', 'default', 'asc', '20190910', '1568119465'), ('277', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119479'), ('278', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119481'), ('279', '0', '0', '3', '', '0-0', 'default', 'asc', '20190910', '1568119483'), ('280', '0', '0', '3', '', '3000-5000', 'default', 'asc', '20190910', '1568119485'), ('281', '0', '1', '3', '', '3000-5000', 'default', 'asc', '20190910', '1568119486'), ('282', '0', '1', '54', '', '3000-5000', 'default', 'asc', '20190910', '1568119488'), ('283', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119492'), ('284', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119514'), ('285', '0', '0', '54', '', '0-0', 'default', 'asc', '20190910', '1568119516'), ('286', '0', '0', '53', '', '0-0', 'default', 'asc', '20190910', '1568119517'), ('287', '0', '2', '53', '', '0-0', 'default', 'asc', '20190910', '1568119519'), ('288', '0', '2', '53', '', '600-1000', 'default', 'asc', '20190910', '1568119520'), ('289', '0', '2', '1', '', '600-1000', 'default', 'asc', '20190910', '1568119523'), ('290', '0', '2', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119524'), ('291', '0', '2', '54', '', '600-1000', 'default', 'asc', '20190910', '1568119525'), ('292', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119588'), ('293', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119595'), ('294', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119602'), ('295', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119635'), ('296', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119647'), ('297', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119651'), ('298', '0', '0', '0', '', '2000-3000', 'default', 'asc', '20190910', '1568119655'), ('299', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119658'), ('300', '0', '0', '54', '', '2000-3000', 'default', 'asc', '20190910', '1568119664'), ('301', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119667'), ('302', '0', '0', '0', '', '600-1000', 'default', 'asc', '20190910', '1568119669'), ('303', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119671'), ('304', '0', '0', '54', '', '0-0', 'default', 'asc', '20190910', '1568119672'), ('305', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119675'), ('306', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119680'), ('307', '0', '1', '0', '', '0-0', 'default', 'asc', '20190910', '1568119687'), ('308', '0', '1', '0', '', '0-0', 'default', 'asc', '20190910', '1568119689'), ('309', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119692'), ('310', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119751'), ('311', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119757'), ('312', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568119759'), ('313', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119769'), ('314', '0', '0', '0', '', '600-1000', 'default', 'asc', '20190910', '1568119774'), ('315', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119783'), ('316', '0', '0', '0', '', '2000-3000', 'default', 'asc', '20190910', '1568119789'), ('317', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119797'), ('318', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119856'), ('319', '0', '0', '0', '', '3000-5000', 'default', 'asc', '20190910', '1568119860'), ('320', '0', '0', '54', '', '3000-5000', 'default', 'asc', '20190910', '1568119861'), ('321', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119865'), ('322', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119889'), ('323', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119891'), ('324', '0', '0', '57', '', '0-0', 'default', 'asc', '20190910', '1568119894'), ('325', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119897'), ('326', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119899'), ('327', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119973'), ('328', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119975'), ('329', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119985'), ('330', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119987'), ('331', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568119988'), ('332', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120019'), ('333', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120020'), ('334', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120021'), ('335', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120022'), ('336', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120024'), ('337', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120043'), ('338', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120044'), ('339', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120045'), ('340', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120045'), ('341', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120052'), ('342', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120064'), ('343', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120069'), ('344', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120071'), ('345', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120073'), ('346', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120094'), ('347', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120126'), ('348', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120130'), ('349', '1', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120499'), ('350', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120594'), ('351', '0', '0', '7', '', '0-0', 'default', 'asc', '20190910', '1568120596'), ('352', '0', '0', '0', '', '0-0', 'default', 'asc', '20190910', '1568120598'), ('353', '0', '0', '0', '', '0-0', 'default', 'asc', '20190911', '1568200129'), ('354', '0', '0', '0', '', '0-0', 'default', 'asc', '20190911', '1568200135'), ('355', '0', '0', '0', '', '0-0', 'default', 'asc', '20190911', '1568200137'), ('356', '0', '0', '0', '', '0-0', 'default', 'asc', '20190911', '1568200137'); +COMMIT; -- ---------------------------- -- Table structure for `s_slide` @@ -1209,7 +1217,14 @@ CREATE TABLE `s_user` ( KEY `username` (`username`), KEY `token` (`token`), KEY `baidu_openid` (`baidu_openid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户'; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户'; + +-- ---------------------------- +-- Records of `s_user` +-- ---------------------------- +BEGIN; +INSERT INTO `s_user` VALUES ('1', '', '', '', '', '0', '154942', '06964ec52593478d08b612334a96acd1', '', 'qqqqqq', '', '', '', '0', '', '', '', '0', '', '0', '0', '0', '0', '1568120062', '1568120062'); +COMMIT; -- ---------------------------- -- Table structure for `s_user_address` diff --git a/public/static/admin/default/js/goods.js b/public/static/admin/default/js/goods.js index 69cde8ca0..61239f8ad 100755 --- a/public/static/admin/default/js/goods.js +++ b/public/static/admin/default/js/goods.js @@ -307,14 +307,15 @@ $(function() return false; } + var index = parseInt(Math.random()*1000001); var html = ''; html += ''; - html += '×'; - html += ''; + html += '×'; + html += ''; html += ''; html += ''; html += '
'; - html += '+添加规格值'; + html += '+添加规格值'; html += '
'; html += ''; html += ''; @@ -325,9 +326,10 @@ $(function() // 添加规格值 $(document).on('click', '.spec-quick table .quick-spec-value-add', function() { + var index = $(this).data('index'); var html = '
'; - html += ''; - html += '×'; + html += ''; + html += '×'; html += '
'; $(this).parent().before(html); });